diff options
| author | Robert Yang <liezhi.yang@windriver.com> | 2016-03-29 00:49:51 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-29 23:20:12 +0100 |
| commit | 4e7eaed2c038ca29f343b005fe41dae50f5331ab (patch) | |
| tree | a80f32996f932230ff51f040d2909eb861fa8676 | |
| parent | 162207729bdb3f43b3073e1a82287fab70c6ff9e (diff) | |
| download | poky-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>
| -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 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 | ||
| 3 | PATH=/sbin:/bin:/usr/sbin:/usr/bin | 3 | PATH=/sbin:/bin:/usr/sbin:/usr/bin |
| 4 | 4 | ||
| 5 | ROOT_MOUNT="/rootfs/" | 5 | ROOT_MOUNT="/rootfs" |
| 6 | ROOT_IMAGE="rootfs.img" | 6 | ROOT_IMAGE="rootfs.img" |
| 7 | MOUNT="/bin/mount" | 7 | MOUNT="/bin/mount" |
| 8 | UMOUNT="/bin/umount" | 8 | UMOUNT="/bin/umount" |
