diff options
| author | Jingdong Lu <jingdong.lu@windriver.com> | 2011-08-18 15:59:58 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-19 09:29:19 -0700 |
| commit | 30ba9839a2dfcd144c3369644c00e1551b820b33 (patch) | |
| tree | 46ff756f6421ad81e2041f79882be1299913e901 /meta/recipes-core/initrdscripts/files/init-live.sh | |
| parent | b174d51b42b791ae8dd4da8f1d0627e48162b7ab (diff) | |
| download | poky-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/init-live.sh')
| -rw-r--r-- | meta/recipes-core/initrdscripts/files/init-live.sh | 2 |
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 | ||
| 3 | ROOT_MOUNT="/rootfs/" | 3 | ROOT_MOUNT="/rootfs/" |
| 4 | ROOT_IMAGE=rootfs.img | 4 | ROOT_IMAGE="isolinux/rootfs.img" |
| 5 | MOUNT="/bin/mount" | 5 | MOUNT="/bin/mount" |
| 6 | UMOUNT="/bin/umount" | 6 | UMOUNT="/bin/umount" |
| 7 | 7 | ||
