Changeset 85ce884e for bootscripts


Ignore:
Timestamp:
10/14/2012 12:10:34 AM (12 years ago)
Author:
Bruce Dubbs <bdubbs@…>
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.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:
2cddf899
Parents:
12574f2
Message:

Include some omitted boot script changes

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

Location:
bootscripts/lfs/init.d
Files:
3 edited

Legend:

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

    r12574f2 r85ce884e  
    4747         msg="${msg} file system checks as requested.\n"
    4848         log_info_msg "${msg}"
    49          rm /fastboot
    5049         exit 0
    5150      fi
     
    7574         log_success_msg "$msg"
    7675         options="-f"
    77          rm /forcefsck
    7876      else
    7977         options=""
     
    8179
    8280      log_info_msg "Checking file systems..."
    83      
    8481      # Note: -a option used to be -p; but this fails e.g. on fsck.minix
    8582      if is_true "$VERBOSE_FSCK"; then
    86          fsck ${options} -a -A -C -T
     83        fsck ${options} -a -A -C -T
    8784      else
    88          fsck ${options} -a -A -C -T >/dev/null
     85        fsck ${options} -a -A -C -T >/dev/null
    8986      fi
    9087
  • bootscripts/lfs/init.d/udev

    r12574f2 r85ce884e  
    5959
    6060      # Now wait for udevd to process the uevents we triggered
    61       /sbin/udevadm settle
     61      if ! is_true "$OMIT_UDEV_SETTLE"; then
     62         /sbin/udevadm settle
     63      fi
    6264
    6365      # If any LVM based partitions are on the system, ensure they
  • bootscripts/lfs/init.d/udev_retry

    r12574f2 r85ce884e  
    5858
    5959      # Now wait for udevd to process the uevents we triggered
    60       /sbin/udevadm settle
     60      if ! is_true "$OMIT_UDEV_RETRY_SETTLE"; then
     61         /sbin/udevadm settle
     62      fi
     63
    6164      evaluate_retval
    6265      ;;
Note: See TracChangeset for help on using the changeset viewer.