diff options
author | Simon Glass | 2013-04-17 16:13:31 +0000 |
---|---|---|
committer | Simon Glass | 2013-05-13 13:31:18 -0700 |
commit | 20a8b41d50f2b07e709488af3570692c5dd0cb05 (patch) | |
tree | 5dadf0a335c427bf75b014569a63ec5fd6d018c6 /arch/x86 | |
parent | dfdedd9c2ec805917a6f43cffd9d80125180bb28 (diff) |
x86: Remove unused portion of link script
Since we don't have real-mode code now, we can remove this chunk of the link
script.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/cpu/u-boot.lds | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/x86/cpu/u-boot.lds b/arch/x86/cpu/u-boot.lds index 2d6911aa419..b4ecd4bd4a5 100644 --- a/arch/x86/cpu/u-boot.lds +++ b/arch/x86/cpu/u-boot.lds @@ -79,18 +79,6 @@ SECTIONS /DISCARD/ : { *(.interp*) } /DISCARD/ : { *(.gnu*) } - /* 16bit realmode trampoline code */ - .realmode REALMODE_BASE : AT ( LOADADDR(.rel.dyn) + SIZEOF(.rel.dyn) ) { KEEP(*(.realmode)) } - - __realmode_start = LOADADDR(.realmode); - __realmode_size = SIZEOF(.realmode); - - /* 16bit BIOS emulation code (just enough to boot Linux) */ - .bios 0 : AT ( LOADADDR(.realmode) + SIZEOF(.realmode) ) { KEEP(*(.bios)) } - - __bios_start = LOADADDR(.bios); - __bios_size = SIZEOF(.bios); - #ifdef CONFIG_X86_RESET_VECTOR /* |