Changeset 642e2e9 for bootscripts/lfs


Ignore:
Timestamp:
11/28/2011 08:13:36 AM (12 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
d53a9b7
Parents:
17698aa
Message:

Various cosmetic fixes for bootscripts

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9673 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
bootscripts/lfs
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/lfs/init.d/mountfs

    r17698aa r642e2e9  
    6262      # Don't unmount tmpfs like /run
    6363      log_info_msg "Unmounting all other currently mounted file systems..."
    64       umount -a -d -r -t notmpfs >/dev/null
     64      umount -a -d -r -t notmpfs,nosysfs >/dev/null
    6565      evaluate_retval
    6666      exit 0
  • bootscripts/lfs/init.d/mountvirtfs

    r17698aa r642e2e9  
    3737      mkdir -p /run/{var,lock,shm}
    3838
    39       log_info_msg "Mounting virtual file systems:     ${INFO}/run"
     39      log_info_msg "Mounting virtual file systems: ${INFO}/run"
    4040
    4141      if ! mountpoint /proc >/dev/null; then
  • bootscripts/lfs/init.d/rc

    r17698aa r642e2e9  
    112112if [ "$runlevel" == "S" ]; then dmesg -n "${LOGLEVEL:-7}"; fi
    113113
    114 if [ "${IPROMPT}" == "yes" ]; then
     114if [ "${IPROMPT}" == "yes" -a "${runlevel}" == "S" ]; then
    115115   # dcol and icol are spaces before the message to center the
    116116   # message on screen.
  • bootscripts/lfs/init.d/setclock

    r17698aa r642e2e9  
    4545case ${1} in
    4646   start)
    47       log_info_msg2 "\n" # Run by udev, make sure start on new line
    48       log_info_msg "Setting system clock..."
    4947      hwclock --hctosys ${CLOCKPARAMS} >/dev/null
    50       evaluate_retval
    5148      ;;
    5249
  • bootscripts/lfs/init.d/udev

    r17698aa r642e2e9  
    8585      # Now wait for udevd to process the uevents we triggered
    8686      /sbin/udevadm settle
    87       #log_success_msg2
     87      log_success_msg2
    8888      ;;
    8989
  • bootscripts/lfs/init.d/udev_retry

    r17698aa r642e2e9  
    5757      # Now wait for udevd to process the uevents we triggered
    5858      /sbin/udevadm settle
    59       #evaluate_retval
     59      evaluate_retval
    6060      ;;
    6161
  • bootscripts/lfs/lib/services/init-functions

    r17698aa r642e2e9  
    6262BRACKET="\\033[1;34m"        # Brackets are blue
    6363
     64# Distro Information
     65DISTRO="Linux From Scratch" # The distro name as displayed
     66DISTRO_CONTACT="lfs-dev@linuxfromscratch.org" # Bug report address
     67DISTRO_MINI="LFS" # Short name used in filenames for distro config
     68
    6469# Use a colored prefix
    6570BMPREFIX="     "
  • bootscripts/lfs/sbin/ifup

    r17698aa r642e2e9  
    5656. /lib/lsb/init-functions
    5757
    58 log_info_msg "Bringing up the ${1} interface... "
     58log_info_msg "Bringing up the ${1} interface: "
    5959
    6060if [ ! -r "${file}" ]; then
Note: See TracChangeset for help on using the changeset viewer.