diff options
author | Tom Rini <trini@konsulko.com> | 2017-05-16 18:46:39 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 15:02:25 (GMT) |
commit | 1d7f6ad2bf74afd26df1f455c05a4a1dc4915449 (patch) | |
tree | 260b31014af2a707f1919ce2c815dc0b35069f72 /board | |
parent | 708ca4daf911af2fc96e77c06640618a633d9fa0 (diff) | |
download | u-boot-1d7f6ad2bf74afd26df1f455c05a4a1dc4915449.tar.xz |
ti816x: Modernize the defconfig
- Switch to using <configs/ti_armv7_omap.h> and family. This lets us
drop lots of custom defines.
- Ensure that our default environment uses DEFAULT_LINUX_BOOT_ENV so
that Linux will boot correctly.
- Enable CONFIG_DISTRO_DEFAULTS
- Switch to using CONFIG_OF_CONTROL
- Various other cleanups to match other SoCs in the family line.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/ti/ti816x/evm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ti/ti816x/evm.c b/board/ti/ti816x/evm.c index 8f07e2c..577e60f 100644 --- a/board/ti/ti816x/evm.c +++ b/board/ti/ti816x/evm.c @@ -24,7 +24,7 @@ DECLARE_GLOBAL_DATA_PTR; int board_init(void) { - gd->bd->bi_boot_params = PHYS_DRAM_1 + 0x100; + gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; #if defined(CONFIG_NAND) gpmc_init(); #endif |