aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/initrdscripts/files/init-boot.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:29:35 +0100
commit4617ae0f433876037c2c9a0dfdb5e373e7a5c77b (patch)
tree1c6c4a4240e648f8bedc0fc0420da922c0ed3db1 /meta/recipes-core/initrdscripts/files/init-boot.sh
parent97249b6d12e9a87bac97a48ad35434084bbe70e3 (diff)
downloadopenembedded-core-contrib-4617ae0f433876037c2c9a0dfdb5e373e7a5c77b.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 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-boot.sh')
-rw-r--r--meta/recipes-core/initrdscripts/files/init-boot.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/initrdscripts/files/init-boot.sh b/meta/recipes-core/initrdscripts/files/init-boot.sh
index 9d804fc3a7..e82eba025d 100644
--- a/meta/recipes-core/initrdscripts/files/init-boot.sh
+++ b/meta/recipes-core/initrdscripts/files/init-boot.sh
@@ -1,5 +1,7 @@
#!/bin/sh
+PATH=/sbin:/bin:/usr/sbin:/usr/bin
+
mkdir /proc
mkdir /sys
mount -t proc proc /proc