From: Stefan Reinauer Date: Tue, 23 Oct 2012 18:04:37 +0000 (+0000) Subject: x86: Provide a function to clean up just before booting a zimage X-Git-Tag: v2013.01-rc2~73^2~32 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=61e0ea900a3741920f7a74017a23e34bc13bd599;p=u-boot x86: Provide a function to clean up just before booting a zimage This function can be used by boards which want to do some clean-up before booting a zImage. Signed-off-by: Stefan Reinauer Signed-off-by: Simon Glass --- diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c index 238ed614e8..1236d220ca 100644 --- a/arch/x86/lib/zimage.c +++ b/arch/x86/lib/zimage.c @@ -39,6 +39,7 @@ #ifdef CONFIG_SYS_COREBOOT #include #endif +#include /* * Memory lay-out: @@ -282,8 +283,18 @@ int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot, return 0; } +/* + * Implement a weak default function for boards that optionally + * need to clean up the system before jumping to the kernel. + */ +__weak void board_final_cleanup(void) +{ +} + void boot_zimage(void *setup_base, void *load_address) { + board_final_cleanup(); + printf("\nStarting kernel ...\n\n"); #ifdef CONFIG_SYS_COREBOOT