summaryrefslogtreecommitdiff
path: root/arch/x86/lib/zimage.c
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2012-02-17 23:47:29 +0100
committerWolfgang Denk <wd@denx.de>2012-02-17 23:47:29 +0100
commite390e8709149664ff96cf19384264c84573f3082 (patch)
treea14b00ce6732eedf0b9c20b2cb54f17f1ac14596 /arch/x86/lib/zimage.c
parente9d44b35beb45869863f3ca6929089d9df4df3e5 (diff)
parentafd855d534de22aa625cb12aa9aa45e459f7de99 (diff)
downloadu-boot-imx-e390e8709149664ff96cf19384264c84573f3082.zip
u-boot-imx-e390e8709149664ff96cf19384264c84573f3082.tar.gz
u-boot-imx-e390e8709149664ff96cf19384264c84573f3082.tar.bz2
Merge branch 'master' of git://git.denx.de/u-boot-x86
* 'master' of git://git.denx.de/u-boot-x86: x86: Convert board_init_f_r to a processing loop x86: Split init functions out of board.c x86: Move relocation code out of board.c x86: Move setup_pcat_compatibility() out of board.c x86: Move do_go_exec() out of board.c CHECKPATCH: arch/x86/lib/* x86: Tweak IDT and GDT for alignment and readability x86: Allow cache before copy to RAM x86: Create weak init_cache() and default enable_caches() functions x86: Set GD_FLG_RELOC after entering in-RAM copy of U-Boot x86: Use fs for global data x86: Rework relocation calculations x86: Simplify Flash-to-RAM code execution transition x86: Rework Global Descriptor Table loading x86: Remove GDR related magic numbers x86: Speed up copy-to-RAM and clear BSS operations x86: Import glibc memcpy implementation
Diffstat (limited to 'arch/x86/lib/zimage.c')
-rw-r--r--arch/x86/lib/zimage.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c
index bb40517..2214286 100644
--- a/arch/x86/lib/zimage.c
+++ b/arch/x86/lib/zimage.c
@@ -314,6 +314,13 @@ void boot_zimage(void *setup_base, void *load_address)
#endif
}
+void setup_pcat_compatibility(void)
+ __attribute__((weak, alias("__setup_pcat_compatibility")));
+
+void __setup_pcat_compatibility(void)
+{
+}
+
int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
{
struct boot_params *base_ptr;