From e52f9e3941c5319d6c1effc96137c2ac22b965bc Mon Sep 17 00:00:00 2001 From: Al Stone Date: Sat, 29 Dec 2012 14:27:18 -0700 Subject: make sure /etc/ld.so.conf is correct in the rootfs for stage2 Signed-off-by: Al Stone --- stage1 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/stage1 b/stage1 index beebbde..6d4717c 100755 --- a/stage1 +++ b/stage1 @@ -1145,6 +1145,12 @@ EOF chmod a+x $ROOTFS/init-rootfs.sh ( cd $ROOTFS; sudo ./init-rootfs.sh ) + # make sure ld.so.conf is set up properly + ( + echo /lib$SUFFIX + echo /usr/lib$SUFFIX + ) > $ROOTFS/etc/ld.so.conf + echo stage2 ready ;; -- cgit