diff options
author | Akshay Saraswat <akshay.s@samsung.com> | 2014-05-06 20:07:04 +0530 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2014-05-13 09:00:22 +0900 |
commit | e6fe968b821c3762ad6d7b68ef7ecabf4b40c6a3 (patch) | |
tree | 43f1a976b789c6c5173832a6e40aa67ccec6d670 | |
parent | 605d7e2af76fd0f28555685e6b8718d956c1da63 (diff) | |
download | u-boot-imx-e6fe968b821c3762ad6d7b68ef7ecabf4b40c6a3.zip u-boot-imx-e6fe968b821c3762ad6d7b68ef7ecabf4b40c6a3.tar.gz u-boot-imx-e6fe968b821c3762ad6d7b68ef7ecabf4b40c6a3.tar.bz2 |
Exynos5: config: Enable FIT
Adding two configs:
* CONFIG_FIT - Enable FIT image support.
* CONFIG_FIT_BEST_MATCH - Enable fetching correct DTB from
FIT image by comparing compatibles.
Signed-off-by: Akshay Saraswat <akshay.s@samsung.com>
Acked-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
-rw-r--r-- | include/configs/smdk5250.h | 4 | ||||
-rw-r--r-- | include/configs/smdk5420.h | 4 | ||||
-rw-r--r-- | include/configs/snow.h | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/include/configs/smdk5250.h b/include/configs/smdk5250.h index 183aae7..66fa179 100644 --- a/include/configs/smdk5250.h +++ b/include/configs/smdk5250.h @@ -14,4 +14,8 @@ #undef CONFIG_DEFAULT_DEVICE_TREE #define CONFIG_DEFAULT_DEVICE_TREE exynos5250-smdk5250 +/* Enable FIT support and comparison */ +#define CONFIG_FIT +#define CONFIG_FIT_BEST_MATCH + #endif /* __CONFIG_SMDK_H */ diff --git a/include/configs/smdk5420.h b/include/configs/smdk5420.h index b96eea8..58f706a 100644 --- a/include/configs/smdk5420.h +++ b/include/configs/smdk5420.h @@ -51,4 +51,8 @@ #define CONFIG_MAX_I2C_NUM 11 +/* Enable FIT support and comparison */ +#define CONFIG_FIT +#define CONFIG_FIT_BEST_MATCH + #endif /* __CONFIG_5420_H */ diff --git a/include/configs/snow.h b/include/configs/snow.h index ed5c0b6..673fa14 100644 --- a/include/configs/snow.h +++ b/include/configs/snow.h @@ -14,4 +14,8 @@ #undef CONFIG_DEFAULT_DEVICE_TREE #define CONFIG_DEFAULT_DEVICE_TREE exynos5250-snow +/* Enable FIT support and comparison */ +#define CONFIG_FIT +#define CONFIG_FIT_BEST_MATCH + #endif /* __CONFIG_SNOW_H */ |