From 4150454e1cf7b7a0064cb0cba891cd7017eb0f80 Mon Sep 17 00:00:00 2001 From: Trammell hudson Date: Fri, 2 Feb 2018 15:50:17 -0500 Subject: [PATCH] add normal directories to path for chroot calls --- initrd/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/initrd/init b/initrd/init index 611dd02d..e7b5292d 100755 --- a/initrd/init +++ b/initrd/init @@ -3,7 +3,7 @@ mknod /dev/ttyprintk c 5 3 echo "hello world" > /dev/ttyprintk # Setup our path -export PATH=/sbin:/bin +export PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin # This is the very first script invoked by the Linux kernel and is # running out of the ram disk. There are no fileysstems mounted.