summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/initrdscripts/files
diff options
context:
space:
mode:
authorJingdong Lu <jingdong.lu@windriver.com>2011-08-18 15:59:58 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-19 09:29:19 -0700
commit30ba9839a2dfcd144c3369644c00e1551b820b33 (patch)
tree46ff756f6421ad81e2041f79882be1299913e901 /meta/recipes-core/initrdscripts/files
parentb174d51b42b791ae8dd4da8f1d0627e48162b7ab (diff)
downloadpoky-30ba9839a2dfcd144c3369644c00e1551b820b33.tar.gz
initrdscripts: fix init-live.sh
Fix bug: [YOCTO #686] Because the variable "ROOT_IMAGE" in init-live.sh is not correct, it fails to run when using liveCD. Modify value of "ROOT_IMAGE" to "isolinux/rootfs.img". If we want to use liveCD, we also need to add some kernel options related to CDROM support when compling kernel. (From OE-Core rev: f9b6f41c9249cc90f7621d446eafae5e5508dd6e) Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/initrdscripts/files')
-rw-r--r--meta/recipes-core/initrdscripts/files/init-live.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/initrdscripts/files/init-live.sh b/meta/recipes-core/initrdscripts/files/init-live.sh
index f3e514544f..1cd87e8d94 100644
--- a/meta/recipes-core/initrdscripts/files/init-live.sh
+++ b/meta/recipes-core/initrdscripts/files/init-live.sh
@@ -1,7 +1,7 @@
1#!/bin/sh 1#!/bin/sh
2 2
3ROOT_MOUNT="/rootfs/" 3ROOT_MOUNT="/rootfs/"
4ROOT_IMAGE=rootfs.img 4ROOT_IMAGE="isolinux/rootfs.img"
5MOUNT="/bin/mount" 5MOUNT="/bin/mount"
6UMOUNT="/bin/umount" 6UMOUNT="/bin/umount"
7 7