X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=init.sh;h=eac9bd9834685f05636934ff298f92c23de03529;hb=884ef14f87bd73d59edc07ebdfa416e4496ad97f;hp=37ea1b5c19c9cb1231ce125d73b9f77c573bb838;hpb=2ae5690741422a2a1c7a26e706ce7f922a5f91ee;p=fedora-riscv.git diff --git a/init.sh b/init.sh index 37ea1b5..eac9bd9 100755 --- a/init.sh +++ b/init.sh @@ -2,16 +2,36 @@ # Init script installed in stage3 disk image. # 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 /usr/lib64 /usr/lib /lib64 /lib + +# There is no hardware clock, just ensure the date is not miles out. +date `date -r /usr/bin +%m%d%H%M%Y` + +hostname stage3 +echo stage3.fedoraproject.org > /etc/hostname + +# Set up the PATH. The GCC path is a hack because I wasn't able to +# find the right flags for configuring GCC. +PATH=/usr/libexec/gcc/riscv64-unknown-linux-gnu/6.1.0:\ +/usr/local/bin:\ +/usr/local/sbin:\ +/usr/bin:\ +/usr/sbin:\ +/bin:\ +/sbin +export PATH + echo echo "Welcome to the Fedora/RISC-V stage3 disk image" echo "https://fedoraproject.org/wiki/Architectures/RISC-V"