From b1e7608fc4ed18ad4c22c35ffa573a7ddb229014 Mon Sep 17 00:00:00 2001 From: Al Stone Date: Tue, 18 Dec 2012 15:43:58 -0700 Subject: Run init-rootfs.sh as the final step of stage1 Signed-off-by: Al Stone --- stage1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stage1 b/stage1 index 6ce9dd4..949b757 100755 --- a/stage1 +++ b/stage1 @@ -1135,9 +1135,10 @@ EOF chmod a+x distccd.script # add in the handy script to make sure the rootfs is usable - # as an NFS root + # as an NFS root (and then execute it) cp init-rootfs.sh $ROOTFS/ chmod a+x $ROOTFS/init-rootfs.sh + ( cd $ROOTFS; sudo ./init-rootfs.sh ) echo stage2 ready -- cgit