mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
Blackfin: skip RAM display for 0 mem systems
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
@ -283,8 +283,11 @@ void board_init_f(ulong bootflag)
|
|||||||
printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
|
printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
|
||||||
printf("System: %s MHz\n", strmhz(buf, get_sclk()));
|
printf("System: %s MHz\n", strmhz(buf, get_sclk()));
|
||||||
|
|
||||||
printf("RAM: ");
|
if (CONFIG_MEM_SIZE) {
|
||||||
print_size(bd->bi_memsize, "\n");
|
printf("RAM: ");
|
||||||
|
print_size(bd->bi_memsize, "\n");
|
||||||
|
}
|
||||||
|
|
||||||
#if defined(CONFIG_POST)
|
#if defined(CONFIG_POST)
|
||||||
post_init_f();
|
post_init_f();
|
||||||
post_bootmode_init();
|
post_bootmode_init();
|
||||||
|
Reference in New Issue
Block a user