diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2020-05-11 07:37:01 +0900 |
---|---|---|
committer | Marek Szyprowski <m.szyprowski@samsung.com> | 2021-11-16 11:04:04 +0100 |
commit | 841d80940d76db71328acda08ef5e126e32ee1c9 (patch) | |
tree | a1e56b5671d87478e0f39c64881203f679f5baee /board | |
parent | 8b0d5c83a47c11c38e0cbf87650aaf569a62589c (diff) | |
download | u-boot-841d80940d76db71328acda08ef5e126e32ee1c9.tar.gz u-boot-841d80940d76db71328acda08ef5e126e32ee1c9.tar.bz2 u-boot-841d80940d76db71328acda08ef5e126e32ee1c9.zip |
board: amlogic: fix build warning and add fdt/initrd_high
Fix build warning and add fdt_high/initrd_high.
(it's taken from Hardkernel u-boot.)
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/amlogic/w400/w400.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/amlogic/w400/w400.c b/board/amlogic/w400/w400.c index ec3f35db57..7f01273b24 100644 --- a/board/amlogic/w400/w400.c +++ b/board/amlogic/w400/w400.c @@ -44,7 +44,7 @@ static char *get_dfu_alt_boot(char *interface, char *devstr) return NULL; if (!strncmp(devstr, "0", 1)) - alt_boot = CONFIG_DFU_ALT_SYSTEM_SD; + alt_boot = CONFIG_DFU_ALT_SYSTEM_2; else alt_boot = CONFIG_DFU_ALT_SYSTEM; |