From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Tue, 9 Dec 2014 17:04:24 -0800 Subject: [U-Boot] [PATCH v2] arm: ls102xa: Add QSPI boot support for LS1021AQDS/TWR board In-Reply-To: <1418117882-43525-1-git-send-email-b18965@freescale.com> References: <1418117882-43525-1-git-send-email-b18965@freescale.com> Message-ID: <54879C18.1050606@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 12/09/2014 01:38 AM, Alison Wang wrote: > This patch adds QSPI boot support for LS1021AQDS/TWR board. > The QSPI boot image need to be programmed into the QSPI flash > first. Then the booting will start from QSPI memory space. > > Signed-off-by: Alison Wang > --- > Change log: > v2: Rebase the patch. > > diff --git a/include/configs/ls1021aqds.h b/include/configs/ls1021aqds.h > index 6a6f620..653dbef 100644 > --- a/include/configs/ls1021aqds.h > +++ b/include/configs/ls1021aqds.h > @@ -315,7 +334,11 @@ > #define CONFIG_CMDLINE_TAG > #define CONFIG_CMDLINE_EDITING > > +#ifdef CONFIG_QSPI_BOOT > +#undef CONFIG_CMD_IMLS > +#else > #define CONFIG_CMD_IMLS > +#endif > Is it necessary to undef? York