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 | 6dc92f178efbb61ad67a8425b62d303d4c05e98a (patch) | |
tree | 1c3456a5eaf777b3a15a2676daac38ce7fcd1e66 | |
parent | ef50787039dd53aeb429ab3d90082ad6123f3dcd (diff) | |
download | upstream-6dc92f178efbb61ad67a8425b62d303d4c05e98a.tar.gz upstream-6dc92f178efbb61ad67a8425b62d303d4c05e98a.tar.bz2 upstream-6dc92f178efbb61ad67a8425b62d303d4c05e98a.zip |
[olpc] ext2 images need to wait for /dev/sda2 to appear before attempting to mount it, fixes olpc boot on ext2 images
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18215 3c298f89-4303-0410-b956-a3cf2f4a3e73
-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 |