From 801ab1503b3b6e310a64130f7206c33b80f0c2a7 Mon Sep 17 00:00:00 2001 From: "wansu.yoo" Date: Mon, 16 May 2016 11:18:14 +0900 Subject: [PATCH] artik: configs: Modified size of system-data area from 256M to 1024M When there occurred system crash, core dump file is being saved at system-data partition. (/opt/share/crash/dump) But if there happened some crashes, it is insufficient to be saved with current size(256M). On the other hand, there are enough size in user partition. So, we are thinking it's proper to adjust partition size. Change-Id: I2a5a1b5c635ad3cb95336d2010a6284920beb48c Signed-off-by: wansu.yoo --- include/configs/artik_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 include/configs/artik_common.h diff --git a/include/configs/artik_common.h b/include/configs/artik_common.h old mode 100644 new mode 100755 index 44a69cf5c..0dccbe960 --- a/include/configs/artik_common.h +++ b/include/configs/artik_common.h @@ -365,7 +365,7 @@ "name=modules,size=" __stringify(CONFIG_MODULE_PART_SIZE) \ "MiB,uuid=${uuid_gpt_module};" \ "name=rootfs,size=2048MiB,uuid=${uuid_gpt_rootfs};" \ - "name=system-data,size=256MiB,uuid=${uuid_gpt_system_data};" \ + "name=system-data,size=1024MiB,uuid=${uuid_gpt_system_data};" \ "name=user,size=-,uuid=${uuid_gpt_user}\0" #define PARTS_ANDROID \ -- 2.34.1