From 25f2f2f260428e5f4c192db744e301b2978eb928 Mon Sep 17 00:00:00 2001 From: Chanho Park Date: Mon, 2 May 2016 22:57:05 +0900 Subject: [PATCH] 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 --- include/configs/artik_common.h | 6 +++--- 1 file 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};" \ -- 2.34.1