summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChanho Park <chanho61.park@samsung.com>2016-05-02 22:57:05 +0900
committerjino.cho <jino.cho@samsung.com>2016-12-05 16:56:51 +0900
commit25f2f2f260428e5f4c192db744e301b2978eb928 (patch)
treed844058e33b1a0285d9dd9dc01da7cb401d5f48e
parent926a96506129ee05529739bb2ab0e92697091c0e (diff)
downloadu-boot-artik-25f2f2f260428e5f4c192db744e301b2978eb928.tar.gz
u-boot-artik-25f2f2f260428e5f4c192db744e301b2978eb928.tar.bz2
u-boot-artik-25f2f2f260428e5f4c192db744e301b2978eb928.zip
artik: configs: skip 4MB size of boot partition
This patch skips 4MB size of boot partition for resizing tzsw image and reserve area which can be used at future. Change-Id: Ic70bc068d8aca86f15bd64177d8e2ee5394c3a1b Signed-off-by: Chanho Park <chanho61.park@samsung.com>
-rwxr-xr-xinclude/configs/artik_common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/artik_common.h b/include/configs/artik_common.h
index 0dccbe960..ba0ff0de5 100755
--- a/include/configs/artik_common.h
+++ b/include/configs/artik_common.h
@@ -352,7 +352,7 @@
#define PARTS_DEFAULT \
"uuid_disk=${uuid_gpt_disk};" \
- "name=boot,start=1MiB,size=" __stringify(CONFIG_BOOT_PART_SIZE) \
+ "name=boot,start=4MiB,size=" __stringify(CONFIG_BOOT_PART_SIZE) \
"MiB,uuid=${uuid_gpt_boot};" \
"name=modules,size=" __stringify(CONFIG_MODULE_PART_SIZE) \
"MiB,uuid=${uuid_gpt_module};" \
@@ -360,7 +360,7 @@
#define PARTS_TIZEN \
"uuid_disk=${uuid_gpt_disk};" \
- "name=boot,start=1MiB,size=" __stringify(CONFIG_BOOT_PART_SIZE) \
+ "name=boot,start=4MiB,size=" __stringify(CONFIG_BOOT_PART_SIZE) \
"MiB,uuid=${uuid_gpt_boot};" \
"name=modules,size=" __stringify(CONFIG_MODULE_PART_SIZE) \
"MiB,uuid=${uuid_gpt_module};" \
@@ -370,7 +370,7 @@
#define PARTS_ANDROID \
"uuid_disk=${uuid_gpt_disk};" \
- "name=boot,start=1MiB,size=" __stringify(CONFIG_BOOT_PART_SIZE) \
+ "name=boot,start=4MiB,size=" __stringify(CONFIG_BOOT_PART_SIZE) \
"MiB,uuid=${uuid_gpt_boot};" \
"name=system,size=1024MiB,uuid=${uuid_gpt_system};" \
"name=cache,size=128MiB,uuid=${uuid_gpt_cache};" \