From e574a93763ec3625a01d2b3faf743fdb23b43090 Mon Sep 17 00:00:00 2001 From: Kever Yang Date: Wed, 24 Jan 2018 14:45:14 +0800 Subject: [PATCH] rockchip: fix RKIMG default partitions we need to end with '\0', or else the partitions will be broken. Change-Id: I2bc480165ab7873be35614287b27e855bb5c39b9 Signed-off-by: Kever Yang --- include/configs/rockchip-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h index c67daa265f..1f9d8411bc 100644 --- a/include/configs/rockchip-common.h +++ b/include/configs/rockchip-common.h @@ -80,7 +80,7 @@ "name=oem,size=32M,uuid=${uuid_gpt_oem};" \ "name=frp,size=512K,uuid=${uuid_gpt_frp};" \ "name=security,size=2M,uuid=${uuid_gpt_security};" \ - "name=userdata,size=-,uuid=${uuid_gpt_userdata};" + "name=userdata,size=-,uuid=${uuid_gpt_userdata};\0" #define RKIMG_BOOTCOMMAND \ "if mmc dev 0; then setenv devtype mmc; setenv devnum 0;" \