diff options
author | Faiz Abbas | 2019-02-27 13:29:38 +0530 |
---|---|---|
committer | Tom Rini | 2019-04-12 08:05:50 -0400 |
commit | 097fd51b7ab2b179719f13cc9cca77043c45bb4c (patch) | |
tree | 9f402e782aecbb30e749931c8d2f55d472b71ed1 /include/environment | |
parent | 8a8f59a0ce113bde6cc61c3c62ed86e92eae33a5 (diff) |
configs: ti_omap5_common: Add NAND environment settings
Now that NAND is supported on DRA71x include various NAND environment
settings
Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/environment')
-rw-r--r-- | include/environment/ti/nand.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/environment/ti/nand.h b/include/environment/ti/nand.h new file mode 100644 index 00000000000..f838cb3ed1a --- /dev/null +++ b/include/environment/ti/nand.h @@ -0,0 +1,26 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com + * + * Environment variable definitions for NAND on TI boards. + */ + +#ifdef CONFIG_NAND +#define NANDARGS \ + "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \ + "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \ + "nandargs=setenv bootargs console=${console} " \ + "${optargs} " \ + "root=${nandroot} " \ + "rootfstype=${nandrootfstype}\0" \ + "nandroot=ubi0:rootfs rw ubi.mtd=NAND.file-system,2048\0" \ + "nandrootfstype=ubifs rootwait=1\0" \ + "nandboot=echo Booting from nand ...; " \ + "run nandargs; " \ + "nand read ${fdtaddr} NAND.u-boot-spl-os; " \ + "nand read ${loadaddr} NAND.kernel; " \ + "bootz ${loadaddr} - ${fdtaddr}\0" +#else +#define NANDARGS "" +#endif + |