summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/initrdscripts/files/init-install.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-install.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-install.sh')
-rw-r--r--meta/recipes-core/initrdscripts/files/init-install.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/initrdscripts/files/init-install.sh b/meta/recipes-core/initrdscripts/files/init-install.sh
index fb6cea8d31..d31d994341 100644
--- a/meta/recipes-core/initrdscripts/files/init-install.sh
+++ b/meta/recipes-core/initrdscripts/files/init-install.sh
@@ -5,6 +5,8 @@
5# install.sh [device_name] [rootfs_name] [video_mode] [vga_mode] 5# install.sh [device_name] [rootfs_name] [video_mode] [vga_mode]
6# 6#
7 7
8PATH=/sbin:/bin:/usr/sbin:/usr/bin
9
8# We need 20 Mb for the boot partition 10# We need 20 Mb for the boot partition
9boot_size=20 11boot_size=20
10 12