Changeset bd4f6ac


Ignore:
Timestamp:
07/27/2022 09:40:20 PM (21 months ago)
Author:
William Harrington <kb0iic@…>
Branches:
arm
Children:
9d2874c
Parents:
0fad649
git-author:
Thomas Trepl (Moody) <thomas@…> (07/23/2022 08:42:36 PM)
git-committer:
William Harrington <kb0iic@…> (07/27/2022 09:40:20 PM)
Message:

Mark raid array as clean at shutdown

Location:
bootscripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/ChangeLog

    r0fad649 rbd4f6ac  
     12022-07-23 Thomas Trepl <thomas@linuxfromscratch.org>
     2   * Mark an raid array clean when root (/) has been remounted
     3     r/o when system goes down. Otherwise, array does remain
     4     always 'dirty', causing a resync at next boot.
     5
    162022-03-24 Pierre Labastie <pierre dot labastie at neuf dot fr>
    27   * New semantics for K and S scripts:
  • bootscripts/lfs/init.d/mountfs

    r0fad649 rbd4f6ac  
    6868      # This fails if swap or / are on an LVM partition
    6969      #if [ -x /sbin/vgchange ]; then /sbin/vgchange -an > /dev/null; fi
     70      if [ -r /etc/mdadm.conf ]; then
     71         log_info_msg "Mark arrays as clean..."
     72         mdadm --wait-clean --scan
     73         evaluate_retval
     74      fi
    7075      ;;
    7176
Note: See TracChangeset for help on using the changeset viewer.