diff options
author | Heiko Schocher <hs@denx.de> | 2014-11-18 11:51:06 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-12-04 21:28:32 -0500 |
commit | 0c331ebcc6843bb5e4e6727d1b4a13ef2284a5ab (patch) | |
tree | ccec1c14aae6786763a60cbf2cfd7a19da3f54fb /include | |
parent | 4ac32b9c4db8e9e427584024c93773927644f7f4 (diff) |
arm, am335x: siemens boards add FIT support
add FIT support and set "boardid" from factoryset records
"DEV/id" and "COMP/ver". "boardid" is used for selecting
which fit configuration gets booted on the board.
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/pxm2.h | 4 | ||||
-rw-r--r-- | include/configs/rut.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/configs/pxm2.h b/include/configs/pxm2.h index d75d5629639..946b2c85e9d 100644 --- a/include/configs/pxm2.h +++ b/include/configs/pxm2.h @@ -150,4 +150,8 @@ #define CONFIG_SYS_CONSOLE_FG_COL 0x00 #endif +#ifndef CONFIG_SPL_BUILD +#define CONFIG_FIT +#endif + #endif /* ! __CONFIG_PXM2_H */ diff --git a/include/configs/rut.h b/include/configs/rut.h index 6bddededaeb..0067ea46e0c 100644 --- a/include/configs/rut.h +++ b/include/configs/rut.h @@ -154,4 +154,8 @@ #define CONFIG_SYS_CONSOLE_FG_COL 0x00 #endif +#ifndef CONFIG_SPL_BUILD +#define CONFIG_FIT +#endif + #endif /* ! __CONFIG_RUT_H */ |