From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1L4haU-0005fn-HK for mharc-grub-devel@gnu.org; Mon, 24 Nov 2008 14:59:14 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L4haR-0005dy-4A for grub-devel@gnu.org; Mon, 24 Nov 2008 14:59:11 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L4haM-0005bk-SB for grub-devel@gnu.org; Mon, 24 Nov 2008 14:59:09 -0500 Received: from [199.232.76.173] (port=51668 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L4haM-0005bS-I8 for grub-devel@gnu.org; Mon, 24 Nov 2008 14:59:06 -0500 Received: from igw1.br.ibm.com ([32.104.18.24]:45665) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1L4haL-0006cq-Lj for grub-devel@gnu.org; Mon, 24 Nov 2008 14:59:06 -0500 Received: from d24relay01.br.ibm.com (unknown [9.8.31.16]) by igw1.br.ibm.com (Postfix) with ESMTP id AE35F32C01F for ; Mon, 24 Nov 2008 17:55:28 -0200 (BRDT) Received: from d24av02.br.ibm.com (d24av02.br.ibm.com [9.18.232.47]) by d24relay01.br.ibm.com (8.13.8/8.13.8/NCO v9.1) with ESMTP id mAOKw4sv3801120 for ; Mon, 24 Nov 2008 17:58:04 -0300 Received: from d24av02.br.ibm.com (loopback [127.0.0.1]) by d24av02.br.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id mAOJwSGl031986 for ; Mon, 24 Nov 2008 17:58:28 -0200 Received: from [9.18.200.41] ([9.18.200.41]) by d24av02.br.ibm.com (8.12.11.20060308/8.12.11) with ESMTP id mAOJwSDK031973; Mon, 24 Nov 2008 17:58:28 -0200 From: Manoel To: The development of GRUB 2 Content-Type: multipart/mixed; boundary="=-KDhD7XpCgVWLfMzHTxnL" Date: Mon, 24 Nov 2008 17:58:23 -0200 Message-Id: <1227556704.7585.2.camel@manoel-laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.24.1 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (tstamp-) Cc: Carlos Roberto do Nascimento Costa Subject: [PATCH] Compilation PowerPC64 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 19:59:12 -0000 --=-KDhD7XpCgVWLfMzHTxnL Content-Type: text/plain Content-Transfer-Encoding: 7bit This patch corrects compilation in PowerPC64 due to some recent changes. -- Best Regards, Manoel Abranches IBM Linux Technology Center Brazil --=-KDhD7XpCgVWLfMzHTxnL Content-Disposition: attachment; filename="compilation_powerpc64.patch" Content-Type: text/x-patch; name="compilation_powerpc64.patch"; charset="UTF-8" Content-Transfer-Encoding: 7bit Index: conf/powerpc-ieee1275.rmk =================================================================== --- conf/powerpc-ieee1275.rmk (revision 1928) +++ conf/powerpc-ieee1275.rmk (working copy) @@ -79,7 +79,7 @@ kern/ieee1275/init.c term/ieee1275/ofconsole.c \ kern/ieee1275/openfw.c disk/ieee1275/ofdisk.c \ kern/parser.c kern/partition.c kern/env.c kern/powerpc/dl.c \ - kern/generic/millisleep.c kern/time.c \ + kern/generic/millisleep.c kern/time.c kern/ieee1275/mmap.c \ symlist.c kern/powerpc/cache.S kernel_elf_HEADERS = grub/powerpc/ieee1275/ieee1275.h kernel_elf_CFLAGS = $(COMMON_CFLAGS) Index: include/grub/powerpc/ieee1275/memory.h =================================================================== --- include/grub/powerpc/ieee1275/memory.h (revision 0) +++ include/grub/powerpc/ieee1275/memory.h (revision 0) @@ -0,0 +1,25 @@ +/* memory.h - describe the memory map */ +/* + * GRUB -- GRand Unified Bootloader + * Copyright (C) 2002,2007 Free Software Foundation, Inc. + * + * GRUB is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * GRUB is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GRUB. If not, see . + */ + +#ifndef _GRUB_MEMORY_MACHINE_LB_HEADER +#define _GRUB_MEMORY_MACHINE_LB_HEADER 1 + +#define GRUB_MACHINE_MEMORY_AVAILABLE 1 + +#endif /* ! _GRUB_MEMORY_MACHINE_HEADER */ --=-KDhD7XpCgVWLfMzHTxnL--