diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2020-11-17 20:35:14 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2023-10-17 13:19:25 +0900 |
commit | 298b76e808a84bc592a05616008b295620a52d55 (patch) | |
tree | 247c94a422c3ab982ab37618ea8fd6998aef730d /include | |
parent | d8f80b5e64e185447a84c26eca0eba9f9c81c122 (diff) | |
download | u-boot-298b76e808a84bc592a05616008b295620a52d55.tar.gz u-boot-298b76e808a84bc592a05616008b295620a52d55.tar.bz2 u-boot-298b76e808a84bc592a05616008b295620a52d55.zip |
samsung: tizen_amlogic: increase u-boot size for raw write
Increase u-boot size from 0x850 to 0x1000.
- From 1M to 2M.
If u-boot image is over 1064K (0x850), then it will be broken.
Change-Id: I95b8a0b074d5c4b2877b98c2e5cd4057941fda64
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/samsung/tizen_amlogic.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/samsung/tizen_amlogic.h b/include/samsung/tizen_amlogic.h index 6beeda3534..5915ec5da0 100644 --- a/include/samsung/tizen_amlogic.h +++ b/include/samsung/tizen_amlogic.h @@ -43,16 +43,16 @@ "ramdisk.img part -1 7;" \ "ramdisk-recovery.img part -1 8" -#define DFU_ALT_BOOT_ODROID_N2 "u-boot.bin raw 0x1 0x850;" \ - "u-boot-n2.bin raw 0x1 0x850;" \ +#define DFU_ALT_BOOT_ODROID_N2 "u-boot.bin raw 0x1 0x1000;" \ + "u-boot-n2.bin raw 0x1 0x1000;" \ "u-boot-c4.bin skip 0 0;" \ "u-boot-kvim3.bin skip 0 0" -#define DFU_ALT_BOOT_KVIM3 "u-boot.bin raw 0x1 0x850;" \ - "u-boot-kvim3.bin raw 0x1 0x850;" \ +#define DFU_ALT_BOOT_KVIM3 "u-boot.bin raw 0x1 0x1000;" \ + "u-boot-kvim3.bin raw 0x1 0x1000;" \ "u-boot-c4.bin skip 0 0;" \ "u-boot-n2.bin skip 0 0" -#define DFU_ALT_BOOT_ODROID_C4 "u-boot.bin raw 0x1 0x850;" \ - "u-boot-c4.bin raw 0x1 0x850;" \ +#define DFU_ALT_BOOT_ODROID_C4 "u-boot.bin raw 0x1 0x1000;" \ + "u-boot-c4.bin raw 0x1 0x1000;" \ "u-boot-kvim3.bin skip 0 0;" \ "u-boot-n2.bin skip 0 0" #define DFU_ALT_BOOT_SD "" |