diff options
| author | Tom Rini <[email protected]> | 2024-08-30 14:02:03 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-08-30 15:55:06 -0600 |
| commit | f0ec3e608902ca1f573e5b7017da6bc804483f55 (patch) | |
| tree | 782d0b6e6e85c8c52dc87612242d86e03ef6ec2a /common | |
| parent | ccda0ba4614be9f03328123308da891940d5f5cd (diff) | |
| parent | d9de999ed5b1a1ea749f2e82ff6b3d7aa7e69b9d (diff) | |
Merge patch series "Add support for Ethernet Boot on SK-AM62"
Chintan Vankar <[email protected]> says:
This series enables Ethernet Boot on SK-AM62 device.
This series is based on commit 'f4f845b85926' of origin/next branch of
U-Boot.
Logs for Ethernet Boot for AM625-SK:
https://gist.github.com/chintanv133/464782796a9a60b9f5a49e674c5fc31a
Diffstat (limited to 'common')
| -rw-r--r-- | common/spl/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c index da110ee0783..5886d2c5121 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -718,7 +718,7 @@ void board_init_r(gd_t *dummy1, ulong dummy2) initr_watchdog(); if (IS_ENABLED(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) || - IS_ENABLED(CONFIG_SPL_ATF)) + IS_ENABLED(CONFIG_SPL_ATF) || IS_ENABLED(CONFIG_SPL_NET)) dram_init_banksize(); if (CONFIG_IS_ENABLED(PCI) && !(gd->flags & GD_FLG_DM_DEAD)) { |
