From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1V0tYY-0006W0-Hr for mharc-grub-devel@gnu.org; Sun, 21 Jul 2013 09:20:10 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53583) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V0tYU-0006Sg-4l for grub-devel@gnu.org; Sun, 21 Jul 2013 09:20:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V0tYR-0005z4-2x for grub-devel@gnu.org; Sun, 21 Jul 2013 09:20:06 -0400 Received: from mail-ee0-x235.google.com ([2a00:1450:4013:c00::235]:62805) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V0tYQ-0005sS-TO for grub-devel@gnu.org; Sun, 21 Jul 2013 09:20:03 -0400 Received: by mail-ee0-f53.google.com with SMTP id c41so3291510eek.26 for ; Sun, 21 Jul 2013 06:20:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=lf+FD779qvwSIjrhOV5MAresr6MsBrZxf1AffZofFzw=; b=oCEgAf6OcIsEhu9byMiPOK4FtJyHgPIn/KsIi/4PtleWcsKd2mLRJP5uOY+xTq9t2k /cj9dSHVt7w6uCUWQ5Pqguo7ejjQ6tZtKWdx8FHPFaJD9CWc7zdzOUBidJtZGmZs17nk e1dUTzhgdAs+DQhLpEC4Yv8jHUHGYBK7QUGPo+v6iJCQjPQ8g/uIiis4IjV7HBGY5noX 2Z0dAL661N4Wk1TlhbgS7yMB/L19fB3Zd8KX9AOhSFnCXfLFLFLGC3ggzl9y+L918gVj ikCBOHmZTdVQYLlsQVaGRmOHSsw2WdzWySP5JhnTx+bG6oe1jshJ3aSCC2fQMpdGsWBb rcHg== X-Received: by 10.14.241.136 with SMTP id g8mr23375769eer.104.1374412801537; Sun, 21 Jul 2013 06:20:01 -0700 (PDT) Received: from [192.168.56.2] (adsl-ull-90-122.47-151.net24.it. [151.47.122.90]) by mx.google.com with ESMTPSA id ci50sm42870747eeb.12.2013.07.21.06.19.59 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 21 Jul 2013 06:20:00 -0700 (PDT) Message-ID: <51EBE025.6040302@gmail.com> Date: Sun, 21 Jul 2013 15:20:37 +0200 From: Francesco Lavra User-Agent: Mozilla/5.0 (X11; Linux i686; rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1 MIME-Version: 1.0 To: The development of GNU GRUB Subject: [PATCH] [ARM] Enable boot module for arm Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4013:c00::235 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jul 2013 13:20:09 -0000 Since the last merge of mainline into the arm branch, building for arm fails because commands/boot.c is not compiled anymore. The boot module should be enabled for arm too. 2013-07-21 Francesco Lavra * grub-core/Makefile.core.def (boot): Enable on ARM. === modified file 'grub-core/Makefile.core.def' --- grub-core/Makefile.core.def 2013-07-16 16:43:43 +0000 +++ grub-core/Makefile.core.def 2013-07-21 10:16:34 +0000 @@ -691,6 +691,7 @@ common = commands/boot.c; i386_pc = lib/i386/pc/biosnum.c; enable = x86; + enable = arm; enable = emu; enable = sparc64_ieee1275; enable = powerpc_ieee1275;