summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/initrdscripts
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2016-03-29 00:49:51 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-29 23:20:12 +0100
commit4e7eaed2c038ca29f343b005fe41dae50f5331ab (patch)
treea80f32996f932230ff51f040d2909eb861fa8676 /meta/recipes-core/initrdscripts
parent162207729bdb3f43b3073e1a82287fab70c6ff9e (diff)
downloadpoky-4e7eaed2c038ca29f343b005fe41dae50f5331ab.tar.gz
init-live.sh: fix ROOT_MOUNT
The '/' in the end is not needed, which caused '//' in the path. (From OE-Core rev: 6b0fc87ced857763ae7e9d1012fb9f5c952c2cc8) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/initrdscripts')
-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 f698535980..04e58d5f30 100644
--- a/meta/recipes-core/initrdscripts/files/init-live.sh
+++ b/meta/recipes-core/initrdscripts/files/init-live.sh
@@ -2,7 +2,7 @@
2 2
3PATH=/sbin:/bin:/usr/sbin:/usr/bin 3PATH=/sbin:/bin:/usr/sbin:/usr/bin
4 4
5ROOT_MOUNT="/rootfs/" 5ROOT_MOUNT="/rootfs"
6ROOT_IMAGE="rootfs.img" 6ROOT_IMAGE="rootfs.img"
7MOUNT="/bin/mount" 7MOUNT="/bin/mount"
8UMOUNT="/bin/umount" 8UMOUNT="/bin/umount"