From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Ford Date: Wed, 10 Feb 2016 01:41:10 -0600 Subject: [U-Boot] [PATCH V2] OMAP3_logic: Add NAND args to boot UBIFS Message-ID: <1455090070-9250-1-git-send-email-aford173@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de With the recent addition of UBI support, this patch will add the preset parameters to allow for mouting an UBIFS from the 'fs' partition in NAND. -V2: ubi.mtd=fs instead of ubi.mtd=4 Signed-off-by: Adam Ford --- include/configs/omap3_logic.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/configs/omap3_logic.h b/include/configs/omap3_logic.h index 9ea6ef3..fba2a12 100644 --- a/include/configs/omap3_logic.h +++ b/include/configs/omap3_logic.h @@ -180,6 +180,8 @@ "mmcdev=0\0" \ "mmcroot=/dev/mmcblk0p2 rw\0" \ "mmcrootfstype=ext4 rootwait\0" \ + "nandroot=ubi0:rootfs rw ubi.mtd=fs noinitrd\0" \ + "nandrootfstype=ubifs rootwait\0" \ "autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \ "if run loadbootscript; then " \ "run bootscript; " \ @@ -221,6 +223,10 @@ "${optargs} " \ "root=${mmcroot} " \ "rootfstype=${mmcrootfstype}\0" \ + "nandargs=run setconsole; setenv bootargs console=${console} " \ + "${optargs} " \ + "root=${nandroot} " \ + "rootfstype=${nandrootfstype}\0" \ "fdtaddr=0x86000000\0" \ "loadfdtimage=mmc rescan; " \ "fatload mmc ${mmcdev} ${fdtaddr} ${fdtimage}\0" \ -- 1.9.1