summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/initrdscripts/files/init-live.sh
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2011-09-15 15:41:37 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-16 13:30:26 +0100
commite4fe5542a5242a62d7fc83bd24f65aeadb4d9390 (patch)
treea57b7cef66ff224596cdc92513bac5c664b3f687 /meta/recipes-core/initrdscripts/files/init-live.sh
parent6f797c9398be2206dc6f721109a25038a2ce4a87 (diff)
downloadpoky-e4fe5542a5242a62d7fc83bd24f65aeadb4d9390.tar.gz
Set an explicit path for the initrd scripts
If we don't set PATH, then the shell will specify one for us. Busybox adds the sbin dirs, but bash does not. I hit an issue where bash (among other things) ended up in my initrd and the boot scripts failed due to a bad default PATH. While that is a separate issue, we should not be at the mercy of the shell's default PATH. Update the initrdscripts to all specify: PATH=/sbin:/bin:/usr/sbin:/usr/bin (From OE-Core rev: 4617ae0f433876037c2c9a0dfdb5e373e7a5c77b) Signed-off-by: Darren Hart <dvhart@linux.intel.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.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-core/initrdscripts/files/init-live.sh b/meta/recipes-core/initrdscripts/files/init-live.sh
index 6a1deba0e2..c054863a2a 100644
--- a/meta/recipes-core/initrdscripts/files/init-live.sh
+++ b/meta/recipes-core/initrdscripts/files/init-live.sh
@@ -1,5 +1,7 @@
1#!/bin/sh 1#!/bin/sh
2 2
3PATH=/sbin:/bin:/usr/sbin:/usr/bin
4
3ROOT_MOUNT="/rootfs/" 5ROOT_MOUNT="/rootfs/"
4ROOT_IMAGE="rootfs.img" 6ROOT_IMAGE="rootfs.img"
5MOUNT="/bin/mount" 7MOUNT="/bin/mount"
@@ -12,7 +14,7 @@ early_setup() {
12 mount -t proc proc /proc 14 mount -t proc proc /proc
13 mount -t sysfs sysfs /sys 15 mount -t sysfs sysfs /sys
14 udevd --daemon 16 udevd --daemon
15 /sbin/udevadm trigger --action=add 17 udevadm trigger --action=add
16} 18}
17 19
18read_args() { 20read_args() {