diff options
| author | Wolfgang Denk <wd@denx.de> | 2010-09-28 23:30:47 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-09-28 23:30:47 +0200 | 
| commit | 2e6e1772c0e34871769be4aef79748fe3e47d953 (patch) | |
| tree | 00e4e19d7bccd2a1cd5753854ff4c2b8a26bebb0 /common/cmd_bdinfo.c | |
| parent | 1e4e5ef0469050f014aee1204dae8a9ab6053e49 (diff) | |
| parent | 3df61957938586c512c17e72d83551d190400981 (diff) | |
| download | olio-uboot-2014.01-2e6e1772c0e34871769be4aef79748fe3e47d953.tar.xz olio-uboot-2014.01-2e6e1772c0e34871769be4aef79748fe3e47d953.zip | |
Merge branch 'next' of /home/wd/git/u-boot/next
Conflicts:
	include/ppc4xx.h
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'common/cmd_bdinfo.c')
| -rw-r--r-- | common/cmd_bdinfo.c | 12 | 
1 files changed, 10 insertions, 2 deletions
| diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c index 84c6ec8e0..6b611b148 100644 --- a/common/cmd_bdinfo.c +++ b/common/cmd_bdinfo.c @@ -330,7 +330,6 @@ int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  	bd_t *bd = gd->bd;  	print_num ("arch_number",	bd->bi_arch_number); -	print_num ("env_t",		(ulong)bd->bi_env);  	print_num ("boot_params",	(ulong)bd->bi_boot_params);  	for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) { @@ -344,7 +343,16 @@ int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  	printf ("ip_addr     = %pI4\n", &bd->bi_ip_addr);  #endif  	printf ("baudrate    = %d bps\n", bd->bi_baudrate); - +#if !defined(CONFIG_SYS_ARM_WITHOUT_RELOC) +#if !(defined(CONFIG_SYS_NO_ICACHE) && defined(CONFIG_SYS_NO_DCACHE)) +	print_num ("TLB addr", gd->tlb_addr); +#endif +	print_num ("relocaddr", gd->relocaddr); +	print_num ("reloc off", gd->reloc_off); +	print_num ("irq_sp", gd->irq_sp);	/* irq stack pointer */ +	print_num ("sp start ", gd->start_addr_sp); +	print_num ("FB base  ", gd->fb_base); +#endif  	return 0;  } |