summaryrefslogtreecommitdiff
path: root/mk/rootfs.mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-05-27 17:19:33 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-05-27 17:19:33 +0200
commit9a841e2aed7b7e52958e5703215643dd3cf45ad0 (patch)
tree58b5a13611e2450d6f88eae256b43e3d6cbd5356 /mk/rootfs.mk
parentc12b595892e3231182239998f6561bd6556a9947 (diff)
parent23eff1d5d3d4f22fc3d2fe9de026e3df3edf426d (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'mk/rootfs.mk')
-rw-r--r--mk/rootfs.mk9
1 files changed, 7 insertions, 2 deletions
diff --git a/mk/rootfs.mk b/mk/rootfs.mk
index b91a58629..cb21798a8 100644
--- a/mk/rootfs.mk
+++ b/mk/rootfs.mk
@@ -10,6 +10,11 @@ endef
ifeq ($(ADK_LINUX_MIPS_RB532),y)
ROOTFS:= root=/dev/sda2
+MTDDEV:= root=/dev/mtdblock1
+endif
+
+ifeq ($(ADK_LINUX_MIPS_RB433),y)
+MTDDEV:= root=/dev/mtdblock2
endif
ifeq ($(ADK_LINUX_ARM_FOXBOARD),y)
@@ -17,12 +22,12 @@ ROOTFS:= root=/dev/mmcblk0p2 rootwait
endif
$(eval $(call rootfs_template,ext2-block,EXT2_BLOCK,$(ROOTFS)))
-$(eval $(call rootfs_template,usb,USB,root=/dev/sdb1 rootdelay=10))
+$(eval $(call rootfs_template,usb,USB,root=/dev/sdb1 rootdelay=5))
$(eval $(call rootfs_template,archive,ARCHIVE))
$(eval $(call rootfs_template,initramfs,INITRAMFS))
$(eval $(call rootfs_template,initramfs-piggyback,INITRAMFS_PIGGYBACK))
$(eval $(call rootfs_template,squashfs,SQUASHFS))
-$(eval $(call rootfs_template,yaffs,YAFFS,root=/dev/mtdblock1 panic=3))
+$(eval $(call rootfs_template,yaffs,YAFFS,$(MTDDEV) panic=3))
$(eval $(call rootfs_template,nfsroot,NFSROOT,root=/dev/nfs ip=dhcp init=/init))
$(eval $(call rootfs_template,encrypted,ENCRYPTED))