From mboxrd@z Thu Jan 1 00:00:00 1970 From: Murali Karicheri Date: Thu, 3 Jul 2014 11:11:29 -0400 Subject: [U-Boot] [U-boot] [Patch 3/3] k2hk_evm: add script to automate NAND flash process In-Reply-To: <1404333400-17376-4-git-send-email-ivan.khoronzhuk@ti.com> References: <1404333400-17376-1-git-send-email-ivan.khoronzhuk@ti.com> <1404333400-17376-4-git-send-email-ivan.khoronzhuk@ti.com> Message-ID: <53B572A1.4090005@ti.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 07/02/2014 04:36 PM, Ivan Khoronzhuk wrote: > Add script to automate NAND flash process. As for now the board has > two burn scripts - burn to boot from SPI NOR flash and burn to boot > from AEMIF NAND flash, rename burn_uboot script to burn_uboot_spi. > Also update README to contain NAND burn U-boot process description. > > Signed-off-by: Ivan Khoronzhuk > --- > board/ti/k2hk_evm/README | 27 ++++++++++++++++++++++++++- > include/configs/k2hk_evm.h | 4 +++- > 2 files changed, 29 insertions(+), 2 deletions(-) > > diff --git a/board/ti/k2hk_evm/README b/board/ti/k2hk_evm/README > index bfeb05b..1da721c 100644 > --- a/board/ti/k2hk_evm/README > +++ b/board/ti/k2hk_evm/README > @@ -43,6 +43,7 @@ Supported image formats:- > - u-boot.bin: for loading and running u-boot.bin through Texas instruments > code composure studio (CCS) > - u-boot-spi.gph: gpimage for programming SPI NOR flash for SPI NOR boot > + - u-boot-nand.gph: gpimage for programming AEMIF NAND flash for NAND boot > Please also update the supported boot modes to include NAND boot under the section "Supported boot modes:" > Build instructions: > =================== > @@ -55,6 +56,10 @@ To build u-boot-spi.gph > >make k2hk_evm_config > >make u-boot-spi.gph > > +To build u-boot-nand.gph > +>make k2hk_evm_config > +>make u-boot-nand.gph > + Murali