From 571e050b45add2c4c57ab340c578d6bd06ac6c8b Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Thu, 19 Oct 2017 19:17:51 +0900 Subject: ARM: uniphier: increase CONFIG_SYS_BOOTM_LEN to 32MB The default value of CONFIG_SYS_BOOTM_LEN, 0x800000, causes error when uncompressing Image.gz out of FIT image. Uncompressing Kernel Image ... Error: inflate() returned -5 Image too large: increase CONFIG_SYS_BOOTM_LEN Signed-off-by: Masahiro Yamada --- include/configs/uniphier.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h index 515024c98e..5014828f8c 100644 --- a/include/configs/uniphier.h +++ b/include/configs/uniphier.h @@ -97,6 +97,7 @@ #define CONFIG_LOADADDR 0x84000000 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR +#define CONFIG_SYS_BOOTM_LEN (32 << 20) #define CONFIG_CMDLINE_EDITING /* add command line history */ -- cgit From 15d0f3538a1a38577f155b58d170bd4ead1da978 Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Sat, 21 Oct 2017 19:51:13 +0900 Subject: ARM: uniphier: remove verify=n from environments If the environment "verify" is set to n, the image verification is entirely skipped. Remove it as a preparation for verified boot. Signed-off-by: Masahiro Yamada --- include/configs/uniphier.h | 1 - 1 file changed, 1 deletion(-) (limited to 'include') diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h index 5014828f8c..6f4d67ea8a 100644 --- a/include/configs/uniphier.h +++ b/include/configs/uniphier.h @@ -191,7 +191,6 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "netdev=eth0\0" \ - "verify=n\0" \ "initrd_high=0xffffffffffffffff\0" \ "nor_base=0x42000000\0" \ "sramupdate=setexpr tmp_addr $nor_base + 0x50000 &&" \ -- cgit