[PATCH 2/2] PCM038: choose boot device by parsing barebox_loc magic variable
Alexander Shiyan
shc_work at mail.ru
Thu Apr 26 13:02:04 EDT 2012
Signed-off-by: Alexander Shiyan <shc_work at mail.ru>
---
arch/arm/boards/pcm038/env/config | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/arch/arm/boards/pcm038/env/config b/arch/arm/boards/pcm038/env/config
index 32be5ec..59f3e89 100644
--- a/arch/arm/boards/pcm038/env/config
+++ b/arch/arm/boards/pcm038/env/config
@@ -14,10 +14,18 @@ ip=dhcp
#eth0.gateway=a.b.c.d
#eth0.serverip=a.b.c.d
+if [ x$barebox_loc = xnand ]; then
+ kernel_loc=nand
+ rootfs_loc=nand
+elif [ x$barebox_loc = xnor ]; then
+ kernel_loc=nor
+ rootfs_loc=nor
+else
# can be either 'nfs', 'tftp', 'nor' or 'nand'
-kernel_loc=tftp
+ kernel_loc=tftp
# can be either 'net', 'nor', 'nand' or 'initrd'
-rootfs_loc=net
+ rootfs_loc=net
+fi
# can be either 'jffs2' or 'ubifs'
rootfs_type=ubifs
--
1.7.3.4
More information about the barebox
mailing list