diff options
author | Andreas Bießmann <andreas.biessmann@corscience.de> | 2013-09-06 15:04:57 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-01 15:55:59 -0400 |
commit | eadbdf9efccd318d6388a1fcc9a6bb67e9caea43 (patch) | |
tree | 5f956038795c33afc1282ccabcd166d912702e33 /include | |
parent | 69df69d1d4183629f59c17f6cac00412b74c2f0b (diff) | |
download | u-boot-imx-eadbdf9efccd318d6388a1fcc9a6bb67e9caea43.zip u-boot-imx-eadbdf9efccd318d6388a1fcc9a6bb67e9caea43.tar.gz u-boot-imx-eadbdf9efccd318d6388a1fcc9a6bb67e9caea43.tar.bz2 |
tricorder: read kernel directly from NAND
Signed-off-by: Andreas Bießmann <andreas.biessmann@corscience.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/tricorder.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/tricorder.h b/include/configs/tricorder.h index 18ba065..aab1bf1 100644 --- a/include/configs/tricorder.h +++ b/include/configs/tricorder.h @@ -260,9 +260,10 @@ "loaduimage_ubi=ubi part ubi; " \ "ubifsmount ubi:root; " \ "ubifsload ${loadaddr} /boot/uImage\0" \ + "loaduimage_nand=nand read ${loadaddr} kernel 0x500000\0" \ "nandboot=echo Booting from nand ...; " \ "run nandargs; " \ - "run loaduimage_ubi; " \ + "run loaduimage_nand; " \ "bootm ${loadaddr}\0" \ "autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \ "if run loadbootscript; then " \ |