From: Robert Yang Date: Tue, 29 Mar 2016 07:49:51 +0000 (-0700) Subject: init-live.sh: fix ROOT_MOUNT X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~26354 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b0fc87ced857763ae7e9d1012fb9f5c952c2cc8;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git init-live.sh: fix ROOT_MOUNT The '/' in the end is not needed, which caused '//' in the path. Signed-off-by: Robert Yang Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/initrdscripts/files/init-live.sh b/meta/recipes-core/initrdscripts/files/init-live.sh index f6985359803..04e58d5f30f 100644 --- a/meta/recipes-core/initrdscripts/files/init-live.sh +++ b/meta/recipes-core/initrdscripts/files/init-live.sh @@ -2,7 +2,7 @@ PATH=/sbin:/bin:/usr/sbin:/usr/bin -ROOT_MOUNT="/rootfs/" +ROOT_MOUNT="/rootfs" ROOT_IMAGE="rootfs.img" MOUNT="/bin/mount" UMOUNT="/bin/umount"