diff options
author | Chin Liang See <clsee@altera.com> | 2015-12-22 15:32:31 +0800 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-12-22 21:30:00 +0100 |
commit | dc93280d3e557f92d86fd2913405e8e30318c2ec (patch) | |
tree | 2aadf63460936bc644d4ce6b16d7b5811b9210e6 /include | |
parent | 0645c773156c432c2fac579290d52e7962f815bc (diff) | |
download | u-boot-dc93280d3e557f92d86fd2913405e8e30318c2ec.tar.gz u-boot-dc93280d3e557f92d86fd2913405e8e30318c2ec.tar.xz u-boot-dc93280d3e557f92d86fd2913405e8e30318c2ec.zip |
arm: socfpga: cyclone5_socdk: Enable ubiload console command
Enabling ubiload command to load kernel image and
device tree from mtd part labeled "UBI". ubiload
command will search the file from directory /boot.
Signed-off-by: Chin Liang See <clsee@altera.com>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
Cc: Dinh Nguyen <dinh.linux@gmail.com>
Cc: Pavel Machek <pavel@denx.de>
Cc: Marek Vasut <marex@denx.de>
Cc: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/socfpga_cyclone5_socdk.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/configs/socfpga_cyclone5_socdk.h b/include/configs/socfpga_cyclone5_socdk.h index 3c2e2ae264..72a3cef13c 100644 --- a/include/configs/socfpga_cyclone5_socdk.h +++ b/include/configs/socfpga_cyclone5_socdk.h @@ -74,7 +74,10 @@ "qspirootfstype=jffs2\0" \ "qspiboot=setenv bootargs " CONFIG_BOOTARGS \ " root=${qspiroot} rw rootfstype=${qspirootfstype};"\ - "bootm ${loadaddr} - ${fdt_addr}\0" + "bootm ${loadaddr} - ${fdt_addr}\0" \ + "ubiload=ubi part UBI && ubifsmount ubi0 && " \ + "ubifsload ${loadaddr} /boot/${bootimage} && " \ + "ubifsload ${fdt_addr} /boot/${fdtimage}\0" /* The rest of the configuration is shared */ #include <configs/socfpga_common.h> |