From 0b791a192ae9dbad05a46880133e319b286b9d8f Mon Sep 17 00:00:00 2001 From: Inha Song Date: Fri, 21 Feb 2014 18:55:15 +0100 Subject: [PATCH] trats/trats2: enable bootloader signature Enable of this config will now require making binary signature. From now, manually build sequence should looks like this: CROSS_COMPILE=... make mrproper make trats2_config make ./tools/mkimage_signed.sh u-boot-dtb.bin trats2_config The output signed binary is: u-boot-mmc.bin Change-Id: I9a2c86d2f24a050ff3738adb9dbd7d5914ff16d8 Signed-off-by: Inha Song --- include/configs/trats.h | 1 + include/configs/trats2.h | 1 + 2 files changed, 2 insertions(+) diff --git a/include/configs/trats.h b/include/configs/trats.h index e50c0a8667..999e83de8d 100644 --- a/include/configs/trats.h +++ b/include/configs/trats.h @@ -20,6 +20,7 @@ #define CONFIG_DEFAULT_DEVICE_TREE exynos4210-trats #define CONFIG_TIZEN /* TIZEN lib */ +#define CONFIG_SIG /* make signature header */ #define CONFIG_SYS_L2CACHE_OFF #ifndef CONFIG_SYS_L2CACHE_OFF diff --git a/include/configs/trats2.h b/include/configs/trats2.h index ddd562d698..349a9b9bef 100644 --- a/include/configs/trats2.h +++ b/include/configs/trats2.h @@ -19,6 +19,7 @@ #define CONFIG_DEFAULT_DEVICE_TREE exynos4412-trats2 #define CONFIG_TIZEN /* TIZEN lib */ +#define CONFIG_SIG /* make signature header */ #define CONFIG_SYS_L2CACHE_OFF #ifndef CONFIG_SYS_L2CACHE_OFF -- 2.34.1