Changeset 6c32364 for bootscripts/lfs
- Timestamp:
 - Jun 29, 2006, 4:00:45 PM (19 years ago)
 - Branches:
 - clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
 - Children:
 - 528da83
 - Parents:
 - 6742797
 - Location:
 - bootscripts/lfs
 - Files:
 - 
      
- 1 added
 - 2 edited
 
- 
          
  init.d/cleanfs (modified) (1 diff)
 - 
          
  init.d/functions (modified) (2 diffs)
 - 
          
  sysconfig/bootscripts (added)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
bootscripts/lfs/init.d/cleanfs
r6742797 r6c32364 96 96 evaluate_retval 97 97 98 if egrep -qv '^(#|$)' /etc/sysconfig/createfiles 2>/dev/null; then 99 boot_mesg "Creating files and directories..." 100 create_files 101 evaluate_retval 98 if [ -e /etc/sysconfig/createfiles ]; then 99 if egrep -qv '^(#|$)' /etc/sysconfig/createfiles 2>/dev/null; then 100 boot_mesg "Creating files and directories..." 101 create_files 102 evaluate_retval 103 fi 102 104 fi 103 105 ;;  - 
      
bootscripts/lfs/init.d/functions
r6742797 r6c32364 18 18 source /etc/sysconfig/lcd 19 19 fi 20 fi 21 22 if [ -e /etc/sysconfig/bootscripts ]; then 23 source /etc/sysconfig/bootscripts 20 24 fi 21 25 … … 196 200 boot_mesg " lfs-dev@linuxfromscratch.org.\n" 197 201 boot_mesg_flush 198 boot_mesg -n "Press Enter to continue..." ${INFO} 199 boot_mesg "" ${NORMAL} 200 if [ "$LCD_PROG" ]; then 201 sleep 10 202 else 203 read ENTER 202 if [ "$INTERACTIVE" ]; then 203 boot_mesg -n "Press Enter to continue..." ${INFO} 204 boot_mesg "" ${NORMAL} 205 if [ "$LCD_PROG" ]; then 206 sleep 10 207 else 208 read ENTER 209 fi 204 210 fi 205 211 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  