mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 04:26:19 -04:00
Fix (null) problem for AVR32 boards
Currently the U-Boot address ranges for AVR32 boards are printed like this: "U-Boot code: (null) -> 0001183c data: 000188e8 -> 0004e9b0" This patch fixes this to print: "U-Boot code: 00000000 -> 0001183c data: 000188f8 -> 0004e9c0" Signed-off-by: Reinhard Meyer <info@emk-elektronik.de>
This commit is contained in:
parent
620bbba524
commit
d04250cbe1
@ -115,8 +115,9 @@ static int init_baudrate(void)
|
|||||||
static int display_banner (void)
|
static int display_banner (void)
|
||||||
{
|
{
|
||||||
printf ("\n\n%s\n\n", version_string);
|
printf ("\n\n%s\n\n", version_string);
|
||||||
printf ("U-Boot code: %p -> %p data: %p -> %p\n",
|
printf ("U-Boot code: %08lx -> %08lx data: %08lx -> %08lx\n",
|
||||||
_text, _etext, _data, _end);
|
(unsigned long)_text, (unsigned long)_etext,
|
||||||
|
(unsigned long)_data, (unsigned long)_end);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user