X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=init.sh;h=e7968b7cb51e5aec3d28d32a7e62cf0095f5254b;hb=d9fcdb64c5f3e131276ded4253684deb36881f4e;hp=267ae7401a047ffdb0e50aeacd4cfd667cafeca2;hpb=10397f832a22436dd20e84dc4d06646616d2a8af;p=fedora-riscv.git diff --git a/init.sh b/init.sh index 267ae74..e7968b7 100755 --- a/init.sh +++ b/init.sh @@ -1,22 +1,19 @@ #!/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.static -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 +mount.static -t proc /proc /proc +mount.static -t sysfs /sys /sys +mount.static -t tmpfs -o "nosuid,size=20%,mode=0755" tmpfs /run mkdir -p /run/lock # XXX devtmpfs # Initialize dynamic linker cache. -ldconfig +ldconfig /usr/lib64 /usr/lib /lib64 /lib echo echo "Welcome to the Fedora/RISC-V stage3 disk image"