[Debian-live-changes] r2312 - in dists/trunk/live-initramfs: docs manpages scripts scripts/live-bottom

daniel at alioth.debian.org daniel at alioth.debian.org
Sun Jul 1 04:25:40 UTC 2007


Author: daniel
Date: 2007-07-01 04:25:40 +0000 (Sun, 01 Jul 2007)
New Revision: 2312

Modified:
   dists/trunk/live-initramfs/docs/ChangeLog
   dists/trunk/live-initramfs/manpages/live-initramfs.en.7
   dists/trunk/live-initramfs/scripts/live
   dists/trunk/live-initramfs/scripts/live-bottom/12fstab
Log:


Modified: dists/trunk/live-initramfs/docs/ChangeLog
===================================================================
--- dists/trunk/live-initramfs/docs/ChangeLog	2007-06-30 20:54:27 UTC (rev 2311)
+++ dists/trunk/live-initramfs/docs/ChangeLog	2007-07-01 04:25:40 UTC (rev 2312)
@@ -1,8 +1,8 @@
 2007-06-30  Daniel Baumann  <daniel at debian.org>
 
 	* scripts/live-bottom/12fstab:
-	  - Added removal of /etc/rcS.d/S*checkfs.sh to avoid file systemcheck
-	    at boot time.
+	  - Added disabling of /etc/init.d/checkfs.sh to avoid file systemcheck
+	    at boot time. Added nofastboot parameter to be able to change that.
 
 2007-06-28  Daniel Baumann  <daniel at debian.org>
 

Modified: dists/trunk/live-initramfs/manpages/live-initramfs.en.7
===================================================================
--- dists/trunk/live-initramfs/manpages/live-initramfs.en.7	2007-06-30 20:54:27 UTC (rev 2311)
+++ dists/trunk/live-initramfs/manpages/live-initramfs.en.7	2007-07-01 04:25:40 UTC (rev 2312)
@@ -54,6 +54,8 @@
 This parameter disables the automatic terminal login only, not touching gdk/kdm.
 .IP "\fBnoxautologin\fR" 4
 This parameter disables the automatic login of gdm/kdm only, not touching terminals.
+.IP "\fBnofastboot\fR" 4
+This parameter disables the default disabling of filesystem checks in /etc/fstab. If you have static filesystems on your harddisk and you want them to be checked at boot time, use this parameter, otherwise they are skipped.
 .IP "\fBnopersistent\fR" 4
 disables the "persistent" feature, useful if the bootloader (like syslinux) has been installed with persistent enabled.
 .IP "\fBnosudo\fR" 4

Modified: dists/trunk/live-initramfs/scripts/live
===================================================================
--- dists/trunk/live-initramfs/scripts/live	2007-06-30 20:54:27 UTC (rev 2311)
+++ dists/trunk/live-initramfs/scripts/live	2007-07-01 04:25:40 UTC (rev 2312)
@@ -156,6 +156,11 @@
 				export NOXAUTOLOGIN
 				;;
 
+			nofastboot)
+				NOFASTBOOT="Yes"
+				export NOFASTBOOT
+				;;
+
 			nopersistent)
 				PERSISTENT=""
 				export PERSISTENT

Modified: dists/trunk/live-initramfs/scripts/live-bottom/12fstab
===================================================================
--- dists/trunk/live-initramfs/scripts/live-bottom/12fstab	2007-06-30 20:54:27 UTC (rev 2311)
+++ dists/trunk/live-initramfs/scripts/live-bottom/12fstab	2007-07-01 04:25:40 UTC (rev 2312)
@@ -33,7 +33,11 @@
 tmpfs /tmp tmpfs nosuid,nodev 0 0
 EOF
 
-rm -f /root/etc/rcS.d/S*checkfs.sh
 rm -f /root/etc/rcS.d/S*checkroot.sh
 
+if [ "${NOFASTBOOT}" != "Yes" ]
+then
+	touch root/fastboot
+fi
+
 log_end_msg




More information about the Debian-live-changes mailing list