[Debian-live-changes] r2015 - in dists/trunk: . live-initramfs live-initramfs/debian live-initramfs/manpages

daniel at alioth.debian.org daniel at alioth.debian.org
Sun Jun 10 16:52:27 UTC 2007


Author: daniel
Date: 2007-06-10 16:52:27 +0000 (Sun, 10 Jun 2007)
New Revision: 2015

Added:
   dists/trunk/live-initramfs/
   dists/trunk/live-initramfs/Makefile
   dists/trunk/live-initramfs/debian/changelog
   dists/trunk/live-initramfs/manpages/live-initramfs.en.7
   dists/trunk/live-initramfs/manpages/live-snapshot.en.1
Removed:
   dists/trunk/live-initramfs/Makefile
   dists/trunk/live-initramfs/debian/changelog
   dists/trunk/live-initramfs/manpages/live-initramfs.en.7
   dists/trunk/live-initramfs/manpages/live-snapshot.en.1
Log:


Copied: dists/trunk/live-initramfs (from rev 2011, dists/sid/live-initramfs)

Deleted: dists/trunk/live-initramfs/Makefile
===================================================================
--- dists/sid/live-initramfs/Makefile	2007-06-10 16:48:32 UTC (rev 2011)
+++ dists/trunk/live-initramfs/Makefile	2007-06-10 16:52:27 UTC (rev 2015)
@@ -1,131 +0,0 @@
-# Makefile
-
-CFLAGS = -Wall -g -O2
-BUILD_SYSTEM := $(shell lsb_release --short --id)
-
-TRANSLATIONS=""
-
-all: build
-
-test:
-	set -e; for SCRIPT in hooks/* scripts/live scripts/live-functions scripts/live-helpers scripts/*/*; \
-	do \
-		sh -n $$SCRIPT; \
-	done
-
-build:
-	# Setting BUILD_SYSTEM
-	sed -e 's/\(BUILD_SYSTEM="\).*"/\1'$(BUILD_SYSTEM)'"/g' conf/live.conf > live.conf
-
-	# Building live-md5check
-	CFLAGS="$(CFLAGS)" $(MAKE) -C bin/live-md5check
-
-install: test build
-	# Installing configuration
-	install -D -m 0644 live.conf $(DESTDIR)/etc/live.conf
-
-	# Installing live-md5check
-	install -D -m 0755 bin/live-md5check/live-md5check $(DESTDIR)/usr/lib/live-initramfs/live-md5check
-
-	# Installing executables
-	mkdir -p $(DESTDIR)/sbin
-	cp bin/live-getty bin/live-login bin/live-snapshot $(DESTDIR)/sbin
-
-	mkdir -p $(DESTDIR)/usr/share/live-initramfs
-	cp bin/live-preseed bin/live-reconfigure $(DESTDIR)/usr/share/live-initramfs
-
-	mkdir -p $(DESTDIR)/usr/share/initramfs-tools
-	cp -r hooks scripts $(DESTDIR)/usr/share/initramfs-tools
-
-	# Installing documentation
-	mkdir -p $(DESTDIR)/usr/share/doc/live-initramfs
-	cp -r COPYING docs/* $(DESTDIR)/usr/share/doc/live-initramfs
-
-	mkdir -p $(DESTDIR)/usr/share/doc/live-initramfs/examples
-	cp -r conf/live.conf $(DESTDIR)/usr/share/doc/live-initramfs/examples
-
-	# Installing manpages
-	set -e; for MANPAGE in manpages/*.en.1; \
-	do \
-		install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man1/`basename $$MANPAGE .en.1`.1; \
-	done
-
-	set -e; for MANPAGE in manpages/*.en.7; \
-	do \
-		install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man7/`basename $$MANPAGE .en.7`.7; \
-	done
-
-	set -e; for TRANSLATIONS in $$TRANSLATIONS; \
-	do \
-		for MANPAGE in manpages/*.$$TRANSLATION.1; \
-		do \
-			install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/`basename $$MANPAGE .$$TRANSLATION.1`.1; \
-		done; \
-		for MANPAGE in manpages/*.$$TRANSLATION.7; \
-		do \
-			install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/`basename $$MANPAGE .$$TRANSLATION.7`.7; \
-		done; \
-	done
-
-	# Temporary symlinks
-	ln -sf live-initramfs.7.gz $(DESTDIR)/usr/share/man/man7/live-getty.7.gz
-	ln -sf live-initramfs.7.gz $(DESTDIR)/usr/share/man/man7/live-login.7.gz
-
-uninstall:
-	# Uninstalling configuration
-	rm -f $(DESTDIR)/etc/live.conf
-
-	# Uninstalling live-md5check
-	rm -rf $(DESTDIR)/usr/lib/live-initramfs
-
-	# Uninstalling executables
-	rm -f $(DESTDIR)/sbin/live-getty $(DESTDIR)/sbin/live-login $(DESTDIR)/sbin/live-snapshot
-	rm -rf $(DESTDIR)/usr/share/live-initramfs
-	rm -f $(DESTDIR)/usr/share/initramfs-tools/hooks/live
-	rm -rf $(DESTDIR)/usr/share/initramfs-tools/scripts/live*
-
-	# Uninstalling documentation
-	rm -rf $(DESTDIR)/usr/share/doc/live-initramfs
-
-	# Uninstalling manpages
-	set -e; for MANPAGE in manpages/*.en.1; \
-	do \
-		rm -f $(DESTDIR)/usr/share/man/man1/`basename $$MANPAGE .en.1`.1; \
-	done
-
-	set -e; for MANPAGE in manpages/*.en.7; \
-	do \
-		rm -f $(DESTDIR)/usr/share/man/man7/`basename $$MANPAGE .en.7`.7; \
-	done
-
-	set -e; for TRANSLATIONS in $$TRANSLATIONS; \
-	do \
-		for MANPAGE in manpages/*.$$TRANSLATION.1; \
-		do \
-			install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/`basename $$MANPAGE .$$TRANSLATION.1`.1; \
-		done; \
-		for MANPAGE in manpages/*.$$TRANSLATION.7; \
-		do \
-			install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/`basename $$MANPAGE .$$TRANSLATION.7`.7; \
-		done; \
-	done
-
-	# Temporary symlinks
-	rm -f $(DESTDIR)/usr/share/man/man7/live-getty.7.gz
-	rm -f $(DESTDIR)/usr/share/man/man7/live-login.7.gz
-
-update:
-	set -e; for MANPAGE in manpages/*.en.*; \
-	do \
-		sed -i	-e 's/2007\\-06\\-04/2007\\-06\\-11/' \
-			-e 's/1.88.1/1.90.1/' \
-		$$MANPAGE; \
-	done
-
-clean:
-	rm -f live.conf
-	$(MAKE) -C bin/live-md5check clean
-
-distclean:
-
-reinstall: uninstall install

Copied: dists/trunk/live-initramfs/Makefile (from rev 2013, dists/sid/live-initramfs/Makefile)
===================================================================
--- dists/trunk/live-initramfs/Makefile	                        (rev 0)
+++ dists/trunk/live-initramfs/Makefile	2007-06-10 16:52:27 UTC (rev 2015)
@@ -0,0 +1,131 @@
+# Makefile
+
+CFLAGS = -Wall -g -O2
+BUILD_SYSTEM := $(shell lsb_release --short --id)
+
+TRANSLATIONS=""
+
+all: build
+
+test:
+	set -e; for SCRIPT in hooks/* scripts/live scripts/live-functions scripts/live-helpers scripts/*/*; \
+	do \
+		sh -n $$SCRIPT; \
+	done
+
+build:
+	# Setting BUILD_SYSTEM
+	sed -e 's/\(BUILD_SYSTEM="\).*"/\1'$(BUILD_SYSTEM)'"/g' conf/live.conf > live.conf
+
+	# Building live-md5check
+	CFLAGS="$(CFLAGS)" $(MAKE) -C bin/live-md5check
+
+install: test build
+	# Installing configuration
+	install -D -m 0644 live.conf $(DESTDIR)/etc/live.conf
+
+	# Installing live-md5check
+	install -D -m 0755 bin/live-md5check/live-md5check $(DESTDIR)/usr/lib/live-initramfs/live-md5check
+
+	# Installing executables
+	mkdir -p $(DESTDIR)/sbin
+	cp bin/live-getty bin/live-login bin/live-snapshot $(DESTDIR)/sbin
+
+	mkdir -p $(DESTDIR)/usr/share/live-initramfs
+	cp bin/live-preseed bin/live-reconfigure $(DESTDIR)/usr/share/live-initramfs
+
+	mkdir -p $(DESTDIR)/usr/share/initramfs-tools
+	cp -r hooks scripts $(DESTDIR)/usr/share/initramfs-tools
+
+	# Installing documentation
+	mkdir -p $(DESTDIR)/usr/share/doc/live-initramfs
+	cp -r COPYING docs/* $(DESTDIR)/usr/share/doc/live-initramfs
+
+	mkdir -p $(DESTDIR)/usr/share/doc/live-initramfs/examples
+	cp -r conf/live.conf $(DESTDIR)/usr/share/doc/live-initramfs/examples
+
+	# Installing manpages
+	set -e; for MANPAGE in manpages/*.en.1; \
+	do \
+		install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man1/`basename $$MANPAGE .en.1`.1; \
+	done
+
+	set -e; for MANPAGE in manpages/*.en.7; \
+	do \
+		install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man7/`basename $$MANPAGE .en.7`.7; \
+	done
+
+	set -e; for TRANSLATIONS in $$TRANSLATIONS; \
+	do \
+		for MANPAGE in manpages/*.$$TRANSLATION.1; \
+		do \
+			install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/`basename $$MANPAGE .$$TRANSLATION.1`.1; \
+		done; \
+		for MANPAGE in manpages/*.$$TRANSLATION.7; \
+		do \
+			install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/`basename $$MANPAGE .$$TRANSLATION.7`.7; \
+		done; \
+	done
+
+	# Temporary symlinks
+	ln -sf live-initramfs.7.gz $(DESTDIR)/usr/share/man/man7/live-getty.7.gz
+	ln -sf live-initramfs.7.gz $(DESTDIR)/usr/share/man/man7/live-login.7.gz
+
+uninstall:
+	# Uninstalling configuration
+	rm -f $(DESTDIR)/etc/live.conf
+
+	# Uninstalling live-md5check
+	rm -rf $(DESTDIR)/usr/lib/live-initramfs
+
+	# Uninstalling executables
+	rm -f $(DESTDIR)/sbin/live-getty $(DESTDIR)/sbin/live-login $(DESTDIR)/sbin/live-snapshot
+	rm -rf $(DESTDIR)/usr/share/live-initramfs
+	rm -f $(DESTDIR)/usr/share/initramfs-tools/hooks/live
+	rm -rf $(DESTDIR)/usr/share/initramfs-tools/scripts/live*
+
+	# Uninstalling documentation
+	rm -rf $(DESTDIR)/usr/share/doc/live-initramfs
+
+	# Uninstalling manpages
+	set -e; for MANPAGE in manpages/*.en.1; \
+	do \
+		rm -f $(DESTDIR)/usr/share/man/man1/`basename $$MANPAGE .en.1`.1; \
+	done
+
+	set -e; for MANPAGE in manpages/*.en.7; \
+	do \
+		rm -f $(DESTDIR)/usr/share/man/man7/`basename $$MANPAGE .en.7`.7; \
+	done
+
+	set -e; for TRANSLATIONS in $$TRANSLATIONS; \
+	do \
+		for MANPAGE in manpages/*.$$TRANSLATION.1; \
+		do \
+			install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/`basename $$MANPAGE .$$TRANSLATION.1`.1; \
+		done; \
+		for MANPAGE in manpages/*.$$TRANSLATION.7; \
+		do \
+			install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/`basename $$MANPAGE .$$TRANSLATION.7`.7; \
+		done; \
+	done
+
+	# Temporary symlinks
+	rm -f $(DESTDIR)/usr/share/man/man7/live-getty.7.gz
+	rm -f $(DESTDIR)/usr/share/man/man7/live-login.7.gz
+
+update:
+	set -e; for MANPAGE in manpages/*.en.*; \
+	do \
+		sed -i	-e 's/2007\\-06\\-11/2007\\-06\\-18/' \
+			-e 's/1.90.1/1.90.2/' \
+		$$MANPAGE; \
+	done
+
+clean:
+	rm -f live.conf
+	$(MAKE) -C bin/live-md5check clean
+
+distclean:
+
+reinstall: uninstall install

Deleted: dists/trunk/live-initramfs/debian/changelog
===================================================================
--- dists/sid/live-initramfs/debian/changelog	2007-06-10 16:48:32 UTC (rev 2011)
+++ dists/trunk/live-initramfs/debian/changelog	2007-06-10 16:52:27 UTC (rev 2015)
@@ -1,41 +0,0 @@
-live-initramfs (1.90.1-1) unstable; urgency=medium
-
-  * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org>  Mon, 11 Jun 2007 00:00:00 +0200
-
-live-initramfs (1.87.6-1) unstable; urgency=medium
-
-  * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org>  Mon,  4 Jun 2007 00:00:00 +0200
-
-live-initramfs (1.87.5-1) unstable; urgency=medium
-
-  * New upstream release, replacing casper.
-
- -- Daniel Baumann <daniel at debian.org>  Mon, 28 May 2007 00:00:00 +0200
-
-live-initramfs (1.87.4-1) unstable; urgency=medium
-
-  * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org>  Mon, 21 May 2007 00:00:00 +0200
-
-live-initramfs (1.87.3-1) unstable; urgency=medium
-
-  * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org>  Mon, 14 May 2007 00:00:00 +0200
-
-live-initramfs (1.87.2-1) unstable; urgency=low
-
-  * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org>  Mon,  7 May 2007 00:00:00 +0200
-
-live-initramfs (1.87.1-1) unstable; urgency=low
-
-  * Initial release, forking casper.
-
- -- Daniel Baumann <daniel at debian.org>  Mon, 30 Apr 2007 00:00:00 +0200

Copied: dists/trunk/live-initramfs/debian/changelog (from rev 2013, dists/sid/live-initramfs/debian/changelog)
===================================================================
--- dists/trunk/live-initramfs/debian/changelog	                        (rev 0)
+++ dists/trunk/live-initramfs/debian/changelog	2007-06-10 16:52:27 UTC (rev 2015)
@@ -0,0 +1,47 @@
+live-initramfs (1.90.2-1) UNRELEASED; urgency=medium
+
+  * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org>  Mon, 18 Jun 2007 00:00:00 +0200
+
+live-initramfs (1.90.1-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org>  Mon, 11 Jun 2007 00:00:00 +0200
+
+live-initramfs (1.87.6-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org>  Mon,  4 Jun 2007 00:00:00 +0200
+
+live-initramfs (1.87.5-1) unstable; urgency=medium
+
+  * New upstream release, replacing casper.
+
+ -- Daniel Baumann <daniel at debian.org>  Mon, 28 May 2007 00:00:00 +0200
+
+live-initramfs (1.87.4-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org>  Mon, 21 May 2007 00:00:00 +0200
+
+live-initramfs (1.87.3-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org>  Mon, 14 May 2007 00:00:00 +0200
+
+live-initramfs (1.87.2-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org>  Mon,  7 May 2007 00:00:00 +0200
+
+live-initramfs (1.87.1-1) unstable; urgency=low
+
+  * Initial release, forking casper.
+
+ -- Daniel Baumann <daniel at debian.org>  Mon, 30 Apr 2007 00:00:00 +0200

Deleted: dists/trunk/live-initramfs/manpages/live-initramfs.en.7
===================================================================
--- dists/sid/live-initramfs/manpages/live-initramfs.en.7	2007-06-10 16:48:32 UTC (rev 2011)
+++ dists/trunk/live-initramfs/manpages/live-initramfs.en.7	2007-06-10 16:52:27 UTC (rev 2015)
@@ -1,107 +0,0 @@
-.TH LIVE\-INITRAMFS 7 "2007\-06\-11" "1.90.1" "live\-initramfs"
-
-.SH NAME
-live\-initramfs \- Debian Live initramfs hook
-
-.SH SYNOPSIS
-.B BOOT=live
-as kernel parameter at boot prompt.
-
-.SH DESCRIPTION
-live\-initramfs is a hook for the initramfs\-tools, used to generate a initramfs capable to boot live systems, such as those created by \fIlive\-helper\fR(7). This includes the Debian Live isos, netboot tarballs, and usb stick images.
-.PP
-At boot time it will look for a (read\-only) media containing a "/live" directory where a root filesystems (often a compressed filesystem image like squashfs) is stored. If found, it will create a writable environment, using unionfs, for Debian like systems to boot from.
-.PP
-You probably do not want to install this package onto a non-live system, although it will do no harm.
-.PP
-live\-initramfs is a fork of casper <\fIhttp://packages.ubuntu.com/casper/\fR>. casper was originally written by Tollef Fog Heen <\fItfheen at canonical.com\fR> and Matt Zimmerman <\fImdz at canonical.com\fR>.
-
-.SH BOOT OPTIONS
-Here is the complete list of recognized boot parameters by live\-initramfs.
-.IP "\fBaccess=\fR\fIACCESS\fR" 4
-Set the accessibility level for physically or visually impared users. ACCESS must be one of v1, v2, v3, m1, or m2. v1=lesser visual impairment, v2=moderate visual impairment, v3=blindness, m1=minor motor difficulties, m2=moderate motor difficulties.
-.IP "\fBconsole=\fR\fITTY\fR,\fISPEED\fR" 4
-Set the default console to be used with the "live\-getty" option. Example: "console=ttyS0,115200"
-.IP "\fBhostname=\fR\fIHOSTNAME\fR, \fBusername=\fR\fIUSERFULLNAME\fR, \fBusername=\fR\fIUSERNAME\fR"4
-Those parameters lets you override values read from the config file.
-.IP "\fBintegrity\-check\fR" 4
-If specified, an MD5 sum is calculated on the live media during boot and compared to the value found in md5sum.txt found in the root directory of the live media.
-.IP "\fBip=\fR\fIIFACE,ADDRESS,NETMASK,GATEWAY [:IFACE,ADDRESS,NETMASK,GATEWAY]\fR*" 4
-Let you specify the name(s) and the options of the interface(s) that should be configured at boot time. Do not specify this if you want to use dhcp (default). It will be changed in a future release to mimick official kernel boot param specification.
-.IP "\fBip\fR[=frommedia]" 4
-If this variable is set, dhcp and static configuration are just skipped and the system will use the (must be) media\-preconfigured /etc/network/interfaces instead.
-.IP "\fB{keyb|kbd\-chooser/method}=\fR\fIKEYBOARD\fR, \fB{klayout|console\-setup/layoutcode}=\fR\fILAYOUT\fR, \fB{kvariant|console\-setup/variantcode}=\fR\fIVARIANT\fR, \fB{kmodel|console\-setup/modelcode}=\fR\fICODE\fR, \fBkoptions=\fR\fIOPTIONS\fR" 4
-Configure the running keyboard as specified, if this one misses live\-initramfs behaves as if "keyb=us" was specified. It will be interfered from "locale=" if locale is only 2 lowecase letters as a special case. You could also specify console layout, variant, code, and options (no defaults).
-.IP "\fBlive\-getty\fR" 4
-This changes the auto\-login on virtual terminals to use the (experimental) live\-getty code. With this option set the standard kernel argument "console=" is parsed and if a serial console is specified then live\-getty is used to autologin on the serial console.
-.IP "\fB{live\-media|bootfrom}=\fR\fIDEVICE\fR" 4
-If you specify one of this two equivalent forms, live\-initramfs will first try to find this device for the "/live" directory where the read\-only root filesystem should reside. If it did not find something usable, the normal scan for block devices is performed.
-.IP "\fB{live\-media\-encryption|encryption}=\fR\fITYPE\fR" 4
-live\-initramfs will mount the encrypted rootfs TYPE, asking the passphrase, useful to build paranoid live systems :\-). TYPE supported so far are "aes" for loop\-aes encryption type.
-.IP "\fBlive\-media\-offset=\fR\fIBYTES\fR" 4
-This way you could tell live\-initramfs that your image starts at offset BYTES in the above specified or autodiscovered device, this could be useful to hide the Debian Live iso or image inside another iso or image, to create "clean" images.
-.IP "\fBlive\-media\-timeout=\fR\fISECONDS\fR" 4
-Set the timeout in seconds for the device specified by "live\-media=" to become ready before giving up.
-.IP "\fB{locale|debian\-installer/locale}=\fR\fILOCALE\fR" 4
-Configure the running locale as specified, if not present the live\-media rootfs configured locale will be used and if also this one misses live\-initramfs behave as "locale=en_US.UTF\-8" was specified. If only 2 lowercase letter are specified (like "it"), the "maybe wanted" locale is generated (like ien:EN.UTF\-8), in this case if also "keyb=" is unspecified is set with those 2 lowercase letters (keyb=us). Beside that facility, only UTF8 locales are supported by live\-initramfs.
-.IP "\fBmodule=\fR\fINAME\fR" 4
-Instead of using the default optional file "order.lst" (see below) another file could be specified without the extension ".lst"; it should be placed on "/live" directory of the live medium.
-.IP "\fBnetboot\fR[=nfs|cifs]" 4
-This tells live\-initramfs to perform a network mount. The parameter "nfsroot=" (with optional "nfsopts="), should specify where is the location of the root filesystem.  With no args, will try cifs first, and if it fails nfs.
-.IP "\fBnoautologin\fR" 4
-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 "\fBnopersistent\fR" 4
-disables the "persistent" feature, useful if the bootloader (like syslinux) has been installed with persistent enabled.
-.IP "\fBnosudo\fR" 4
-This parameter disables the automatic configuration of sudo.
-.IP "\fBnoswap\fR" 4
-This parameter disables usage of local swap partitions.
-.IP "\fBpersistent\fR" 4
-live\-initramfs will look for persistent and snapshot partitions or files labeled "live\-rw", "home\-rw", and files called "live\-sn*", "home\-sn*" and will try to, in order: mount as /cow the first, mount the second in /home, and just copy the contents of the latter in appropriate locations (snapshots). Snapshots will be tried to be updated on reboot/shutdown. Look at \fIlive\-snapshot\fR(1) for more informations.
-.IP "\fBquickreboot\fR" 4
-This option causes live\-initramfs to reboot without attempting to eject the media and without asking the user to remove the boot media.
-.IP "\fBshowmounts\fR" 4
-This parameter will make live\-initramfs to show on "/" the ro filesystems (mostly compressed) on "/live". This is not enabled by default because could lead to problems by applications like "mono" which store binary paths on installation.
-.IP "\fBtodisk=\fR\fIDEVICE" 4
-Adding this parameter, live\-initramfs will try to copy the entire read\-only media to the specified device before mounting the root filesystem. It probably needs a lot of free space. Subsequent boots should then skip this step and just specify the "live\-media=DEVICE" boot parameter with the same DEVICE used this time.
-.IP "\fBtoram\fR" 4
-Adding this parameter, live\-initramfs will try to copy the whole read\-only media to the computer's RAM before mounting the root filesystem. This could need a lot of ram, according to the space used by the read\-only media.
-.IP "\fB{preseed/file|file}=\fR\fIFILE\fR" 4
-A path to a file present on the rootfs could be used to preseed debconf database.
-.IP "\fBpackage/question=\fR\fIVALUE\fR" 4
-All debian installed packages could be preseeded from command\-line that way, beware of blanks spaces, they will interfere with parsing, use a preseed file in this case.
-.IP "\fBxdebconf\fR" 4
-uses xdebconfigurator, if present on the rootfs, to configure X instead of the standard procedure (experimental).
-.IP "\fBxvideomode=\fR\fIRESOLUTION\fR" 4
-doesn't do xorg autodetection, but enforces a given resolution.
-
-.SH FILES
-.B /etc/live.conf
-some variables can be configured via this config file (inside the live system).
-.TP
-.B /live/order.lst
-This optional file (inside the live media) contains a list of white\-space or carriage\-return\-separated file names corresponding to disk images in the "/live" directory. If this file exists, only images listed here will be merged into the root unionfs, and they will be loaded in the order listed here. The first entry in this file will be the "lowest" point in the unionfs, and the last file in this list will be on the "top" of the unionfs, directly below /cow.  Without this file, any images in the "/live" directory are loaded in alphanumeric order.
-
-.SH SEE ALSO
-\fIlive\-snapshot\fR(1)
-.PP
-\fIinitramfs\-tools\fR(8)
-.PP
-\fIlive\-helper\fR(7)
-.PP
-\fIlive\-sysvinit\fR(7)
-.PP
-\fIlive\-webhelper\fR(7)
-
-.SH BUGS
-Report bugs against live\-initramfs <\fIhttp://packages.qa.debian.org/live\-initramfs/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHORS
-live\-initramfs is maintained by Daniel Baumann <\fIdaniel at debian.org\fR> and Marco Amadori <\fImarco.amadori at gmail.com\fR> for the Debian project.
-.PP
-live\-initramfs is a fork of casper <\fIhttp://packages.ubuntu.com/casper/\fR>. casper was originally written by Tollef Fog Heen <\fItfheen at canonical.com\fR> and Matt Zimmerman <\fImdz at canonical.com\fR>.

Copied: dists/trunk/live-initramfs/manpages/live-initramfs.en.7 (from rev 2013, dists/sid/live-initramfs/manpages/live-initramfs.en.7)
===================================================================
--- dists/trunk/live-initramfs/manpages/live-initramfs.en.7	                        (rev 0)
+++ dists/trunk/live-initramfs/manpages/live-initramfs.en.7	2007-06-10 16:52:27 UTC (rev 2015)
@@ -0,0 +1,107 @@
+.TH LIVE\-INITRAMFS 7 "2007\-06\-18" "1.90.2" "live\-initramfs"
+
+.SH NAME
+live\-initramfs \- Debian Live initramfs hook
+
+.SH SYNOPSIS
+.B BOOT=live
+as kernel parameter at boot prompt.
+
+.SH DESCRIPTION
+live\-initramfs is a hook for the initramfs\-tools, used to generate a initramfs capable to boot live systems, such as those created by \fIlive\-helper\fR(7). This includes the Debian Live isos, netboot tarballs, and usb stick images.
+.PP
+At boot time it will look for a (read\-only) media containing a "/live" directory where a root filesystems (often a compressed filesystem image like squashfs) is stored. If found, it will create a writable environment, using unionfs, for Debian like systems to boot from.
+.PP
+You probably do not want to install this package onto a non-live system, although it will do no harm.
+.PP
+live\-initramfs is a fork of casper <\fIhttp://packages.ubuntu.com/casper/\fR>. casper was originally written by Tollef Fog Heen <\fItfheen at canonical.com\fR> and Matt Zimmerman <\fImdz at canonical.com\fR>.
+
+.SH BOOT OPTIONS
+Here is the complete list of recognized boot parameters by live\-initramfs.
+.IP "\fBaccess=\fR\fIACCESS\fR" 4
+Set the accessibility level for physically or visually impared users. ACCESS must be one of v1, v2, v3, m1, or m2. v1=lesser visual impairment, v2=moderate visual impairment, v3=blindness, m1=minor motor difficulties, m2=moderate motor difficulties.
+.IP "\fBconsole=\fR\fITTY\fR,\fISPEED\fR" 4
+Set the default console to be used with the "live\-getty" option. Example: "console=ttyS0,115200"
+.IP "\fBhostname=\fR\fIHOSTNAME\fR, \fBusername=\fR\fIUSERFULLNAME\fR, \fBusername=\fR\fIUSERNAME\fR"4
+Those parameters lets you override values read from the config file.
+.IP "\fBintegrity\-check\fR" 4
+If specified, an MD5 sum is calculated on the live media during boot and compared to the value found in md5sum.txt found in the root directory of the live media.
+.IP "\fBip=\fR\fIIFACE,ADDRESS,NETMASK,GATEWAY [:IFACE,ADDRESS,NETMASK,GATEWAY]\fR*" 4
+Let you specify the name(s) and the options of the interface(s) that should be configured at boot time. Do not specify this if you want to use dhcp (default). It will be changed in a future release to mimick official kernel boot param specification.
+.IP "\fBip\fR[=frommedia]" 4
+If this variable is set, dhcp and static configuration are just skipped and the system will use the (must be) media\-preconfigured /etc/network/interfaces instead.
+.IP "\fB{keyb|kbd\-chooser/method}=\fR\fIKEYBOARD\fR, \fB{klayout|console\-setup/layoutcode}=\fR\fILAYOUT\fR, \fB{kvariant|console\-setup/variantcode}=\fR\fIVARIANT\fR, \fB{kmodel|console\-setup/modelcode}=\fR\fICODE\fR, \fBkoptions=\fR\fIOPTIONS\fR" 4
+Configure the running keyboard as specified, if this one misses live\-initramfs behaves as if "keyb=us" was specified. It will be interfered from "locale=" if locale is only 2 lowecase letters as a special case. You could also specify console layout, variant, code, and options (no defaults).
+.IP "\fBlive\-getty\fR" 4
+This changes the auto\-login on virtual terminals to use the (experimental) live\-getty code. With this option set the standard kernel argument "console=" is parsed and if a serial console is specified then live\-getty is used to autologin on the serial console.
+.IP "\fB{live\-media|bootfrom}=\fR\fIDEVICE\fR" 4
+If you specify one of this two equivalent forms, live\-initramfs will first try to find this device for the "/live" directory where the read\-only root filesystem should reside. If it did not find something usable, the normal scan for block devices is performed.
+.IP "\fB{live\-media\-encryption|encryption}=\fR\fITYPE\fR" 4
+live\-initramfs will mount the encrypted rootfs TYPE, asking the passphrase, useful to build paranoid live systems :\-). TYPE supported so far are "aes" for loop\-aes encryption type.
+.IP "\fBlive\-media\-offset=\fR\fIBYTES\fR" 4
+This way you could tell live\-initramfs that your image starts at offset BYTES in the above specified or autodiscovered device, this could be useful to hide the Debian Live iso or image inside another iso or image, to create "clean" images.
+.IP "\fBlive\-media\-timeout=\fR\fISECONDS\fR" 4
+Set the timeout in seconds for the device specified by "live\-media=" to become ready before giving up.
+.IP "\fB{locale|debian\-installer/locale}=\fR\fILOCALE\fR" 4
+Configure the running locale as specified, if not present the live\-media rootfs configured locale will be used and if also this one misses live\-initramfs behave as "locale=en_US.UTF\-8" was specified. If only 2 lowercase letter are specified (like "it"), the "maybe wanted" locale is generated (like ien:EN.UTF\-8), in this case if also "keyb=" is unspecified is set with those 2 lowercase letters (keyb=us). Beside that facility, only UTF8 locales are supported by live\-initramfs.
+.IP "\fBmodule=\fR\fINAME\fR" 4
+Instead of using the default optional file "order.lst" (see below) another file could be specified without the extension ".lst"; it should be placed on "/live" directory of the live medium.
+.IP "\fBnetboot\fR[=nfs|cifs]" 4
+This tells live\-initramfs to perform a network mount. The parameter "nfsroot=" (with optional "nfsopts="), should specify where is the location of the root filesystem.  With no args, will try cifs first, and if it fails nfs.
+.IP "\fBnoautologin\fR" 4
+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 "\fBnopersistent\fR" 4
+disables the "persistent" feature, useful if the bootloader (like syslinux) has been installed with persistent enabled.
+.IP "\fBnosudo\fR" 4
+This parameter disables the automatic configuration of sudo.
+.IP "\fBnoswap\fR" 4
+This parameter disables usage of local swap partitions.
+.IP "\fBpersistent\fR" 4
+live\-initramfs will look for persistent and snapshot partitions or files labeled "live\-rw", "home\-rw", and files called "live\-sn*", "home\-sn*" and will try to, in order: mount as /cow the first, mount the second in /home, and just copy the contents of the latter in appropriate locations (snapshots). Snapshots will be tried to be updated on reboot/shutdown. Look at \fIlive\-snapshot\fR(1) for more informations.
+.IP "\fBquickreboot\fR" 4
+This option causes live\-initramfs to reboot without attempting to eject the media and without asking the user to remove the boot media.
+.IP "\fBshowmounts\fR" 4
+This parameter will make live\-initramfs to show on "/" the ro filesystems (mostly compressed) on "/live". This is not enabled by default because could lead to problems by applications like "mono" which store binary paths on installation.
+.IP "\fBtodisk=\fR\fIDEVICE" 4
+Adding this parameter, live\-initramfs will try to copy the entire read\-only media to the specified device before mounting the root filesystem. It probably needs a lot of free space. Subsequent boots should then skip this step and just specify the "live\-media=DEVICE" boot parameter with the same DEVICE used this time.
+.IP "\fBtoram\fR" 4
+Adding this parameter, live\-initramfs will try to copy the whole read\-only media to the computer's RAM before mounting the root filesystem. This could need a lot of ram, according to the space used by the read\-only media.
+.IP "\fB{preseed/file|file}=\fR\fIFILE\fR" 4
+A path to a file present on the rootfs could be used to preseed debconf database.
+.IP "\fBpackage/question=\fR\fIVALUE\fR" 4
+All debian installed packages could be preseeded from command\-line that way, beware of blanks spaces, they will interfere with parsing, use a preseed file in this case.
+.IP "\fBxdebconf\fR" 4
+uses xdebconfigurator, if present on the rootfs, to configure X instead of the standard procedure (experimental).
+.IP "\fBxvideomode=\fR\fIRESOLUTION\fR" 4
+doesn't do xorg autodetection, but enforces a given resolution.
+
+.SH FILES
+.B /etc/live.conf
+some variables can be configured via this config file (inside the live system).
+.TP
+.B /live/order.lst
+This optional file (inside the live media) contains a list of white\-space or carriage\-return\-separated file names corresponding to disk images in the "/live" directory. If this file exists, only images listed here will be merged into the root unionfs, and they will be loaded in the order listed here. The first entry in this file will be the "lowest" point in the unionfs, and the last file in this list will be on the "top" of the unionfs, directly below /cow.  Without this file, any images in the "/live" directory are loaded in alphanumeric order.
+
+.SH SEE ALSO
+\fIlive\-snapshot\fR(1)
+.PP
+\fIinitramfs\-tools\fR(8)
+.PP
+\fIlive\-helper\fR(7)
+.PP
+\fIlive\-sysvinit\fR(7)
+.PP
+\fIlive\-webhelper\fR(7)
+
+.SH BUGS
+Report bugs against live\-initramfs <\fIhttp://packages.qa.debian.org/live\-initramfs/\fR>.
+
+.SH HOMEPAGE
+More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
+
+.SH AUTHORS
+live\-initramfs is maintained by Daniel Baumann <\fIdaniel at debian.org\fR> and Marco Amadori <\fImarco.amadori at gmail.com\fR> for the Debian project.
+.PP
+live\-initramfs is a fork of casper <\fIhttp://packages.ubuntu.com/casper/\fR>. casper was originally written by Tollef Fog Heen <\fItfheen at canonical.com\fR> and Matt Zimmerman <\fImdz at canonical.com\fR>.

Deleted: dists/trunk/live-initramfs/manpages/live-snapshot.en.1
===================================================================
--- dists/sid/live-initramfs/manpages/live-snapshot.en.1	2007-06-10 16:48:32 UTC (rev 2011)
+++ dists/trunk/live-initramfs/manpages/live-snapshot.en.1	2007-06-10 16:52:27 UTC (rev 2015)
@@ -1,71 +0,0 @@
-.TH LIVE\-SNAPSHOT 1 "2007\-06\-11" "1.90.1" "live\-initramfs"
-
-.SH NAME
-live\-snapshot \- a simple script to ease persistence usage
-
-.SH SYNOPSIS
-.B live\-snapshot
-.RB [\| \-c \||\| \-\-cow
-.IR DIRECTORY ]
-.RB [\| \-d \||\| \-\-device
-.IR DEVICE \|]
-.RB [\| \-e \||\| \-\-exclude\-list
-.IR FILE \|]
-.RB [\| \-o \||\| \-\-output
-.IR FILE \|]
-.RB [\| \-t \||\| \-\-type
-.IR TYPE \|]
-.PP
-.B live\-snapshot
-.RB [\| \-r \||\| \-\-resync\-string
-.IR STRING \|]
-.PP
-.B live\-snapshot
-.RB [\| \-h \||\| \-\-help \|]
-.br
-.B live\-snapshot
-.RB [\| \-u \||\| \-\-usage \|]
-.br
-.B live-snapshot
-.RB [\| \-v \||\| \-\-version \|]
-
-.SH DESCRIPTION
-live\-snapshot is a script which can be used to build the right types of persistent image files supported by \fIlive\-initramfs\fR(7). It is also used on exit by the live\-initramfs init script to resync the boot-found snapshots devices.
-
-.SH OPTIONS
-.IP "\fB\-c, \-\-cow\fR \fIDIRECTORY\fR" 4
-specifies the input directory to be cloned in the image file.
-Its default value "/cow" should be right for most uses. However it could be handy to specify "/home" and type ext2 for the type to prepare an image file suited to be directly mounted by live-initramfs as home.
-.IP "\fB\-d, \-\-device\fR \fIDEVICE\fR" 4
-sets the device where the media which the snapshot/persistence file/partition will be put. If it is not specified, a tmpfs will be used and linked to the user's desktop to move it where it is needed. If the device has no filesystem, an ext2 fs will be automatically created and labelled according to the values specified after the "--output" value or with a sane default.
-.IP "\fB\-e, \-\-exclude\-list\fR \fIFILE\fR" 4
-a file containing a list of filenames/paths that should not be saved. This exclude list will be remebered on the target snapshot media for reuse.
-.IP "\fB\-o, \-\-output\fR \fIFILE\fR" 4
-the filename/label used for the output file/partition. If left blank, live-snapshot will search for a proper file on the device or use the whole partition.
-.IP "\fB\-r, \-\-resync\-string\fR \fISTRING\fR" 4
-internally used on resyncs.
-.IP "\fB\-t, \-\-type\fR \fITYPE\fR" 4
-Type could be one of "cpio", "squashfs" or "ext2".
-.PP
-.IP "\fB\-h, \-\-help\fR" 4
-display help and exit
-.IP "\fB\-u, \-\-usage\fR" 4
-show usage and exit
-.IP "\fB\-v, \-\-version\fR" 4
-output version information and exit
-
-.SH SEE ALSO
-\fIlive\-initramfs\fR(8)
-.PP
-This program is a part of live\-initramfs.
-
-.SH BUGS
-Report bugs against live\-initramfs <\fIhttp://packages.qa.debian.org/live\-initramfs/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHORS
-live\-initramfs is maintained by Daniel Baumann <\fIdaniel at debian.org\fR> and Marco Amadori <\fImarco.amadori at gmail.com\fR> for the Debian project.
-.PP
-live\-initramfs is a fork of casper <\fIhttp://packages.ubuntu.com/casper/\fR>. casper was originally written by Tollef Fog Heen <\fItfheen at canonical.com\fR> and Matt Zimmerman <\fImdz at canonical.com\fR>.

Copied: dists/trunk/live-initramfs/manpages/live-snapshot.en.1 (from rev 2013, dists/sid/live-initramfs/manpages/live-snapshot.en.1)
===================================================================
--- dists/trunk/live-initramfs/manpages/live-snapshot.en.1	                        (rev 0)
+++ dists/trunk/live-initramfs/manpages/live-snapshot.en.1	2007-06-10 16:52:27 UTC (rev 2015)
@@ -0,0 +1,71 @@
+.TH LIVE\-SNAPSHOT 1 "2007\-06\-18" "1.90.2" "live\-initramfs"
+
+.SH NAME
+live\-snapshot \- a simple script to ease persistence usage
+
+.SH SYNOPSIS
+.B live\-snapshot
+.RB [\| \-c \||\| \-\-cow
+.IR DIRECTORY ]
+.RB [\| \-d \||\| \-\-device
+.IR DEVICE \|]
+.RB [\| \-e \||\| \-\-exclude\-list
+.IR FILE \|]
+.RB [\| \-o \||\| \-\-output
+.IR FILE \|]
+.RB [\| \-t \||\| \-\-type
+.IR TYPE \|]
+.PP
+.B live\-snapshot
+.RB [\| \-r \||\| \-\-resync\-string
+.IR STRING \|]
+.PP
+.B live\-snapshot
+.RB [\| \-h \||\| \-\-help \|]
+.br
+.B live\-snapshot
+.RB [\| \-u \||\| \-\-usage \|]
+.br
+.B live-snapshot
+.RB [\| \-v \||\| \-\-version \|]
+
+.SH DESCRIPTION
+live\-snapshot is a script which can be used to build the right types of persistent image files supported by \fIlive\-initramfs\fR(7). It is also used on exit by the live\-initramfs init script to resync the boot-found snapshots devices.
+
+.SH OPTIONS
+.IP "\fB\-c, \-\-cow\fR \fIDIRECTORY\fR" 4
+specifies the input directory to be cloned in the image file.
+Its default value "/cow" should be right for most uses. However it could be handy to specify "/home" and type ext2 for the type to prepare an image file suited to be directly mounted by live-initramfs as home.
+.IP "\fB\-d, \-\-device\fR \fIDEVICE\fR" 4
+sets the device where the media which the snapshot/persistence file/partition will be put. If it is not specified, a tmpfs will be used and linked to the user's desktop to move it where it is needed. If the device has no filesystem, an ext2 fs will be automatically created and labelled according to the values specified after the "--output" value or with a sane default.
+.IP "\fB\-e, \-\-exclude\-list\fR \fIFILE\fR" 4
+a file containing a list of filenames/paths that should not be saved. This exclude list will be remebered on the target snapshot media for reuse.
+.IP "\fB\-o, \-\-output\fR \fIFILE\fR" 4
+the filename/label used for the output file/partition. If left blank, live-snapshot will search for a proper file on the device or use the whole partition.
+.IP "\fB\-r, \-\-resync\-string\fR \fISTRING\fR" 4
+internally used on resyncs.
+.IP "\fB\-t, \-\-type\fR \fITYPE\fR" 4
+Type could be one of "cpio", "squashfs" or "ext2".
+.PP
+.IP "\fB\-h, \-\-help\fR" 4
+display help and exit
+.IP "\fB\-u, \-\-usage\fR" 4
+show usage and exit
+.IP "\fB\-v, \-\-version\fR" 4
+output version information and exit
+
+.SH SEE ALSO
+\fIlive\-initramfs\fR(8)
+.PP
+This program is a part of live\-initramfs.
+
+.SH BUGS
+Report bugs against live\-initramfs <\fIhttp://packages.qa.debian.org/live\-initramfs/\fR>.
+
+.SH HOMEPAGE
+More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
+
+.SH AUTHORS
+live\-initramfs is maintained by Daniel Baumann <\fIdaniel at debian.org\fR> and Marco Amadori <\fImarco.amadori at gmail.com\fR> for the Debian project.
+.PP
+live\-initramfs is a fork of casper <\fIhttp://packages.ubuntu.com/casper/\fR>. casper was originally written by Tollef Fog Heen <\fItfheen at canonical.com\fR> and Matt Zimmerman <\fImdz at canonical.com\fR>.




More information about the Debian-live-changes mailing list