Add tar, gzip, zlib to stage3 chroot.
[fedora-riscv.git] / init.sh
diff --git a/init.sh b/init.sh
index f619f30..cd8dfa2 100755 (executable)
--- a/init.sh
+++ b/init.sh
@@ -1,6 +1,20 @@
 #!/bin/bash -
 # Init script installed in stage3 disk image.
 
+LD_LIBRARY_PATH=/usr/lib64
+export LD_LIBRARY_PATH
+
+# Root filesystem is mounted as ro, remount it as rw.
+mount -o remount,rw /
+
+# Mount standard filesystems.
+mount -t proc /proc /proc
+mount -t sysfs /sys /sys
+mount -t tmpfs -o "nosuid,size=20%,mode=0755" tmpfs /run
+mkdir -p /run/lock
+
+# XXX devtmpfs
+
 echo
 echo "Welcome to the Fedora/RISC-V stage3 disk image"
 echo "https://fedoraproject.org/wiki/Architectures/RISC-V"