From 298b76e808a84bc592a05616008b295620a52d55 Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Tue, 17 Nov 2020 20:35:14 +0900 Subject: [PATCH] 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 --- include/samsung/tizen_amlogic.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/samsung/tizen_amlogic.h b/include/samsung/tizen_amlogic.h index 6beeda3..5915ec5 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 "" -- 2.7.4