diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-05-08 23:27:49 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-05-08 23:27:49 +0000 |
commit | 3846834c858838f2c9d79c8972d89d651a30cc29 (patch) | |
tree | 5b90d79bacdeae5cf5ad3bcc4da5839445c4343b /target/linux/rb532/image/Makefile | |
parent | 43a539f131efaa3bbb7280687a7fc24e1f178291 (diff) | |
download | upstream-3846834c858838f2c9d79c8972d89d651a30cc29.tar.gz upstream-3846834c858838f2c9d79c8972d89d651a30cc29.tar.bz2 upstream-3846834c858838f2c9d79c8972d89d651a30cc29.zip |
rb532: add missing drivers and adjust the kernel command line for the right device name
SVN-Revision: 15725
Diffstat (limited to 'target/linux/rb532/image/Makefile')
-rw-r--r-- | target/linux/rb532/image/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/rb532/image/Makefile b/target/linux/rb532/image/Makefile index ab11706c46..a29ddf8280 100644 --- a/target/linux/rb532/image/Makefile +++ b/target/linux/rb532/image/Makefile @@ -34,19 +34,19 @@ define Image/BuildKernel endef define Image/cmdline/jffs2-64k -block2mtd.block2mtd=/dev/cfa2,65536 root=/dev/mtdblock0 rootfstype=jffs2 init=/etc/preinit +block2mtd.block2mtd=/dev/sda2,65536 root=/dev/mtdblock0 rootfstype=jffs2 init=/etc/preinit endef define Image/cmdline/jffs2-128k -block2mtd.block2mtd=/dev/cfa2,131072 root=/dev/mtdblock0 rootfstype=jffs2 init=/etc/preinit +block2mtd.block2mtd=/dev/sda2,131072 root=/dev/mtdblock0 rootfstype=jffs2 init=/etc/preinit endef define Image/cmdline/ext2 -root=/dev/cfa2 rootfstype=ext2 init=/etc/preinit +root=/dev/sda2 rootfstype=ext2 init=/etc/preinit endef define Image/cmdline/squashfs -block2mtd.block2mtd=/dev/cfa2,65536 root=/dev/mtdblock0 rootfstype=squashfs init=/etc/preinit +block2mtd.block2mtd=/dev/sda2,65536 root=/dev/mtdblock0 rootfstype=squashfs init=/etc/preinit endef define Image/cmdline/yaffs2 |