[U-Boot] show_boot_progess @ ppc not working

Heiko Schocher heiko.schocher at invitel.hu
Wed Dec 10 08:27:01 CET 2008


Hello Andre,

Andre Schwarz wrote:
> All,
>
> can someone tell me why the board specific function "void
> show_boot_progress(int arg)"
> is no longer called (at least on MPC5200).
>
> Of course this line is present in the board config :
>
> #define CONFIG_SHOW_BOOT_PROGRESS 1
>
>
> What have I missed ?
>   

Nothing! Good catch. I tried it on a mpc8xx and
on a mpx82xx based board and it also didnt worked :-(

Can you try the following patch? (This patch solved it
on my boards ...)

thanks,
Heiko

[PATCH] all platforms: make show_boot_progress () again working.

Signed-off-by: Heiko Schocher <hs at denx.de>
---
 include/common.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/common.h b/include/common.h
index 5968036..6583f00 100644
--- a/include/common.h
+++ b/include/common.h
@@ -693,7 +693,7 @@ int    pcmcia_init (void);
 /*
  * Board-specific Platform code can reimplement show_boot_progress ()
if needed
  */
-void __attribute__((weak)) show_boot_progress (int val);
+void show_boot_progress (int val);
 
 #ifdef CONFIG_INIT_CRITICAL
 #error CONFIG_INIT_CRITICAL is deprecated!
-- 
1.5.6.1



More information about the U-Boot mailing list