2009-03-22 Pavel Roskin <proski@gno.org>

* kern/powerpc/ieee1275/startup.S: Replace EXT_C(start) with
	_start.
	* kern/i386/pc/startup.S: Likewise.
	* kern/i386/efi/startup.S: Likewise.
	* kern/i386/ieee1275/startup.S: Likewise.
	* kern/i386/coreboot/startup.S: Likewise.
	* kern/x86_64/efi/startup.S: Likewise.
This commit is contained in:
proski 2009-03-22 00:37:49 +00:00
parent 41473ac27f
commit fbc00b0ca1
7 changed files with 25 additions and 17 deletions

View file

@ -44,7 +44,7 @@ _start:
* This is a special data area at a fixed offset from the beginning.
*/
. = EXT_C(start) + GRUB_KERNEL_CPU_PREFIX
. = _start + GRUB_KERNEL_CPU_PREFIX
VARIABLE(grub_prefix)
/* to be filled by grub-mkimage */
@ -53,7 +53,7 @@ VARIABLE(grub_prefix)
* Leave some breathing room for the prefix.
*/
. = EXT_C(start) + GRUB_KERNEL_CPU_DATA_END
. = _start + GRUB_KERNEL_CPU_DATA_END
/*
* Support for booting GRUB from a Multiboot boot loader (e.g. GRUB itself).