diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-10-29 23:34:39 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-10-29 23:34:39 +0000 |
commit | 540e328b6670a815950926929f303059998f1c66 (patch) | |
tree | 3f59e844380a0a37d0d772125649c7b1fb413e5c /target | |
parent | 2d57b56bced3d7c9cd0781b9d9d5a6ac7b0abf2b (diff) | |
download | upstream-540e328b6670a815950926929f303059998f1c66.tar.gz upstream-540e328b6670a815950926929f303059998f1c66.tar.bz2 upstream-540e328b6670a815950926929f303059998f1c66.zip |
ext2 images need to wait for /dev/sda2 to appear before attempting to mount it, fixes olpc boot on ext2 images
SVN-Revision: 18215
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/olpc/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/olpc/image/Makefile b/target/linux/olpc/image/Makefile index eb1bedd0a0..f60b76e204 100644 --- a/target/linux/olpc/image/Makefile +++ b/target/linux/olpc/image/Makefile @@ -27,7 +27,7 @@ ifeq ($(CONFIG_OLPC_BOOTSCRIPT_IMAGES),y) endef define Image/cmdline/ext2 - root=$(ROOTPART) rootfstype=ext2 + root=$(ROOTPART) rootfstype=ext2 rootwait endef define Image/Build/bootscript |