diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2020-05-11 07:37:01 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2023-10-17 13:19:24 +0900 |
commit | 3e6a2f211cf728b75cfb47dfa7ebdd002ea873a6 (patch) | |
tree | 97079100d0e86179741dee5f427cd475b6a1b4e1 /include | |
parent | 2e7771568dc2fa5b3ac256a45bcb5d2f24f75996 (diff) | |
download | u-boot-3e6a2f211cf728b75cfb47dfa7ebdd002ea873a6.tar.gz u-boot-3e6a2f211cf728b75cfb47dfa7ebdd002ea873a6.tar.bz2 u-boot-3e6a2f211cf728b75cfb47dfa7ebdd002ea873a6.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 'include')
-rw-r--r-- | include/samsung/tizen_amlogic.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/samsung/tizen_amlogic.h b/include/samsung/tizen_amlogic.h index d5e33e53ee..c802ba7b18 100644 --- a/include/samsung/tizen_amlogic.h +++ b/include/samsung/tizen_amlogic.h @@ -19,7 +19,7 @@ /* DFU */ /* For SD */ -#define CONFIG_DFU_ALT_SYSTEM_SD \ +#define CONFIG_DFU_ALT_SYSTEM_2 \ "Image fat 0 1;" \ "meson64_odroidn2_drm.dtb fat 0 1;" \ "meson64_odroidn2.dtb fat 0 1;" \ @@ -67,6 +67,8 @@ "bootmode=ramdisk\0" \ "bootdev=mmc\0" \ "tfm=setenv bootmode download; run bootcmd\0" \ + "fdt_high=0x20000000\n" \ + "initrd_high=0x3d800000\n" \ "opts=loglevel=4\0" \ "dfu_usb_con=0\0" \ "dfu_interface=mmc\0" \ |