artik: configs: skip 4MB size of boot partition
authorChanho Park <chanho61.park@samsung.com>
Mon, 2 May 2016 13:57:05 +0000 (22:57 +0900)
committerjino.cho <jino.cho@samsung.com>
Mon, 5 Dec 2016 07:56:51 +0000 (16:56 +0900)
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>
include/configs/artik_common.h

index 0dccbe96014c02322683547c515de70b187ba975..ba0ff0de51497fe7c1d3924c09e46687868c3d7e 100755 (executable)
 
 #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};"                          \
 
 #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};"                          \
 
 #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};"                \