Changeset 609a9e7 in bootscripts-standard for bootscripts/clfs/init.d/mountkernfs


Ignore:
Timestamp:
May 15, 2014, 11:50:36 PM (10 years ago)
Author:
William Harrington <kb0iic@…>
Branches:
master
Children:
8b29156
Parents:
84f3ac2
Message:

Bring bootscripts up to date with 2.0-pre1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/clfs/init.d/mountkernfs

    r84f3ac2 r609a9e7  
    2222                if ! mountpoint /proc >/dev/null; then
    2323                        boot_mesg -n " /proc" ${NORMAL}
    24                         mount -n /proc || failed=1
     24                        mount -n -o nosuid,noexec,nodev -t proc proc /proc || failed=1
    2525                fi
    2626
    2727                if ! mountpoint /sys >/dev/null; then
    2828                        boot_mesg -n " /sys" ${NORMAL}
    29                         mount -n /sys || failed=1
     29                        mount -n -o nosuid,noexec,nodev -t sysfs sys /sys || failed=1
    3030                fi
    31 
    32                 boot_mesg "" ${NORMAL}
    33 
     31                if ! mountpoint /run >/dev/null; then
     32                        boot_mesg -n " /run" ${NORMAL}
     33                        mount -n -o mode=0755,nosuid,nodev -t tmpfs run /run || failed=1
     34                fi
     35                if ! mountpoint /dev >/dev/null; then
     36                        boot_mesg -n " /dev" ${NORMAL}
     37                        mount -n -o mode=0755,nosuid -t devtmpfs dev /dev || failed=1
     38                fi
    3439                (exit ${failed})
    35                 evaluate_retval
     40                                       
     41                mkdir -m 1777 /run/lock
     42                mkdir -p /dev/{pts,shm}           
    3643                ;;
    3744
Note: See TracChangeset for help on using the changeset viewer.