]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
mx28evk: Add 'nandboot' environment command
authorOtavio Salvador <otavio@ossystems.com.br>
Mon, 16 Dec 2013 22:44:02 +0000 (20:44 -0200)
committerStefano Babic <sbabic@denx.de>
Fri, 3 Jan 2014 14:44:05 +0000 (15:44 +0100)
This reads the kernel, ftd and boot into ubifs filesystem. While on
that, the SD firmware filename definition has been moved next to the
other SD related commands.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Reviewed-by: Fabio Estevam <fabio.estevam@freescale.com>
include/configs/mx28evk.h

index 3de059941a1c04461dce7d393f9802865f8e028d..6c9fa007fa7670635a543e773a36e86fdbbc0a41 100644 (file)
 #define CONFIG_EXTRA_ENV_SETTINGS \
        "update_nand_full_filename=u-boot.nand\0" \
        "update_nand_firmware_filename=u-boot.sb\0"     \
-       "update_sd_firmware_filename=u-boot.sd\0" \
        "update_nand_firmware_maxsz=0x100000\0" \
        "update_nand_stride=0x40\0"     /* MX28 datasheet ch. 12.12 */ \
        "update_nand_count=0x4\0"       /* MX28 datasheet ch. 12.12 */ \
                "nand write ${loadaddr} ${fcb_sz} ${filesize} ; " \
                "nand write ${loadaddr} ${fw_off} ${filesize} ; " \
                "fi\0" \
+       "nandargs=setenv bootargs console=${console_mainline},${baudrate} " \
+               "rootfstype=ubifs ubi.mtd=6 root=ubi0_0 ${mtdparts}\0" \
+       "nandboot="             /* Boot from NAND */ \
+               "mtdparts default; " \
+               "run nandargs; " \
+               "nand read ${loadaddr} kernel 0x00400000; " \
+               "if test ${boot_fdt} = yes; then " \
+                       "nand read ${fdt_addr} fdt 0x00080000; " \
+                       "bootm ${loadaddr} - ${fdt_addr}; " \
+               "else " \
+                       "if test ${boot_fdt} = no; then " \
+                               "bootm; " \
+                       "else " \
+                               "echo \"ERROR: Set boot_fdt to yes or no.\"; " \
+                       "fi; " \
+               "fi\0" \
+       "update_sd_firmware_filename=u-boot.sd\0" \
        "update_sd_firmware="           /* Update the SD firmware partition */ \
                "if mmc rescan ; then " \
                "if tftp ${update_sd_firmware_filename} ; then " \