From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stuart Yoder Date: Fri, 29 Jul 2016 15:59:18 -0500 Subject: [U-Boot] [PATCH] armv8: ls2080a/ls1043a/ls1012a: enable support for booti Message-ID: <1469825958-20120-1-git-send-email-stuart.yoder@nxp.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The booti command allows booting kernels specifying dtb, kernel, and rootfs addresses individually (without needing an ITB file), providing more flexibility. Signed-off-by: Stuart Yoder --- include/configs/ls1012a_common.h | 1 + include/configs/ls1043a_common.h | 1 + include/configs/ls2080a_common.h | 1 + 3 files changed, 3 insertions(+) diff --git a/include/configs/ls1012a_common.h b/include/configs/ls1012a_common.h index fba2fac..a2e2803 100644 --- a/include/configs/ls1012a_common.h +++ b/include/configs/ls1012a_common.h @@ -93,6 +93,7 @@ /* Command line configuration */ #define CONFIG_CMD_ENV +#define CONFIG_CMD_BOOTI #undef CONFIG_CMD_IMLS #define CONFIG_ARCH_EARLY_INIT_R diff --git a/include/configs/ls1043a_common.h b/include/configs/ls1043a_common.h index 0ad5261..6e6ddb7 100644 --- a/include/configs/ls1043a_common.h +++ b/include/configs/ls1043a_common.h @@ -175,6 +175,7 @@ /* Command line configuration */ #define CONFIG_CMD_ENV +#define CONFIG_CMD_BOOTI /* MMC */ #define CONFIG_MMC diff --git a/include/configs/ls2080a_common.h b/include/configs/ls2080a_common.h index ebe1415..fb05f0e 100644 --- a/include/configs/ls2080a_common.h +++ b/include/configs/ls2080a_common.h @@ -208,6 +208,7 @@ unsigned long long get_qixis_addr(void); /* Command line configuration */ #define CONFIG_CMD_ENV +#define CONFIG_CMD_BOOTI /* Miscellaneous configurable options */ #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000) -- 1.9.0