From: Evgeni Golov Date: Mon, 12 Aug 2013 17:19:38 +0000 (+0200) Subject: Merge branch 'debian-next' into master-next X-Git-Tag: debian/4.0_a13-1+grml.1~10 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=895b356b249e9b1196d180a43c2e6601fab1b158;hp=d6df506b889526a9c20e1750bc58f0e4b7fbc744;p=live-boot-grml.git Merge branch 'debian-next' into master-next --- diff --git a/Makefile b/Makefile index 9d03254..d083027 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ test: echo " done."; \ else \ echo "W: checkbashisms - command not found"; \ - echo "I: checkbashisms can be optained from: "; \ + echo "I: checkbashisms can be obtained from: "; \ echo "I: http://git.debian.org/?p=devscripts/devscripts.git"; \ echo "I: On Debian based systems, checkbashisms can be installed with:"; \ echo "I: apt-get install devscripts"; \ diff --git a/VERSION b/VERSION index 818ac95..18c92c9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.1-1 +4.0~a13-1 diff --git a/scripts/boot/0010-dracut b/backends/dracut/live.script similarity index 78% rename from scripts/boot/0010-dracut rename to backends/dracut/live.script index 19db182..223f355 100755 --- a/scripts/boot/0010-dracut +++ b/backends/dracut/live.script @@ -2,8 +2,10 @@ #set -e +. /lib/live/boot.sh + DRACUT_FIXME () { # dracut entry point for live-boot is FIXME(); function - Main + Live } diff --git a/backends/initramfs-tools/live.hook b/backends/initramfs-tools/live.hook index d66c669..1814211 100755 --- a/backends/initramfs-tools/live.hook +++ b/backends/initramfs-tools/live.hook @@ -45,7 +45,6 @@ do copy_exec "${FILE}" done -# wheezy/sid if [ -e /lib/udev/rules.d/60-cdrom_id.rules ] then mkdir -p ${DESTDIR}/lib/udev/rules.d @@ -172,11 +171,6 @@ then [ "${QUIET}" ] || echo -n " udev" copy_exec /sbin/udevadm fi -if [ -x /usr/bin/udevinfo ] -then - [ "${QUIET}" ] || echo -n " udev" - copy_exec /usr/bin/udevinfo /bin -fi # Program: wget if [ -x /usr/bin/wget ] diff --git a/backends/initramfs-tools/live.script b/backends/initramfs-tools/live.script index 46576fb..9646274 100755 --- a/backends/initramfs-tools/live.script +++ b/backends/initramfs-tools/live.script @@ -2,7 +2,12 @@ #set -e -if [ -e /lib/live/boot.sh ] -then - . /lib/live/boot.sh -fi +. /lib/live/boot.sh + +. /scripts/functions + +mountroot () +{ + # initramfs-tools entry point for live-boot is mountroot(); function + Live +} diff --git a/bin/live-swapfile b/bin/live-swapfile index 2c61036..745fa87 100755 --- a/bin/live-swapfile +++ b/bin/live-swapfile @@ -1,7 +1,7 @@ #!/bin/sh # File: live-swapfile - create and use a swap file -# Copyright: (C) 2009 Daniel Baumann +# Copyright: (C) 2009 Daniel Baumann # License: GPL-3+ set -e diff --git a/debian/changelog b/debian/changelog index 7ea916a..5f6f600 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,195 @@ +live-boot (4.0~a13-1) experimental; urgency=low + + * Increasing tftp blocksize to maximum value per RFC 2348, thanks to + Vincent Smeets (Closes: #709887). + + -- Daniel Baumann Mon, 27 May 2013 16:45:49 +0200 + +live-boot (4.0~a12-1) experimental; urgency=low + + * Updating manpage wrt/ quickreboot (Closes: #706686). + * Moving overwriting of /bin/mount with /bin/mount.util-linux for httpfs + to make it active (Closes: #707116). + * Further guarding overwriting of /bin/mount by making it dependent on + the existence of /bin/mount.util-linux. + + -- Daniel Baumann Wed, 08 May 2013 08:42:54 +0200 + +live-boot (4.0~a11-1) experimental; urgency=low + + [ chals ] + * Updating dates in man pages. + * Updating the Spanish translation of live-boot man page. + * Updating the Spanish translation of persistence.conf man page. + * Fixing the use of one preposition in the Spanish translation of the + man pages. + + [ Daniel Baumann ] + * Renumbering the first three early scripts. + * Renaming main function to live for consistent namespace. + * Correcting leftovers from old variable handling for BOOTIF, thanks to + Andrew Jeffery (Closes: #703743). + + [ Andrew Jeffery ] + * Select BOOTIF device if defined for netboot (Closes: #703744). + * Don't quote $CIFSOPTS for mount.cifs (Closes: #703746). + + [ Peter Schaefer ] + * Adding support for luks persistence with persistence files (Closes: + #701614). + + [ David Hare ] + * Also blacklisting findiso and fromiso devices for luks file + persistence. + + -- Daniel Baumann Mon, 06 May 2013 14:28:00 +0200 + +live-boot (4.0~a10-1) experimental; urgency=low + + [ Daniel Baumann ] + * Debranding package for derivatives. + + [ Evgeni Golov ] + * Fixing condition for setting rootfs_dest_backing. + + [ Michael Stummvoll ] + * Simplifying if statement in is_live_system function. + * Fixing a bug with multiple files in is_live_path after the last + commit. + * Using is_live_path() in mount_images_in_directory() to avoid redundant + logic. + + -- Daniel Baumann Mon, 01 Apr 2013 08:20:50 +0200 + +live-boot (4.0~a9-1) experimental; urgency=low + + * Removing all references to my old email address. + + -- Daniel Baumann Sun, 10 Mar 2013 22:13:18 +0100 + +live-boot (4.0~a8-1) experimental; urgency=low + + [ Daniel Baumann ] + * Moving initramfs-tools entry-point to backends. + * Moving dracut entry-point stub to backends. + * Dropping pre-squeeze udev conditionals in initramfs-tools hook. + * Dropping conditionals in backend, stuff is either there or not but not + nothing in between. + * Correcting spelling typos, thanks to Adam D. Barratt . + + [ Evgeni Golov ] + * Fixing invalid syntax in test for opt_link. + * Checking for ${overlay}, not ${device} when trying to close + ${overlay}. + * Transforming link targets so they work after the mount was moved + (Closes: #702421). + + -- Daniel Baumann Sun, 10 Mar 2013 19:02:23 +0100 + +live-boot (4.0~a7-1) experimental; urgency=low + + * Silencing unmounting of potentially stray tmpfs on /live/overlay. + * Making loadkeys call quiet in order to not mess-up persistence, thanks + to stack (Closes: #700902). + + -- Daniel Baumann Tue, 19 Feb 2013 05:49:37 +0100 + +live-boot (4.0~a6-1) experimental; urgency=low + + [ chals ] + * Updating Spanish translation of live-boot man page, persistence-label. + + [ Daniel Baumann ] + * Adding 3.0.1-1 changelog entries. + + -- Daniel Baumann Fri, 15 Feb 2013 08:57:13 +0100 + +live-boot (4.0~a5-1) experimental; urgency=low + + [ Daniel Baumann ] + * Updating manpage year handling for 2013. + + [ Richard Nelson ] + * Replace noprompt with noeject on manpage. + + [ Daniel Baumann ] + * Updating noeject description in manpage. + + [ chals ] + * Updating Spanish translation in respect to noeject. + + [ Daniel Baumann ] + * Dropping dpkg compression level. + * Calling df with -P to avoid line wraps with overly long mountpoints. + * Removing some dead code in netbase parts. + + [ Gaudenz Steinlin ] + * Fixing support for multiple squashfs images (Closes: #696494). + * Fixing mounting of rootfs, cow and medium filesystems (Closes: + #696495). + + [ Daniel Baumann ] + * Adding 3.0.0-1 changelog entries. + * Updating manpage for persistence-label, thanks to Mike Gach + (Closes: #697873). + + -- Daniel Baumann Tue, 12 Feb 2013 08:29:27 +0100 + +live-boot (4.0~a4-1) experimental; urgency=low + + * Updating year in copyright file. + * Supporting legacy filenames for checksums in debian within verify- + checksums. + * Correcting legacy filename for checksum files. + * By default including sha256sum only in progress-linux, keep md5sum + legacy for debian. + * Adding 3.0~b11-1 changelog entries. + + -- Daniel Baumann Wed, 02 Jan 2013 11:37:12 +0100 + +live-boot (4.0~a3-1) experimental; urgency=low + + [ Daniel Baumann ] + * Adding live-tools to recommends. + + [ Michal Suchanek ] + * Including util-linux mount in initramfs. + + [ Daniel Baumann ] + * Making overwriting of /bin/mount within initramfs with mount.util- + linux dependent on fuse usage, not on some additional boot parameter. + * Correcting spelling typo in bug script. + + [ Richard Nelson ] + * Update manpage information of ip= param to correctly reflect what + 9990-netbase.sh expects. + + [ Daniel Baumann ] + * Cleaning up manpage po files. + * Adding 3.0~b10-1 changelog entries. + + -- Daniel Baumann Mon, 17 Dec 2012 20:27:46 +0100 + +live-boot (4.0~a2-1) experimental; urgency=low + + [ Tails developers ] + * Making the /live to /lib/live move for the persistence code. + * Handling already mounted persistence backing media correctly. + * Fixing persistence-media option when no devices are attached. + * Using 'local' in a safe way. + + [ Daniel Baumann ] + * Adding 3.0~b9-1 changelog entries. + + -- Daniel Baumann Mon, 10 Dec 2012 20:06:28 +0100 + +live-boot (4.0~a1-1) experimental; urgency=low + + * Dropping specifics for squeeze based distributions. + + -- Daniel Baumann Fri, 30 Nov 2012 14:58:46 +0100 + live-boot (3.0.1-1+grml.1) unstable; urgency=low * Sync Debian's 3.0.1. @@ -13,7 +205,7 @@ live-boot (3.0.1-1) unstable; urgency=low [ Daniel Baumann ] * Dropping German manpage translations stubs for the release. - -- Daniel Baumann Thu, 14 Feb 2013 19:33:17 +0100 + -- Daniel Baumann Thu, 14 Feb 2013 19:33:17 +0100 live-boot (3.0.0-1) unstable; urgency=low @@ -49,7 +241,7 @@ live-boot (3.0.0-1) unstable; urgency=low * Correcting persistence-label handling fwrt/ legacy live-boot 2.x support, thanks to Mike Gach (Closes: #697873). - -- Daniel Baumann Tue, 12 Feb 2013 08:23:17 +0100 + -- Daniel Baumann Tue, 12 Feb 2013 08:23:17 +0100 live-boot (3.0~b11-1) unstable; urgency=low @@ -60,7 +252,7 @@ live-boot (3.0~b11-1) unstable; urgency=low * By default including sha256sum only in progress-linux, keep md5sum legacy for debian. - -- Daniel Baumann Wed, 02 Jan 2013 11:32:21 +0100 + -- Daniel Baumann Wed, 02 Jan 2013 11:32:21 +0100 live-boot (3.0~b10-1+grml.1) unstable; urgency=low @@ -95,7 +287,7 @@ live-boot (3.0~b10-1) unstable; urgency=low [ Evgeni Golov ] * Do not fix mountpoints with live-persistence.conf as home-rw/live-rw. - -- Daniel Baumann Mon, 17 Dec 2012 20:22:50 +0100 + -- Daniel Baumann Mon, 17 Dec 2012 20:22:50 +0100 live-boot (3.0~b9-1+grml.1) unstable; urgency=low @@ -122,7 +314,7 @@ live-boot (3.0~b9-1) unstable; urgency=low * Fixing persistence-media option when no devices are attached. * Using 'local' in a safe way. - -- Daniel Baumann Mon, 10 Dec 2012 20:01:21 +0100 + -- Daniel Baumann Mon, 10 Dec 2012 20:01:21 +0100 live-boot (3.0~b8-1+grml.1) unstable; urgency=low @@ -142,7 +334,7 @@ live-boot (3.0~b8-1) unstable; urgency=low * Updating package lists in bug script to match current implementations. * Adding dpkg-source local options. - -- Daniel Baumann Fri, 30 Nov 2012 14:48:16 +0100 + -- Daniel Baumann Fri, 30 Nov 2012 14:48:16 +0100 live-boot (3.0~b7-1) unstable; urgency=low @@ -161,7 +353,7 @@ live-boot (3.0~b7-1) unstable; urgency=low for compatibility with systems that have been deployed with live- persistence.conf already. - -- Daniel Baumann Wed, 07 Nov 2012 15:04:32 +0100 + -- Daniel Baumann Wed, 07 Nov 2012 15:04:32 +0100 live-boot (3.0~b6-1) unstable; urgency=low @@ -177,7 +369,7 @@ live-boot (3.0~b6-1) unstable; urgency=low * Renaming the boot scripts readme file to fixme to make it even more obvious. - -- Daniel Baumann Tue, 02 Oct 2012 10:32:44 +0200 + -- Daniel Baumann Tue, 02 Oct 2012 10:32:44 +0200 live-boot (3.0~b5-1) unstable; urgency=low @@ -188,7 +380,7 @@ live-boot (3.0~b5-1) unstable; urgency=low /live/overlay gets removed to fix netboot failures (Closes: #685375). - -- Daniel Baumann Sun, 30 Sep 2012 10:07:09 +0200 + -- Daniel Baumann Sun, 30 Sep 2012 10:07:09 +0200 live-boot (3.0~b4-1) unstable; urgency=low @@ -197,7 +389,7 @@ live-boot (3.0~b4-1) unstable; urgency=low * Moving remaining stuff from /live to /lib/live to avoid further namespace pollution. - -- Daniel Baumann Thu, 27 Sep 2012 13:23:33 +0200 + -- Daniel Baumann Thu, 27 Sep 2012 13:23:33 +0200 live-boot (3.0~b3-1) unstable; urgency=low @@ -213,7 +405,7 @@ live-boot (3.0~b3-1) unstable; urgency=low systems, not just initramfs only (Closes: #687099). * Updating code for exposing of overlay mounts under /live too. - -- Daniel Baumann Wed, 26 Sep 2012 14:40:32 +0200 + -- Daniel Baumann Wed, 26 Sep 2012 14:40:32 +0200 live-boot (3.0~b2-1) unstable; urgency=low @@ -221,7 +413,7 @@ live-boot (3.0~b2-1) unstable; urgency=low * Removing /etc/live/boot if empty on purge in postrm. * Regenerating initramfs on remove. - -- Daniel Baumann Fri, 24 Aug 2012 12:37:23 +0200 + -- Daniel Baumann Fri, 24 Aug 2012 12:37:23 +0200 live-boot (3.0~b1-1) unstable; urgency=low @@ -267,7 +459,7 @@ live-boot (3.0~b1-1) unstable; urgency=low * Updating scripts readme about transition to plugin based architecture. - -- Daniel Baumann Thu, 16 Aug 2012 12:21:04 +0200 + -- Daniel Baumann Thu, 16 Aug 2012 12:21:04 +0200 live-boot (3.0~a38-1) unstable; urgency=low @@ -280,7 +472,7 @@ live-boot (3.0~a38-1) unstable; urgency=low * Correct left over references to old initramfs-tools.sh (Closes: #682504). - -- Daniel Baumann Fri, 27 Jul 2012 00:20:39 +0200 + -- Daniel Baumann Fri, 27 Jul 2012 00:20:39 +0200 live-boot (3.0~a37-1) unstable; urgency=low @@ -300,7 +492,7 @@ live-boot (3.0~a37-1) unstable; urgency=low * Avoid re-access /proc/cmdline in select-eth-device function and use internal variable instead. - -- Daniel Baumann Wed, 25 Jul 2012 17:18:06 +0200 + -- Daniel Baumann Wed, 25 Jul 2012 17:18:06 +0200 live-boot (3.0~a36-1) unstable; urgency=low @@ -317,14 +509,14 @@ live-boot (3.0~a36-1) unstable; urgency=low * Adding support for defining one or more explicit swap partitions to be used. - -- Daniel Baumann Wed, 18 Jul 2012 23:56:06 +0200 + -- Daniel Baumann Wed, 18 Jul 2012 23:56:06 +0200 live-boot (3.0~a35-1) unstable; urgency=low * Correcting typo in fstab function call in mountroot, thanks to Baurzhan Muftakhidinov . - -- Daniel Baumann Thu, 28 Jun 2012 14:30:46 +0200 + -- Daniel Baumann Thu, 28 Jun 2012 14:30:46 +0200 live-boot (3.0~a34-1) unstable; urgency=low @@ -345,7 +537,7 @@ live-boot (3.0~a34-1) unstable; urgency=low [ Daniel Baumann ] * Switching to xz compression in source and binary packages. - -- Daniel Baumann Wed, 27 Jun 2012 14:14:19 +0200 + -- Daniel Baumann Wed, 27 Jun 2012 14:14:19 +0200 live-boot (3.0~a33-1) unstable; urgency=low @@ -356,7 +548,7 @@ live-boot (3.0~a33-1) unstable; urgency=low * Removing some more dead parameters from cmdline function. * Removing double author entries in Spanish po files. - -- Daniel Baumann Wed, 13 Jun 2012 13:26:49 +0200 + -- Daniel Baumann Wed, 13 Jun 2012 13:26:49 +0200 live-boot (3.0~a32-1) experimental; urgency=low @@ -367,7 +559,7 @@ live-boot (3.0~a32-1) experimental; urgency=low custom-ov anymore on the filesystem and partition label (it's determined by the contents of live-persistence.conf). - -- Daniel Baumann Wed, 06 Jun 2012 19:04:01 +0200 + -- Daniel Baumann Wed, 06 Jun 2012 19:04:01 +0200 live-boot (3.0~a31-1) experimental; urgency=low @@ -386,7 +578,7 @@ live-boot (3.0~a31-1) experimental; urgency=low * Moving off remaining functions from main boot script to subscript for later cleanup. - -- Daniel Baumann Tue, 05 Jun 2012 21:44:44 +0200 + -- Daniel Baumann Tue, 05 Jun 2012 21:44:44 +0200 live-boot (3.0~a30-1) experimental; urgency=low @@ -416,7 +608,7 @@ live-boot (3.0~a30-1) experimental; urgency=low * Transforming networking bottom script into normal live-boot script. * Simplyfing initramfs-tools specific files within the source tree. - -- Daniel Baumann Tue, 05 Jun 2012 19:37:54 +0200 + -- Daniel Baumann Tue, 05 Jun 2012 19:37:54 +0200 live-boot (3.0~a29-1) experimental; urgency=low @@ -436,7 +628,7 @@ live-boot (3.0~a29-1) experimental; urgency=low * Converting read-only initramfs-tools pre-mount script into regular live-boot script. - -- Daniel Baumann Tue, 05 Jun 2012 16:00:59 +0200 + -- Daniel Baumann Tue, 05 Jun 2012 16:00:59 +0200 live-boot (3.0~a28-1) experimental; urgency=low @@ -466,7 +658,7 @@ live-boot (3.0~a28-1) experimental; urgency=low [ Evgeni Golov ] * Fixing two typos and a wrong word in comments. - -- Daniel Baumann Mon, 04 Jun 2012 17:31:32 +0200 + -- Daniel Baumann Mon, 04 Jun 2012 17:31:32 +0200 live-boot (3.0~a27-1+grml.7) grml-testing; urgency=low @@ -584,7 +776,7 @@ live-boot (3.0~a27-1) experimental; urgency=low * Fix typo to make home-sn snapshots work again. * Only try copying snapshots if we actually found any. - -- Daniel Baumann Mon, 09 Apr 2012 18:58:06 +0200 + -- Daniel Baumann Mon, 09 Apr 2012 18:58:06 +0200 live-boot (3.0~a26-1) experimental; urgency=low @@ -699,7 +891,7 @@ live-boot (3.0~a26-1) experimental; urgency=low * Correcting left-over in author section of live.persist manpage. * Moving initscript to live-config. - -- Daniel Baumann Thu, 05 Apr 2012 08:14:51 +0200 + -- Daniel Baumann Thu, 05 Apr 2012 08:14:51 +0200 live-boot (3.0~a25-1) unstable; urgency=low @@ -709,7 +901,7 @@ live-boot (3.0~a25-1) unstable; urgency=low [ Michal Suchanek ] * Add overlayfs support (Closes: #658265). - -- Daniel Baumann Mon, 06 Feb 2012 23:27:38 +0100 + -- Daniel Baumann Mon, 06 Feb 2012 23:27:38 +0100 live-boot (3.0~a24-1+grml.2) grml-testing; urgency=low @@ -749,7 +941,7 @@ live-boot (3.0~a24-1) unstable; urgency=low * Removing quotes from udev path_id command to actually execute the command. - -- Daniel Baumann Sun, 04 Dec 2011 09:58:23 +0100 + -- Daniel Baumann Sun, 04 Dec 2011 09:58:23 +0100 live-boot (3.0~a23-1) unstable; urgency=low @@ -788,7 +980,7 @@ live-boot (3.0~a23-1) unstable; urgency=low * Updating live-boot man page for persistent-read-only. * Adding workaround for a busybox bug with grep -w. - -- Daniel Baumann Mon, 28 Nov 2011 18:26:11 +0100 + -- Daniel Baumann Mon, 28 Nov 2011 18:26:11 +0100 live-boot (3.0~a22-1) unstable; urgency=low @@ -804,7 +996,7 @@ live-boot (3.0~a22-1) unstable; urgency=low [ Daniel Baumann ] * Sorting overrides in rules alphabetically. - -- Daniel Baumann Fri, 04 Nov 2011 11:37:28 +0100 + -- Daniel Baumann Fri, 04 Nov 2011 11:37:28 +0100 live-boot (3.0~a21-1) unstable; urgency=low @@ -831,7 +1023,7 @@ live-boot (3.0~a21-1) unstable; urgency=low /usr/share/doc/live-boot in validateroot bootscript, stripped live systems may or may not carry /usr/share/doc. - -- Daniel Baumann Thu, 08 Sep 2011 21:06:28 +0200 + -- Daniel Baumann Thu, 08 Sep 2011 21:06:28 +0200 live-boot (3.0~a20-1) unstable; urgency=low @@ -848,7 +1040,7 @@ live-boot (3.0~a20-1) unstable; urgency=low * Applying reformated patch from Ulrich Dangel to add support for lvm and md devices. - -- Daniel Baumann Thu, 04 Aug 2011 21:20:47 +0200 + -- Daniel Baumann Thu, 04 Aug 2011 21:20:47 +0200 live-boot (3.0~a19-1+grml.01) grml-testing; urgency=low @@ -893,7 +1085,7 @@ live-boot (3.0~a19-1) unstable; urgency=low * Adding conflicts/replaces for live-boot to live-boot-doc to not break upgrades. - -- Daniel Baumann Wed, 13 Jul 2011 10:28:33 +0200 + -- Daniel Baumann Wed, 13 Jul 2011 10:28:33 +0200 live-boot (3.0~a18-1) unstable; urgency=low @@ -902,7 +1094,7 @@ live-boot (3.0~a18-1) unstable; urgency=low * Removing accidentally twice included English files when installing manpages. - -- Daniel Baumann Sat, 11 Jun 2011 11:24:15 +0200 + -- Daniel Baumann Sat, 11 Jun 2011 11:24:15 +0200 live-boot (3.0~a17-1+grml.01) unstable; urgency=low @@ -964,13 +1156,13 @@ live-boot (3.0~a17-1) unstable; urgency=low * Copy resolv.conf to live system root (Closes: #627178). * Tidy up resolv.conf a bit. - -- Daniel Baumann Wed, 18 May 2011 19:31:27 +0200 + -- Daniel Baumann Wed, 18 May 2011 19:31:27 +0200 live-boot (3.0~a16-1) unstable; urgency=low * Adding old 2.x changelog entries in debian changelog. - -- Daniel Baumann Mon, 14 Mar 2011 06:27:17 +0100 + -- Daniel Baumann Mon, 14 Mar 2011 06:27:17 +0100 live-boot (3.0~a15-1) experimental; urgency=low @@ -990,7 +1182,7 @@ live-boot (3.0~a15-1) experimental; urgency=low * Fixing remaining fromiso= bug. * Fixing syntax error. - -- Daniel Baumann Wed, 09 Mar 2011 18:01:07 +0100 + -- Daniel Baumann Wed, 09 Mar 2011 18:01:07 +0100 live-boot (3.0~a14-1) experimental; urgency=low @@ -1013,7 +1205,7 @@ live-boot (3.0~a14-1) experimental; urgency=low * Supporting /dev/mtdblock0 as valid device name (for memdisk boot), thanks to Michael Prokop . - -- Daniel Baumann Tue, 11 Jan 2011 13:38:56 +0100 + -- Daniel Baumann Tue, 11 Jan 2011 13:38:56 +0100 live-boot (3.0~a13-1) experimental; urgency=low @@ -1031,7 +1223,7 @@ live-boot (3.0~a13-1) experimental; urgency=low [ Richard Nelson ] * Clean some leading whitespaces. - -- Daniel Baumann Mon, 06 Dec 2010 11:27:07 +0100 + -- Daniel Baumann Mon, 06 Dec 2010 11:27:07 +0100 live-boot (3.0~a12-1) experimental; urgency=low @@ -1041,7 +1233,7 @@ live-boot (3.0~a12-1) experimental; urgency=low [ Daniel Baumann ] * Adding dpkg source options file. - -- Daniel Baumann Mon, 22 Nov 2010 23:29:48 +0100 + -- Daniel Baumann Mon, 22 Nov 2010 23:29:48 +0100 live-boot (3.0~a11-1) experimental; urgency=low @@ -1053,13 +1245,13 @@ live-boot (3.0~a11-1) experimental; urgency=low * Removing deep link to bug page in the manual, since we don't have stable references yet. - -- Daniel Baumann Thu, 28 Oct 2010 09:28:43 +0200 + -- Daniel Baumann Thu, 28 Oct 2010 09:28:43 +0200 live-boot (3.0~a10-1) experimental; urgency=low * Don't do anything in initscript when using toram (Closes: #601575). - -- Daniel Baumann Wed, 27 Oct 2010 14:58:03 +0200 + -- Daniel Baumann Wed, 27 Oct 2010 14:58:03 +0200 live-boot (3.0~a9-1) experimental; urgency=low @@ -1073,7 +1265,7 @@ live-boot (3.0~a9-1) experimental; urgency=low * Fixing overzealous blacklist usage. * Adding documentation for persistent=cryptsetup in the manpage. - -- Daniel Baumann Tue, 26 Oct 2010 09:24:51 +0200 + -- Daniel Baumann Tue, 26 Oct 2010 09:24:51 +0200 live-boot (3.0~a8-1) experimental; urgency=low @@ -1087,14 +1279,14 @@ live-boot (3.0~a8-1) experimental; urgency=low * Running manpage rebuild after manpage updates. * Updating to debhelper version 8. - -- Daniel Baumann Sat, 02 Oct 2010 10:15:03 +0200 + -- Daniel Baumann Sat, 02 Oct 2010 10:15:03 +0200 live-boot (3.0~a7-1) experimental; urgency=low [ intrigeri ] * Fixing find_snap to take its second argument into account. - -- Daniel Baumann Sat, 25 Sep 2010 22:46:54 +0200 + -- Daniel Baumann Sat, 25 Sep 2010 22:46:54 +0200 live-boot (3.0~a6-1) experimental; urgency=low @@ -1108,7 +1300,7 @@ live-boot (3.0~a6-1) experimental; urgency=low symlinks when checking for dynamically linked files at reboot in initscript. - -- Daniel Baumann Tue, 14 Sep 2010 08:51:59 +0200 + -- Daniel Baumann Tue, 14 Sep 2010 08:51:59 +0200 live-boot (3.0~a5-1) experimental; urgency=low @@ -1131,7 +1323,7 @@ live-boot (3.0~a5-1) experimental; urgency=low * Removing usplash support in initramfs, usplash is dead. * Adding plymouth in bug script. - -- Daniel Baumann Mon, 06 Sep 2010 15:17:15 +0200 + -- Daniel Baumann Mon, 06 Sep 2010 15:17:15 +0200 live-boot (3.0~a4-1) experimental; urgency=low @@ -1139,7 +1331,7 @@ live-boot (3.0~a4-1) experimental; urgency=low * Using boot.d instead of boot.conf.d as directory name for custom configuration files. - -- Daniel Baumann Thu, 02 Sep 2010 22:46:45 +0200 + -- Daniel Baumann Thu, 02 Sep 2010 22:46:45 +0200 live-boot (3.0~a3-1) experimental; urgency=low @@ -1149,7 +1341,7 @@ live-boot (3.0~a3-1) experimental; urgency=low * Adding reference to live-tools in manpages. * Checking for file existence in initramfs hook (Closes: #595264). - -- Daniel Baumann Thu, 02 Sep 2010 18:28:40 +0200 + -- Daniel Baumann Thu, 02 Sep 2010 18:28:40 +0200 live-boot (3.0~a2-1) experimental; urgency=low @@ -1170,7 +1362,7 @@ live-boot (3.0~a2-1) experimental; urgency=low * Using allow-hotplug instead of auto in automatically created /etc/network/interfaces file. - -- Daniel Baumann Wed, 01 Sep 2010 18:27:33 +0200 + -- Daniel Baumann Wed, 01 Sep 2010 18:27:33 +0200 live-boot (3.0~a1-1) experimental; urgency=low @@ -1178,7 +1370,7 @@ live-boot (3.0~a1-1) experimental; urgency=low * Removing live-initramfs transitional package. * Removing lenny support. - -- Daniel Baumann Tue, 10 Aug 2010 02:02:39 +0200 + -- Daniel Baumann Tue, 10 Aug 2010 02:02:39 +0200 live-boot (2.0.15-1) unstable; urgency=low @@ -1189,7 +1381,7 @@ live-boot (2.0.15-1) unstable; urgency=low [ Marco Amadori ] * Adjust copyright entry in live-snapshot. - -- Daniel Baumann Tue, 01 Feb 2011 22:49:03 +0100 + -- Daniel Baumann Tue, 01 Feb 2011 22:49:03 +0100 live-boot (2.0.14-1) unstable; urgency=low @@ -1202,7 +1394,7 @@ live-boot (2.0.14-1) unstable; urgency=low * Supporting /dev/mtdblock0 as valid device name (for memdisk boot), thanks to Michael Prokop . - -- Daniel Baumann Fri, 24 Dec 2010 18:51:57 +0100 + -- Daniel Baumann Fri, 24 Dec 2010 18:51:57 +0100 live-boot (2.0.13-1) unstable; urgency=medium @@ -1210,27 +1402,27 @@ live-boot (2.0.13-1) unstable; urgency=medium * Remounting cow read-only before prompting user to remove usb flash drive. - -- Daniel Baumann Mon, 06 Dec 2010 11:18:32 +0100 + -- Daniel Baumann Mon, 06 Dec 2010 11:18:32 +0100 live-boot (2.0.12-1) unstable; urgency=medium [ T(A)ILS developers ] * Fixing fromiso= on Squeeze. - -- Daniel Baumann Mon, 22 Nov 2010 23:27:01 +0100 + -- Daniel Baumann Mon, 22 Nov 2010 23:27:01 +0100 live-boot (2.0.11-1) unstable; urgency=medium * Removing deep link to bug page in the manual, since we don't have stable references yet. - -- Daniel Baumann Thu, 28 Oct 2010 09:22:02 +0200 + -- Daniel Baumann Thu, 28 Oct 2010 09:22:02 +0200 live-boot (2.0.10-1) unstable; urgency=medium * Don't do anything in initscript when using toram (Closes: #601575). - -- Daniel Baumann Wed, 27 Oct 2010 14:54:58 +0200 + -- Daniel Baumann Wed, 27 Oct 2010 14:54:58 +0200 live-boot (2.0.9-1) unstable; urgency=low @@ -1238,14 +1430,14 @@ live-boot (2.0.9-1) unstable; urgency=low * Fixing overzealous blacklist usage. * Adding documentation for persistent=cryptsetup in the manpage. - -- Daniel Baumann Tue, 26 Oct 2010 09:15:54 +0200 + -- Daniel Baumann Tue, 26 Oct 2010 09:15:54 +0200 live-boot (2.0.8-1) unstable; urgency=medium [ amnesia ] * Adding live-snapshot.list documentation to manpage. - -- Daniel Baumann Tue, 12 Oct 2010 11:20:12 +0200 + -- Daniel Baumann Tue, 12 Oct 2010 11:20:12 +0200 live-boot (2.0.7-1) unstable; urgency=medium @@ -1258,14 +1450,14 @@ live-boot (2.0.7-1) unstable; urgency=medium [ Daniel Baumann ] * Running manpage rebuild after manpage updates. - -- Daniel Baumann Sat, 02 Oct 2010 10:06:41 +0200 + -- Daniel Baumann Sat, 02 Oct 2010 10:06:41 +0200 live-boot (2.0.6-1) unstable; urgency=medium [ intrigeri ] * Fixing find_snap to take its second argument into account. - -- Daniel Baumann Sat, 25 Sep 2010 22:48:35 +0200 + -- Daniel Baumann Sat, 25 Sep 2010 22:48:35 +0200 live-boot (2.0.5-1) unstable; urgency=low @@ -1279,7 +1471,7 @@ live-boot (2.0.5-1) unstable; urgency=low symlinks when checking for dynamically linked files at reboot in initscript. - -- Daniel Baumann Tue, 14 Sep 2010 08:55:02 +0200 + -- Daniel Baumann Tue, 14 Sep 2010 08:55:02 +0200 live-boot (2.0.4-1) unstable; urgency=low @@ -1301,7 +1493,7 @@ live-boot (2.0.4-1) unstable; urgency=low * Removing usplash support in initramfs, usplash is dead. * Adding plymouth in bug script. - -- Daniel Baumann Mon, 06 Sep 2010 15:21:24 +0200 + -- Daniel Baumann Mon, 06 Sep 2010 15:21:24 +0200 live-boot (2.0.3-1) unstable; urgency=low @@ -1309,7 +1501,7 @@ live-boot (2.0.3-1) unstable; urgency=low * Using boot.d instead of boot.conf.d as directory name for custom configuration files. - -- Daniel Baumann Thu, 02 Sep 2010 22:43:03 +0200 + -- Daniel Baumann Thu, 02 Sep 2010 22:43:03 +0200 live-boot (2.0.2-1) unstable; urgency=low @@ -1320,7 +1512,7 @@ live-boot (2.0.2-1) unstable; urgency=low * Adding live-toram script to copy the running live system to ram and eject the live media. - -- Daniel Baumann Thu, 02 Sep 2010 18:25:12 +0200 + -- Daniel Baumann Thu, 02 Sep 2010 18:25:12 +0200 live-boot (2.0.1-1) unstable; urgency=low @@ -1331,7 +1523,7 @@ live-boot (2.0.1-1) unstable; urgency=low * Using allow-hotplug instead of auto in automatically created /etc/network/interfaces file. - -- Daniel Baumann Wed, 01 Sep 2010 18:25:08 +0200 + -- Daniel Baumann Wed, 01 Sep 2010 18:25:08 +0200 live-boot (2.0.0-1) unstable; urgency=low @@ -1339,7 +1531,7 @@ live-boot (2.0.0-1) unstable; urgency=low * Moving configs to etc directory within the source tree. * Removing old docs. - -- Daniel Baumann Tue, 10 Aug 2010 01:48:01 +0200 + -- Daniel Baumann Tue, 10 Aug 2010 01:48:01 +0200 live-boot (2.0~a16-1) unstable; urgency=high @@ -1353,7 +1545,7 @@ live-boot (2.0~a16-1) unstable; urgency=high [ Michal Suchanek ] * Fix omitpids to work with readonly images. - -- Daniel Baumann Wed, 28 Jul 2010 20:17:11 +0200 + -- Daniel Baumann Wed, 28 Jul 2010 20:17:11 +0200 live-boot (2.0~a15-1) unstable; urgency=low @@ -1361,13 +1553,13 @@ live-boot (2.0~a15-1) unstable; urgency=low * Updating depends of live-initramfs transitional package to reflect relaxed backend depends. - -- Daniel Baumann Sat, 17 Jul 2010 17:19:16 +0200 + -- Daniel Baumann Sat, 17 Jul 2010 17:19:16 +0200 live-boot (2.0~a14-1) unstable; urgency=low * Improving backend dependencies (Closes: #589326). - -- Daniel Baumann Sat, 17 Jul 2010 00:37:33 +0200 + -- Daniel Baumann Sat, 17 Jul 2010 00:37:33 +0200 live-boot (2.0~a13-1) unstable; urgency=low @@ -1376,7 +1568,7 @@ live-boot (2.0~a13-1) unstable; urgency=low * Improving clean target in manpages Makefile a bit. * Adding Chris in copyright file (for live-snapshot that is). - -- Daniel Baumann Thu, 15 Jul 2010 19:31:03 +0200 + -- Daniel Baumann Thu, 15 Jul 2010 19:31:03 +0200 live-boot (2.0~a12-1) unstable; urgency=low @@ -1395,7 +1587,7 @@ live-boot (2.0~a12-1) unstable; urgency=low * Adding btrfs support. * Updating package to standards version 3.9.0. - -- Daniel Baumann Wed, 07 Jul 2010 20:13:54 +0200 + -- Daniel Baumann Wed, 07 Jul 2010 20:13:54 +0200 live-boot (2.0~a11-1) unstable; urgency=low @@ -1404,7 +1596,7 @@ live-boot (2.0~a11-1) unstable; urgency=low * Removing noautologin parameter from live script, this functionallity was moved to live-config. - -- Daniel Baumann Sun, 20 Jun 2010 19:14:05 +0200 + -- Daniel Baumann Sun, 20 Jun 2010 19:14:05 +0200 live-boot (2.0~a10-1) unstable; urgency=low @@ -1413,14 +1605,14 @@ live-boot (2.0~a10-1) unstable; urgency=low * Alternatively depend on busybox or busybox-initramfs on live-boot- initramfs-tools. - -- Daniel Baumann Thu, 17 Jun 2010 21:52:57 +0200 + -- Daniel Baumann Thu, 17 Jun 2010 21:52:57 +0200 live-boot (2.0~a9-1) unstable; urgency=low [ Michal Suchanek ] * Fix missing log_end_msg in live-boot.init. - -- Daniel Baumann Fri, 11 Jun 2010 18:42:23 +0200 + -- Daniel Baumann Fri, 11 Jun 2010 18:42:23 +0200 live-boot (2.0~a8-1) unstable; urgency=low @@ -1428,7 +1620,7 @@ live-boot (2.0~a8-1) unstable; urgency=low * Removing compcache configuration file. * Removing options that are now in live-config from parameters.txt. - -- Daniel Baumann Thu, 10 Jun 2010 12:38:52 +0200 + -- Daniel Baumann Thu, 10 Jun 2010 12:38:52 +0200 live-boot (2.0~a7-1) unstable; urgency=low @@ -1441,7 +1633,7 @@ live-boot (2.0~a7-1) unstable; urgency=low * Removing xconfig, xdriver, and xvideomode scripts, live-config takes care about that now. - -- Daniel Baumann Tue, 08 Jun 2010 20:22:33 +0200 + -- Daniel Baumann Tue, 08 Jun 2010 20:22:33 +0200 live-boot (2.0~a6-1) unstable; urgency=low @@ -1460,7 +1652,7 @@ live-boot (2.0~a6-1) unstable; urgency=low before ejecting media. * Using sendsigs.omit to avoid killing / (Closes: #584690). - -- Daniel Baumann Tue, 08 Jun 2010 06:03:21 +0200 + -- Daniel Baumann Tue, 08 Jun 2010 06:03:21 +0200 live-boot (2.0~a5-1) unstable; urgency=low @@ -1489,40 +1681,40 @@ live-boot (2.0~a5-1) unstable; urgency=low * Removing apt_cdrom bottom script, not used anyway. * Removing some boot parameters obsoleted by live-config. - -- Daniel Baumann Sat, 05 Jun 2010 14:13:10 +0200 + -- Daniel Baumann Sat, 05 Jun 2010 14:13:10 +0200 live-boot (2.0~a4-1) unstable; urgency=low * Removing obsolete boot parameter from manpages. * Running checkbashisms with -f and -x in Makefile. - -- Daniel Baumann Wed, 02 Jun 2010 22:47:20 +0200 + -- Daniel Baumann Wed, 02 Jun 2010 22:47:20 +0200 live-boot (2.0~a3-1) unstable; urgency=low * Removing umountfs bottom script, not needed anymore (see #518463). - -- Daniel Baumann Sun, 30 May 2010 09:28:32 +0200 + -- Daniel Baumann Sun, 30 May 2010 09:28:32 +0200 live-boot (2.0~a2-1) unstable; urgency=low * Removing locales bottom script, now handled by live-config. * Simplyfing makefile a bit. - -- Daniel Baumann Thu, 27 May 2010 22:42:36 +0200 + -- Daniel Baumann Thu, 27 May 2010 22:42:36 +0200 live-boot (2.0~a1-1) experimental; urgency=low * Initial release. - -- Daniel Baumann Mon, 24 May 2010 10:46:39 +0200 + -- Daniel Baumann Mon, 24 May 2010 10:46:39 +0200 live-initramfs (1.236.2-1) unstable; urgency=medium * Removing spurious '+' when making debconf db read-only (Closes: #581808). - -- Daniel Baumann Tue, 18 May 2010 06:51:31 +0200 + -- Daniel Baumann Tue, 18 May 2010 06:51:31 +0200 live-initramfs (1.236.1-1) unstable; urgency=low @@ -1548,7 +1740,7 @@ live-initramfs (1.236.1-1) unstable; urgency=low * Merging casper 1.235. * Merging casper 1.236. - -- Daniel Baumann Sun, 16 May 2010 06:03:01 +0200 + -- Daniel Baumann Sun, 16 May 2010 06:03:01 +0200 live-initramfs (1.215.1-1) unstable; urgency=low @@ -1573,7 +1765,7 @@ live-initramfs (1.215.1-1) unstable; urgency=low [ Steven Shiau ] * No timeout as running ipconfig for network booting. - -- Daniel Baumann Sun, 02 May 2010 15:52:01 +0200 + -- Daniel Baumann Sun, 02 May 2010 15:52:01 +0200 live-initramfs (1.199.1-1) unstable; urgency=low @@ -1602,7 +1794,7 @@ live-initramfs (1.199.1-1) unstable; urgency=low * Merging casper 1.198. * Merging casper 1.199. - -- Daniel Baumann Fri, 30 Apr 2010 19:19:23 +0200 + -- Daniel Baumann Fri, 30 Apr 2010 19:19:23 +0200 live-initramfs (1.177.2-1) unstable; urgency=low @@ -1622,7 +1814,7 @@ live-initramfs (1.177.2-1) unstable; urgency=low * Do not leak modprobe options to avoid booting errors with kernel options like libata.dma=0. - -- Daniel Baumann Mon, 05 Apr 2010 10:07:12 +0200 + -- Daniel Baumann Mon, 05 Apr 2010 10:07:12 +0200 live-initramfs (1.177.1-1) unstable; urgency=low @@ -1645,7 +1837,7 @@ live-initramfs (1.177.1-1) unstable; urgency=low to unionfs-fuse. * Manually loading fuse when required. - -- Daniel Baumann Wed, 17 Mar 2010 20:29:01 +0100 + -- Daniel Baumann Wed, 17 Mar 2010 20:29:01 +0100 live-initramfs (1.173.5-1) unstable; urgency=low @@ -1664,7 +1856,7 @@ live-initramfs (1.173.5-1) unstable; urgency=low * Also respecting persistent-path parameter for snapshots (Closes: #570162). - -- Daniel Baumann Sun, 14 Mar 2010 23:27:57 +0100 + -- Daniel Baumann Sun, 14 Mar 2010 23:27:57 +0100 live-initramfs (1.173.4-1) unstable; urgency=low @@ -1673,14 +1865,14 @@ live-initramfs (1.173.4-1) unstable; urgency=low * Correcting path in previous commit. * Disabling kaboom (Closes: #556368). - -- Daniel Baumann Fri, 12 Mar 2010 18:21:00 +0100 + -- Daniel Baumann 11.localhost> Fri, 12 Mar 2010 18:21:00 +0100 live-initramfs (1.173.3-1) unstable; urgency=low * Using noxino instead of xino, as the latter is not supported by aufs2 as we need to use it. - -- Daniel Baumann Sat, 20 Feb 2010 16:16:46 +0100 + -- Daniel Baumann Sat, 20 Feb 2010 16:16:46 +0100 live-initramfs (1.173.2-1) unstable; urgency=low @@ -1702,7 +1894,7 @@ live-initramfs (1.173.2-1) unstable; urgency=low * Skip loading usb modules when quickusbmodules parameter is specified. - -- Daniel Baumann Sat, 20 Feb 2010 11:55:41 +0100 + -- Daniel Baumann Sat, 20 Feb 2010 11:55:41 +0100 live-initramfs (1.173.1-1) unstable; urgency=medium @@ -1774,7 +1966,7 @@ live-initramfs (1.173.1-1) unstable; urgency=medium [ Daniel Baumann ] * Updating to standards version 3.8.4. - -- Daniel Baumann Sun, 31 Jan 2010 16:44:08 +0100 + -- Daniel Baumann Sun, 31 Jan 2010 16:44:08 +0100 live-initramfs (1.157.4-2) unstable; urgency=high @@ -1787,7 +1979,7 @@ live-initramfs (1.157.4-2) unstable; urgency=high [ Tzafrir Cohen ] * Adjusting grep call in is_nice_device to match new output of vol_id. - -- Daniel Baumann Sat, 21 Nov 2009 19:07:41 +0100 + -- Daniel Baumann Sat, 21 Nov 2009 19:07:41 +0100 live-initramfs (1.157.4-1) unstable; urgency=medium @@ -1819,7 +2011,7 @@ live-initramfs (1.157.4-1) unstable; urgency=medium media-path when toram is used (Closes: #534878). * Simplyfing and correcting udev inclusion in initramfs hook. - -- Daniel Baumann Sun, 18 Oct 2009 20:29:31 +0200 + -- Daniel Baumann Sun, 18 Oct 2009 20:29:31 +0200 live-initramfs (1.157.3-1) unstable; urgency=low @@ -1887,7 +2079,7 @@ live-initramfs (1.157.3-1) unstable; urgency=low [ Richard Nelson ] * Allow for multiple but unique persistent media. - -- Daniel Baumann Fri, 04 Sep 2009 13:37:57 +0200 + -- Daniel Baumann Fri, 04 Sep 2009 13:37:57 +0200 live-initramfs (1.157.2-1) unstable; urgency=medium @@ -1910,7 +2102,7 @@ live-initramfs (1.157.2-1) unstable; urgency=medium * Updating eject prevention for USB devices in initscripts for linux 2.6.29 and newer. - -- Daniel Baumann Thu, 14 May 2009 10:00:00 +0200 + -- Daniel Baumann Thu, 14 May 2009 10:00:00 +0200 live-initramfs (1.157.1-1) unstable; urgency=medium @@ -1938,7 +2130,7 @@ live-initramfs (1.157.1-1) unstable; urgency=medium * Correcting check for usb when using removable-usb keyword. * Correcting typo in locale bottom script. - -- Daniel Baumann Sat, 21 Mar 2009 14:00:00 +0100 + -- Daniel Baumann Sat, 21 Mar 2009 14:00:00 +0100 live-initramfs (1.156.1-1) unstable; urgency=high @@ -1962,7 +2154,7 @@ live-initramfs (1.156.1-1) unstable; urgency=high [ Ronny Standtke ] * Do not eject USB flash drives (Closes: #457070). - -- Daniel Baumann Sun, 8 Feb 2009 15:00:00 +0100 + -- Daniel Baumann Sun, 8 Feb 2009 15:00:00 +0100 live-initramfs (1.154.8-1) unstable; urgency=high @@ -1970,7 +2162,7 @@ live-initramfs (1.154.8-1) unstable; urgency=high * Adding basic xrandr support for lenny to enforce a particular resolution through bootparameter. - -- Daniel Baumann Fri, 30 Jan 2009 00:00:00 +0100 + -- Daniel Baumann Fri, 30 Jan 2009 00:00:00 +0100 live-initramfs (1.154.7-1) unstable; urgency=medium @@ -1979,7 +2171,7 @@ live-initramfs (1.154.7-1) unstable; urgency=medium * Removing wc from hook again, that's an ubuntu only problem they have to care about. - -- Daniel Baumann Tue, 27 Jan 2009 18:00:00 +0100 + -- Daniel Baumann Tue, 27 Jan 2009 18:00:00 +0100 live-initramfs (1.154.6-1) unstable; urgency=medium @@ -1993,7 +2185,7 @@ live-initramfs (1.154.6-1) unstable; urgency=medium * Adding persistent-path to parameter list and manpage. * Actually building/cleaning manpages through targets in Makefile. - -- Daniel Baumann Mon, 26 Jan 2009 02:00:00 +0100 + -- Daniel Baumann Mon, 26 Jan 2009 02:00:00 +0100 live-initramfs (1.154.5-1) unstable; urgency=low @@ -2005,7 +2197,7 @@ live-initramfs (1.154.5-1) unstable; urgency=low * Silencing xorg reconfiguration, thanks to Ronny Standtke . - -- Daniel Baumann Mon, 12 Jan 2009 13:00:00 -0500 + -- Daniel Baumann Mon, 12 Jan 2009 13:00:00 -0500 live-initramfs (1.154.4-1) unstable; urgency=low @@ -2013,14 +2205,14 @@ live-initramfs (1.154.4-1) unstable; urgency=low * Support further checks on loopback image and support skipping union mounts (Closes: #509446). - -- Daniel Baumann Fri, 26 Dec 2008 09:00:00 +0100 + -- Daniel Baumann Fri, 26 Dec 2008 09:00:00 +0100 live-initramfs (1.154.3-1) unstable; urgency=medium * Sourcing live.vars in 21xdriver and 21xvidemode in order to be able to set variables in previous bottom scripts. - -- Daniel Baumann Sat, 20 Dec 2008 15:00:00 +0100 + -- Daniel Baumann Sat, 20 Dec 2008 15:00:00 +0100 live-initramfs (1.154.2-1) unstable; urgency=medium @@ -2031,7 +2223,7 @@ live-initramfs (1.154.2-1) unstable; urgency=medium * Reworked integrity-check (Closes: #507477). * Cleaned the boot log a bit. - -- Daniel Baumann Thu, 11 Dec 2008 06:00:00 +0100 + -- Daniel Baumann Thu, 11 Dec 2008 06:00:00 +0100 live-initramfs (1.154.1-1) unstable; urgency=low @@ -2044,7 +2236,7 @@ live-initramfs (1.154.1-1) unstable; urgency=low * Also adding ralink to network device check. * Removing spurious 'livefs_root' in copy_live_to();. - -- Daniel Baumann Tue, 25 Nov 2008 12:00:00 +0100 + -- Daniel Baumann Tue, 25 Nov 2008 12:00:00 +0100 live-initramfs (1.139.1-4) unstable; urgency=medium @@ -2073,7 +2265,7 @@ live-initramfs (1.139.1-4) unstable; urgency=medium * Do not pollute the logs when looking for swap partitions. * Removed all "cat | grep", with grep, awk and sed. - -- Daniel Baumann Tue, 11 Nov 2008 13:00:00 +0100 + -- Daniel Baumann Tue, 11 Nov 2008 13:00:00 +0100 live-initramfs (1.139.1-3) unstable; urgency=medium @@ -2106,7 +2298,7 @@ live-initramfs (1.139.1-3) unstable; urgency=medium [ Michael Prokop ] * Ignore errors from fstype. - -- Daniel Baumann Fri, 19 Sep 2008 14:00:00 +0200 + -- Daniel Baumann Fri, 19 Sep 2008 14:00:00 +0200 live-initramfs (1.139.1-2) unstable; urgency=medium @@ -2122,7 +2314,7 @@ live-initramfs (1.139.1-2) unstable; urgency=medium [ Michal Suchanek ] * Enabling the "remove CD" prompt in splashy. - -- Daniel Baumann Mon, 1 Sep 2008 00:00:00 +0200 + -- Daniel Baumann Mon, 1 Sep 2008 00:00:00 +0200 live-initramfs (1.139.1-1) unstable; urgency=medium @@ -2194,14 +2386,14 @@ live-initramfs (1.139.1-1) unstable; urgency=medium * Adding support for using tftp in fetch= parameter. * Another fix about using udevsettle or "udevadm settle". - -- Daniel Baumann Sun, 24 Aug 2008 00:00:00 +0200 + -- Daniel Baumann Sun, 24 Aug 2008 00:00:00 +0200 live-initramfs (1.136.3-1) unstable; urgency=medium [ Michael Prokop ] * Make sure mounting /cow-tmpfs provides mount options. - -- Daniel Baumann Fri, 18 Jul 2008 00:00:00 +0200 + -- Daniel Baumann Fri, 18 Jul 2008 00:00:00 +0200 live-initramfs (1.136.2-1) unstable; urgency=medium @@ -2210,7 +2402,7 @@ live-initramfs (1.136.2-1) unstable; urgency=medium udevtrigger with udevadm if available. * Correcting httpfs2 inclusion in hook. - -- Daniel Baumann Wed, 16 Jul 2008 00:00:00 +0200 + -- Daniel Baumann Wed, 16 Jul 2008 00:00:00 +0200 live-initramfs (1.136.1-1) unstable; urgency=medium @@ -2256,7 +2448,7 @@ live-initramfs (1.136.1-1) unstable; urgency=medium [ Michal Suchanek ] * Add support for httpfs= and ftpfs= parameters. - -- Daniel Baumann Mon, 14 Jul 2008 00:00:00 +0200 + -- Daniel Baumann Mon, 14 Jul 2008 00:00:00 +0200 live-initramfs (1.132.1-1) unstable; urgency=medium @@ -2289,21 +2481,21 @@ live-initramfs (1.132.1-1) unstable; urgency=medium * Workaround loop-aes-utils losetup incompatibility * Fix toram (change mount --move to mount -o move) - -- Daniel Baumann Mon, 02 Jun 2008 00:00:00 +0200 + -- Daniel Baumann Mon, 02 Jun 2008 00:00:00 +0200 live-initramfs (1.130.1-3) unstable; urgency=high * Handle non-existing klibc includes in live hook (Closes: #475783). * Adding loop-aes-utils to recommends. - -- Daniel Baumann Sat, 26 Apr 2008 16:00:00 +0200 + -- Daniel Baumann Sat, 26 Apr 2008 16:00:00 +0200 live-initramfs (1.130.1-2) unstable; urgency=medium [ Chris Lamb ] * Remove bogus dependency on Ubuntu "localechooser-data" package - -- Daniel Baumann Thu, 17 Apr 2008 06:00:00 +0200 + -- Daniel Baumann Thu, 17 Apr 2008 06:00:00 +0200 live-initramfs (1.130.1-1) unstable; urgency=medium @@ -2318,7 +2510,7 @@ live-initramfs (1.130.1-1) unstable; urgency=medium * Restricting counting of installed kernels based on /boot/vmlinuz-* instead of /boot/vmlinuz*. - -- Daniel Baumann Mon, 14 Apr 2008 00:00:00 +0200 + -- Daniel Baumann Mon, 14 Apr 2008 00:00:00 +0200 live-initramfs (1.128.1-1) unstable; urgency=medium @@ -2331,7 +2523,7 @@ live-initramfs (1.128.1-1) unstable; urgency=medium [ Daniel Baumann ] * Merging casper 1.128. - -- Daniel Baumann Mon, 7 Apr 2008 00:00:00 +0200 + -- Daniel Baumann Mon, 7 Apr 2008 00:00:00 +0200 live-initramfs (1.127.1-1) unstable; urgency=medium @@ -2352,7 +2544,7 @@ live-initramfs (1.127.1-1) unstable; urgency=medium * scripts/live: Make 'nopersistent' parameter actually disable persistence - -- Daniel Baumann Mon, 31 Mar 2008 00:00:00 +0200 + -- Daniel Baumann Mon, 31 Mar 2008 00:00:00 +0200 live-initramfs (1.125.1-1) unstable; urgency=medium @@ -2363,7 +2555,7 @@ live-initramfs (1.125.1-1) unstable; urgency=medium * scripts/live-helpers: Cosmetic changes to loop-aes passphrase prompt * Rename 18hostname -> 06hostname - -- Daniel Baumann Mon, 24 Mar 2008 00:00:00 +0100 + -- Daniel Baumann Mon, 24 Mar 2008 00:00:00 +0100 live-initramfs (1.124.1-1) unstable; urgency=medium @@ -2379,7 +2571,7 @@ live-initramfs (1.124.1-1) unstable; urgency=medium [ Chris Lamb ] * 99hook: Download hook script from inside target filesystem - -- Daniel Baumann Mon, 17 Mar 2008 00:00:00 +0100 + -- Daniel Baumann Mon, 17 Mar 2008 00:00:00 +0100 live-initramfs (1.119.1-1) unstable; urgency=medium @@ -2389,7 +2581,7 @@ live-initramfs (1.119.1-1) unstable; urgency=medium * Removing disabling of kwallet. * Merging casper 1.119. - -- Daniel Baumann Mon, 10 Mar 2008 00:00:00 +0100 + -- Daniel Baumann Mon, 10 Mar 2008 00:00:00 +0100 live-initramfs (1.118.2-1) unstable; urgency=medium @@ -2408,7 +2600,7 @@ live-initramfs (1.118.2-1) unstable; urgency=medium [ Marco Amadori ] * Now it includes lzma kernel module dependencies. - -- Daniel Baumann Mon, 3 Mar 2008 00:00:00 +0100 + -- Daniel Baumann Mon, 3 Mar 2008 00:00:00 +0100 live-initramfs (1.118.1-1) unstable; urgency=medium @@ -2438,7 +2630,7 @@ live-initramfs (1.118.1-1) unstable; urgency=medium * live-helpers: add jffs2 as a valid image * live-snapshot.en.1: add ext3 and jffs2 images as valid options - -- Daniel Baumann Tue, 26 Feb 2008 13:35:00 +0100 + -- Daniel Baumann Tue, 26 Feb 2008 13:35:00 +0100 live-initramfs (1.110.7-1) unstable; urgency=medium @@ -2447,7 +2639,7 @@ live-initramfs (1.110.7-1) unstable; urgency=medium * Fixing regression from mounting the ow device on a nfs volume, thanks to An-Cheng Huang . - -- Daniel Baumann Mon, 19 Nov 2007 00:00:00 +0100 + -- Daniel Baumann Mon, 19 Nov 2007 00:00:00 +0100 live-initramfs (1.110.6-1) unstable; urgency=medium @@ -2458,7 +2650,7 @@ live-initramfs (1.110.6-1) unstable; urgency=medium * Adding checkbashsms call to test target of the Makefile as suggested by Trent W. Buck . - -- Daniel Baumann Mon, 12 Nov 2007 00:00:00 +0100 + -- Daniel Baumann Mon, 12 Nov 2007 00:00:00 +0100 live-initramfs (1.110.5-1) unstable; urgency=medium @@ -2472,7 +2664,7 @@ live-initramfs (1.110.5-1) unstable; urgency=medium thanks to Jordi Pujol . * Fixing some coding style issues. - -- Daniel Baumann Mon, 5 Nov 2007 00:00:00 +0100 + -- Daniel Baumann Mon, 5 Nov 2007 00:00:00 +0100 live-initramfs (1.110.4-1) unstable; urgency=medium @@ -2485,7 +2677,7 @@ live-initramfs (1.110.4-1) unstable; urgency=medium [ Jesse Hathaway ] * add support for mounting the cow device on an nfs volume - -- Daniel Baumann Mon, 29 Oct 2007 00:00:00 +0100 + -- Daniel Baumann Mon, 29 Oct 2007 00:00:00 +0100 live-initramfs (1.110.3-1) unstable; urgency=medium @@ -2500,7 +2692,7 @@ live-initramfs (1.110.3-1) unstable; urgency=medium [ Jesse Hathaway ] * add support for exposedroot option for live-helper - -- Daniel Baumann Mon, 22 Oct 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 22 Oct 2007 00:00:00 +0200 live-initramfs (1.110.2-1) unstable; urgency=medium @@ -2510,7 +2702,7 @@ live-initramfs (1.110.2-1) unstable; urgency=medium * Removing nodiratime as it is already included in noatime, thanks to Kel Modderman . - -- Daniel Baumann Mon, 15 Oct 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 15 Oct 2007 00:00:00 +0200 live-initramfs (1.110.1-1) unstable; urgency=medium @@ -2525,7 +2717,7 @@ live-initramfs (1.110.1-1) unstable; urgency=medium * Adjusting to live-initramfs. * Bumping version to 1.110.1-1. - -- Daniel Baumann Mon, 8 Oct 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 8 Oct 2007 00:00:00 +0200 live-initramfs (1.107.1-1) unstable; urgency=medium @@ -2548,19 +2740,19 @@ live-initramfs (1.107.1-1) unstable; urgency=medium * Merging casper 1.107. * Bumping version to 1.107.1-1. - -- Daniel Baumann Mon, 1 Oct 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 1 Oct 2007 00:00:00 +0200 live-initramfs (1.104.1-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 24 Sep 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 24 Sep 2007 00:00:00 +0200 live-initramfs (1.102.1-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 17 Sep 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 17 Sep 2007 00:00:00 +0200 live-initramfs (1.99.2-1) unstable; urgency=medium @@ -2568,119 +2760,119 @@ live-initramfs (1.99.2-1) unstable; urgency=medium - Contains patch from Jim Paris to fix wrong ipconfig usage (Closes: #440235). - -- Daniel Baumann Mon, 10 Sep 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 10 Sep 2007 00:00:00 +0200 live-initramfs (1.99.1-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 3 Sep 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 3 Sep 2007 00:00:00 +0200 live-initramfs (1.96.2-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 27 Aug 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 27 Aug 2007 00:00:00 +0200 live-initramfs (1.96.1-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 20 Aug 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 20 Aug 2007 00:00:00 +0200 live-initramfs (1.95.3-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 13 Aug 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 13 Aug 2007 00:00:00 +0200 live-initramfs (1.95.2-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 6 Aug 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 6 Aug 2007 00:00:00 +0200 live-initramfs (1.95.1-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 30 Jul 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 30 Jul 2007 00:00:00 +0200 live-initramfs (1.91.6-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 23 Jul 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 23 Jul 2007 00:00:00 +0200 live-initramfs (1.91.5-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 16 Jul 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 16 Jul 2007 00:00:00 +0200 live-initramfs (1.91.4-1) unstable; urgency=medium * New upstream release: - Dropping transitional package, not needed anymore. - -- Daniel Baumann Mon, 9 Jul 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 9 Jul 2007 00:00:00 +0200 live-initramfs (1.91.3-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 2 Jul 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 2 Jul 2007 00:00:00 +0200 live-initramfs (1.91.2-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 25 Jun 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 25 Jun 2007 00:00:00 +0200 live-initramfs (1.91.1-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 18 Jun 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 18 Jun 2007 00:00:00 +0200 live-initramfs (1.90.1-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 11 Jun 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 11 Jun 2007 00:00:00 +0200 live-initramfs (1.87.6-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 4 Jun 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 4 Jun 2007 00:00:00 +0200 live-initramfs (1.87.5-1) unstable; urgency=medium * New upstream release, replacing casper. - -- Daniel Baumann Mon, 28 May 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 28 May 2007 00:00:00 +0200 live-initramfs (1.87.4-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 21 May 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 21 May 2007 00:00:00 +0200 live-initramfs (1.87.3-1) unstable; urgency=medium * New upstream release. - -- Daniel Baumann Mon, 14 May 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 14 May 2007 00:00:00 +0200 live-initramfs (1.87.2-1) unstable; urgency=low * New upstream release. - -- Daniel Baumann Mon, 7 May 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 7 May 2007 00:00:00 +0200 live-initramfs (1.87.1-1) unstable; urgency=low * Initial release, forking casper. - -- Daniel Baumann Mon, 30 Apr 2007 00:00:00 +0200 + -- Daniel Baumann Mon, 30 Apr 2007 00:00:00 +0200 diff --git a/debian/control b/debian/control index 28cc4d5..e5ef27a 100644 --- a/debian/control +++ b/debian/control @@ -33,8 +33,6 @@ Package: live-boot-grml-doc Section: doc Architecture: all Depends: ${misc:Depends} -Conflicts: live-boot (<< 3.0~a18~) -Replaces: live-boot Description: Live System Boot Scripts (documentation) live-boot contains the scripts that configure a live system during the boot process (early userspace). diff --git a/debian/copyright b/debian/copyright index d1c1b8a..19f846a 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,10 +1,10 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: live-boot -Upstream-Contact: Debian Live Project -Source: http://live.debian.net/archive/packages/live-boot/ +Upstream-Contact: Live Systems Project +Source: http://live-systems.org/archive/packages/live-boot/ Files: * -Copyright: 2006-2013 Daniel Baumann +Copyright: 2006-2013 Daniel Baumann 2005-2008 Canonical Ltd. 2008 Chris Lamb 2006-2007 Marco Amadori diff --git a/debian/live-boot-grml.bug-presubj b/debian/live-boot-grml.bug-presubj index 90a72ec..d0690ee 100644 --- a/debian/live-boot-grml.bug-presubj +++ b/debian/live-boot-grml.bug-presubj @@ -1,7 +1,7 @@ Before submitting a bug report against live-boot, please make sure -that you have read our guidelines for Debian Live bug reports: +that you have read our guidelines for live systems bug reports: - http://live.debian.net/manual/ + http://live-systems.org/manual/ By providing the required information as outlined in the guidelines makes sure that we can optimally reproduce and fix bugs, not doing so wastes a diff --git a/manpages/Makefile b/manpages/Makefile index fd6298f..e488b68 100644 --- a/manpages/Makefile +++ b/manpages/Makefile @@ -23,7 +23,7 @@ build: po4a.cfg @if [ ! -x "$$(which po4a 2>/dev/null)" ]; \ then \ echo "E: po4a - command not found"; \ - echo "I: po4a can be optained from:"; \ + echo "I: po4a can be obtained from:"; \ echo "I: http://po4a.alioth.debian.org/"; \ echo "I: On Debian based systems, po4a can be installed with:"; \ echo "I: apt-get install po4a"; \ diff --git a/manpages/bin/update-version.sh b/manpages/bin/update-version.sh index 1f7b7d3..3670d7e 100755 --- a/manpages/bin/update-version.sh +++ b/manpages/bin/update-version.sh @@ -1,7 +1,7 @@ #!/bin/sh ## live-boot(7) - System Boot Scripts -## Copyright (C) 2006-2013 Daniel Baumann +## Copyright (C) 2006-2013 Daniel Baumann ## ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING. ## This is free software, and you are welcome to redistribute it @@ -25,7 +25,7 @@ for MANPAGE in en/* do SECTION="$(basename ${MANPAGE} | awk -F. '{ print $2 }')" - sed -i -e "s|^.TH.*$|.TH ${PROGRAM} ${SECTION} ${DATE} ${VERSION} \"Debian Live Project\"|" ${MANPAGE} + sed -i -e "s|^.TH.*$|.TH ${PROGRAM} ${SECTION} ${DATE} ${VERSION} \"Live Systems Project\"|" ${MANPAGE} done # European date format diff --git a/manpages/de/live-boot.de.7 b/manpages/de/live-boot.de.7 new file mode 100644 index 0000000..cee342f --- /dev/null +++ b/manpages/de/live-boot.de.7 @@ -0,0 +1,284 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-BOOT 7 2013\-05\-27 4.0~a13\-1 "Live Systems Project" + +.SH NAME +\fBlive\-boot\fP \- System Boot Scripts + +.SH DESCRIPTION +\fBlive\-boot\fP contains the scripts that configure a live system during the +boot process (early userspace). +.PP +.\" FIXME +live\-boot is a hook for the initramfs\-tools, used to generate a initramfs +capable to boot live systems, such as those created by +\fIlive\-helper\fP(7). This includes the Live systems ISOs, netboot tarballs, +and usb stick images. +.PP +.\" FIXME +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 +aufs, to boot the system from. + +.SH CONFIGURATION +\fBlive\-boot\fP can be configured through a boot parameter or a configuration +file. +.PP +To configure the live\-boot parameters used by default in a live image, see +the \-\-bootappend\-live option in the \fIlb_config\fP(1) manual page. + +.SS "Kernel Parameters" +\fBlive\-boot\fP is only activated if 'boot=live' was used as a kernel +parameter. +.PP +In addition, there are some more boot parameters to influence the behaviour, +see below. + +.SS "Configuration Files" +\fBlive\-boot\fP can be configured (but not activated) through configuration +files. Those files can be placed either in the root filesystem itself +(/etc/live/boot.conf, /etc/live/boot/*), or on the live media +(live/boot.conf, live/boot/*). + +.SH OPTIONS +.\" FIXME +\fBlive\-boot\fP currently features the following parameters. +.IP \fBaccess\fP=\fIACCESS\fP 4 +Set the accessibility level for physically or visually impaired +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\fP=\fITTY,SPEED\fP 4 +Set the default console to be used with the "live\-getty" option. Example: +"console=ttyS0,115200" +.IP \fBdebug\fP 4 +Makes initramfs boot process more verbose. +.br +Use: debug=1 +.br +Without setting debug to a value the messages may not be shown. +.IP \fBfetch\fP=\fIURL\fP 4 +.IP \fBhttpfs\fP=\fIURL\fP 4 +Another form of netboot by downloading a squashfs image from a given url. +The fetch method copies the image to ram and the httpfs method uses fuse and +httpfs2 to mount the image in place. Copying to ram requires more memory and +might take a long time for large images. However, it is more likely to work +correctly because it does not require networking afterwards and the system +operates faster once booted because it does not require to contact the +server anymore. +.br +Due to current limitations in busybox's wget and DNS resolution, an URL can +not contain a hostname but an IP only. +.br +Not working: http://example.com/path/to/your_filesystem.squashfs +.br +Working: http://1.2.3.4/path/to/your_filesystem.squashfs +.br +Also note that therefore it's currently not possible to fetch an image from +a namebased virtualhost of an httpd if it is sharing the ip with the main +httpd instance. +.br +You may also use the live iso image in place of the squashfs image. +.IP \fBiscsi\fP=\fIserver\-ip[,server\-port];target\-name\fP 4 +Boot from an iSCSI target that has an iso or disk live image as one of its +LUNs. The specified target is searched for a LUN which looks like a live +media. If you use the \fBiscsitarget\fP software iSCSI target solution your +ietd.conf might look like this: +.br +# The target\-name you specify in the iscsi= parameter +.br +Target + Lun 0 Path=,Type=fileio,IOMode=ro + # If you want to boot multiple machines you might want to look at tuning some parameters like + # Wthreads or MaxConnections +.IP \fBfindiso\fP=\fI/PATH/TO/IMAGE\fP 4 +Look for the specified ISO file on all disks where it usually looks for the +\&.squashfs file (so you don't have to know the device name as in +fromiso=....). +.IP \fBfromiso\fP=\fI/PATH/TO/IMAGE\fP 4 +Allows to use a filesystem from within an iso image that's available on +live\-media. +.IP \fBignore_uuid\fP 4 +Do not check that any UUID embedded in the initramfs matches the discovered +medium. live\-boot may be told to generate a UUID by setting +LIVE_GENERATE_UUID=1 when building the initramfs. +.IP \fBverify\-checksums\fP 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\fP=[\fIDEVICE\fP]:[\fICLIENT_IP\fP]:[\fINETMASK\fP]:[\fIGATEWAY_IP\fP]:[\fINAMESERVER\fP] [,[\fIDEVICE\fP]:[\fICLIENT_IP\fP]:[\fINETMASK\fP]:[\fIGATEWAY_IP\fP]:[\fINAMESERVER\fP]]" 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 +(e.g. ip=10.0.0.1::10.0.0.254:255.255.255.0::eth0,:::::eth1:dhcp). +.IP \fBip\fP=[\fIfrommedia\fP] 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 {\fBlive\-media\fP|\fBbootfrom\fP}=\fIDEVICE\fP 4 +If you specify one of this two equivalent forms, live\-boot 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. +.br +Instead of specifing an actual device name, the keyword 'removable' can be +used to limit the search of acceptable live media to removable type +only. Note that if you want to further restrict the media to usb mass +storage only, you can use the 'removable\-usb' keyword. +.IP {\fBlive\-media\-encryption\fP|\fBencryption\fP}=\fITYPE\fP 4 +live\-boot 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\fP=\fIBYTES\fP 4 +This way you could tell live\-boot that your image starts at offset BYTES in +the above specified or autodiscovered device, this could be useful to hide +the live system ISO or image inside another iso or image, to create "clean" +images. +.IP \fBlive\-media\-path\fP=\fIPATH\fP 4 +Sets the path to the live filesystem on the medium. By default, it is set to +\&'/live' and you should not change that unless you have customized your media +accordingly. +.IP \fBlive\-media\-timeout\fP=\fISECONDS\fP 4 +Set the timeout in seconds for the device specified by "live\-media=" to +become ready before giving up. +.IP \fBmodule\fP=\fINAME\fP 4 +Instead of using the default optional file "filesystem.module" (see below) +another file could be specified without the extension ".module"; it should +be placed on "/live" directory of the live medium. +.IP \fBnetboot\fP[=nfs|cifs] 4 +This tells live\-boot 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 \fBnfsopts\fP= 4 +This lets you specify custom nfs options. +.IP \fBnofastboot\fP 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 \fBnopersistence\fP 4 +disables the "persistence" feature, useful if the bootloader (like syslinux) +has been installed with persistence enabled. +.IP \fBnoeject\fP 4 +Do not prompt to eject the live medium. +.IP \fBramdisk\-size\fP 4 +This parameters allows to set a custom ramdisk size (it's the '\-o size' +option of tmpfs mount). By default, there is no ramdisk size set, so the +default of mount applies (currently 50% of available RAM). Note that this +option has no currently no effect when booting with toram. +.IP \fBswapon\fP 4 +This parameter enables usage of local swap partitions. +.IP \fBpersistence\fP 4 +live\-boot will probe devices for persistence media. These can be partitions +(with the correct GPT name), filesystems (with the correct label) or image +files (with the correct file name). Overlays are labeled/named "persistence" +(see \fIpersistence.conf\fP(5)). Overlay image files have extensions which +determines their filesystem, e.g. "persistence.ext4". +.IP "\fBpersistence\-encryption\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4 +This option determines which types of encryption that we allow to be used +when probing devices for persistence media. If "none" is in the list, we +allow unencrypted media; if "luks" is in the list, we allow LUKS\-encrypted +media. Whenever a device containing encrypted media is probed the user will +be prompted for the passphrase. The default value is "none". +.IP \fBpersistence\-media\fP={\fIremovable\fP|\fIremovable\-usb\fP} 4 +If you specify the keyword 'removable', live\-boot will try to find +persistence partitions on removable media only. Note that if you want to +further restrict the media to usb mass storage only, you can use the +\&'removable\-usb' keyword. +.IP "\fBpersistence\-method\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4 +This option determines which types of persistence media we allow. If +"overlay" is in the list, we consider overlays (i.e. "live\-rw" and +"home\-rw"). The default is "overlay". +.IP \fBpersistence\-path\fP=\fIPATH\fP 4 +live\-boot will look for persistency files in the root directory of a +partition, with this parameter, the path can be configured so that you can +have multiple directories on the same partition to store persistency files. +.IP \fBpersistence\-read\-only\fP 4 +Filesystem changes are not saved back to persistence media. In particular, +overlays and netboot NFS mounts are mounted read\-only. +.IP "\fBpersistence\-storage\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4 +This option determines which types of persistence storage to consider when +probing for persistence media. If "filesystem" is in the list, filesystems +with matching labels will be used; if "file" is in the list, all filesystems +will be probed for archives and image files with matching filenames. The +default is "file,filesystem". +.IP \fBpersistence\-label\fP=\fILABEL\fP 4 +live\-boot will use the name "LABEL" instead of "persistence" when searching +for persistent storage. LABEL can be any valid filename, partition label, or +GPT name. +.IP \fBnoeject\fP 4 +This option causes live\-boot to reboot without attempting to eject the media +and without asking the user to remove the boot media. +.IP \fBshowmounts\fP 4 +This parameter will make live\-boot to show on "/" the ro filesystems (mostly +compressed) on "/lib/live". This is not enabled by default because could +lead to problems by applications like "mono" which store binary paths on +installation. +.IP \fBsilent\fP 4 +If you boot with the normal quiet parameter, live\-boot hides most messages +of its own. When adding silent, it hides all. +.IP \fBtodisk\fP=\fIDEVICE\fP 4 +Adding this parameter, live\-boot 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\fP 4 +Adding this parameter, live\-boot 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 \fBunion\fP=aufs|unionfs 4 +.\" FIXME +By default, live\-boot uses aufs. With this parameter, you can switch to +unionfs. + +.\" FIXME +.SH "FILES (old)" +.IP \fB/etc/live.conf\fP 4 +Some variables can be configured via this config file (inside the live +system). +.IP \fBlive/filesystem.module\fP 4 +.\" FIXME +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 aufs, and they will be loaded in the order listed +here. The first entry in this file will be the "lowest" point in the aufs, +and the last file in this list will be on the "top" of the aufs, directly +below /overlay. Without this file, any images in the "/live" directory are +loaded in alphanumeric order. + +.SH FILES +.IP \fB/etc/live/boot.conf\fP 4 +.IP \fB/etc/live/boot/*\fP 4 +.IP \fBlive/boot.conf\fP 4 +.IP \fBlive/boot/*\fP 4 +.IP \fBpersistence.conf\fP 4 + +.SH "SEE ALSO" +\fIpersistence.conf\fP(5) +.PP +\fIlive\-build\fP(7) +.PP +\fIlive\-config\fP(7) +.PP +\fIlive\-tools\fP(7) + +.SH HOMEPAGE +More information about live\-boot and the Live Systems project can be found +on the homepage at <\fIhttp://live\-systems.org/\fP> and in the manual +at <\fIhttp://live\-systems.org/manual/\fP>. + +.SH BUGS +Bugs can be reported by submitting a bugreport for the live\-boot package in +the Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or by +writing a mail to the Live Systems mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-boot was written by Daniel Baumann <\fImail@daniel\-baumann.ch\fP>. diff --git a/manpages/de/persistence.conf.de.5 b/manpages/de/persistence.conf.de.5 new file mode 100644 index 0000000..d6a729d --- /dev/null +++ b/manpages/de/persistence.conf.de.5 @@ -0,0 +1,206 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-BOOT conf 2013\-05\-27 4.0~a13\-1 "Live Systems Project" + +.SH NAME +\fBpersistence.conf\fP \- Configuration file for persistence media in live\-boot + +.SH DESCRIPTION +If live\-boot probes a persistence volume with the label (or GPT name, or +file name, but from now on we will just say "label") "persistence", that +volume's persistence is fully customizable through the \fBpersistence.conf\fP +file stored on the root of its file system. Any such labeled volume must +have such a file, or it will be ignored. +.PP +The format of \fBpersistence.conf\fP allows empty lines and lines starting with +a "#" (used for comments), both which will be ignored. A so called "custom +mount" has the format: +.PP +.RS +\fIDIR\fP [\fIOPTION\fP]... +.RE +.PP +which roughly translates to "make \fIDIR\fP persistence in the way described by +the list of \fIOPTION\fPs". +.PP +For each custom mount \fIDIR\fP must be an absolute path that cannot contain +white spaces or the special . and .. path components, and cannot be /live +(or any of its sub\-directories). Once activated all changes (file deletion, +creation and modification) to \fIDIR\fP on the live file system are stored +persistently into a path equivalent to \fIDIR\fP on the persistence media, +called the source directory. The default way to achieve persistence is to +simply bind\-mount the corresponding source directory to \fIDIR\fP, but this can +be changed through the use of \fIOPTION\fPs. +.PP +All custom mounts will be done in an order so that no two custom mounts can +"hide" each other. For instance, if we have the two \fIDIR\fP:s /a and /a/b it +would always be the case that /a is mounted first, then /a/b. This remains +true no matter how the lines in \fBpersistence.conf\fP are ordered, or if +several \fBpersistence.conf\fP files on different persistence media are used at +the same time. However, it is forbidden for custom mounts to have their +source directory inside the source directory of another custom mount, so the +source directories that are auto\-created by live\-boot does not support +"nested" mounts like /a and /a/b on the same media. In this case you must +use the \fBsource\fP option (see below) to make sure that they are stored in +different source directories. +.PP +When a source directory doesn't exist on the persistence media for a certain +custom mount, it will be created automatically, and permissions and +ownership will be optimistically set according to \fIDIR\fP. It will also be +bootstrapped by copying the contents of the \fIDIR\fP into its source directory +on the persistence media. The bootstrapping will not happen when the \fBlink\fP +or \fBunion\fP options are used (see below). + +.SH OPTIONS +Custom mounts defined in \fBpersistence.conf\fP accept the following options in +a coma\-separated list: +.IP \fBsource\fP=\fIPATH\fP 4 +When given, store the persistence changes into \fIPATH\fP on the persistence +media. \fIPATH\fP must be a relative path (with respect to the persistence +media root) that cannot contain white spaces or the special . or .. path +components, with the exception that it can be just . which means the +persistence media root. This option is mostly relevant if you want to nest +custom mounts, which otherwise would cause errors, or if you want to make +the whole media root available (similar to the now deprecated \fBhome\-rw\fP +type of persistence). +.PP +The following options are mutually exclusive (only the last given one will +be in effect): +.IP \fBbind\fP 4 +Bind\-mount the source directory to \fIDIR\fP. This is the default. +.IP \fBlink\fP 4 +Create the directory structure of the source directory on the persistence +media in \fIDIR\fP and create symbolic links from the corresponding place in +\fIDIR\fP to each file in the source directory. Existing files or directories +with the same name as any link will be overwritten. Note that deleting the +links in \fIDIR\fP will only remove the link, not the corresponding file in the +source; removed links will reappear after a reboot. To permanently add or +delete a file one must do so directly in the source directory. +.IP +Effectively \fBlink\fP will make only files already in the source directory +persistent, not any other files in \fIDIR\fP. These files must be manually +added to the source directory to make use of this option, and they will +appear in \fIDIR\fP in addition to files already there. This option is useful +when only certain files need to be persistent, not the whole directory +they're in, e.g. some configuration files in a user's home directory. +.IP \fBunion\fP 4 +Save the rw branch of a union on the persistence media, so only the changes +are stored persistently. This can potentially reduce disk usage compared to +bind\-mounts, and will not hide files added to the read\-only media. One +caveat is that the union will use \fIDIR\fP from the image's read\-only file +system, not the real file system root, so files created after boot (e.g. by +live\-config) will not appear in the union. This option will use the union +file system specified by live\-boot's \fBunion\fP boot parameter, but is not +supported with \fBunion=unionmount\fP. + +.SH DIRECTORIES +.IP \fB/live/persistence\fP 4 +All persistence volumes will be mounted here (in a directory corresponding +to the device name). The \fBpersistence.conf\fP file can easily be edited +through this mount, as well as any source directories (which is especially +practical for custom mounts using the \fBlink\fP option). + +.SH EXAMPLES + +Let's say we have a persistence volume \fIVOL\fP with the a \fBpersistence.conf\fP +file containing the following four lines (numbered for ease of reference): +.TP 7 +1. +/home/user1 link,source=config\-files/user1 +.TP +2. +/home/user2 link,source=config\-files/user2 +.TP +3. +/home +.TP +4. +/usr union +.PP +The corresponding source directories are: +.TP 7 +1. +\fIVOL\fP/config\-files/user1 (but it would be \fIVOL\fP/home/user1 without the +\fBsource\fP option) +.TP +2. +\fIVOL\fP/config\-files/user2 (but it would be \fIVOL\fP/home/user2 without the +\fBsource\fP option) +.TP +3. +\fIVOL\fP/home +.TP +4. +\fIVOL\fP/usr +.PP +It was necessary to set the \fBsource\fP options for 1 and 2, since they +otherwise would become nested with 3's source, which is invalid. +.PP +Line 3 will be taken care of before line 1 and 2 in order to prevent custom +mounts 1 and 2 from being hidden by 3. When line 3 is handled, \fIVOL\fP/home +is simply bind\-mounted on /home. To illustrate what happens for lines 1 and +2, let's say that the following files exist: +.TP 7 +a. +\fIVOL\fP/config\-files/user1/.emacs +.TP +b. +\fIVOL\fP/config\-files/user2/.bashrc +.TP +c. +\fIVOL\fP/config\-files/user2/.ssh/config +.PP +Then the following links and directories will be created: +.TP 7 +Link: +/home/user1/.emacs \-> \fIVOL\fP/config\-files/user1/.emacs (from a) +.TP +Link: +/home/user2/.bashrc \-> \fIVOL\fP/config\-files/user2/.bashrc (from b) +.TP +Dir: +/homea/user2/.ssh (from c) +.TP +Link: +/home/user2/.ssh/config \-> \fIVOL\fP/config\-files/user2/.ssh/config (from +c) +.PP +One could argue, though, that lines 1 and 2 in the example +\fBpersistence.conf\fP file above are unnecessary since line 3 already would +make all of /home persistent. The \fBlink\fP option is intended for situations +where you don't want a complete directory to be persistent, only certain +files in it or its sub\-directories. +.PP +Line 4 can be mounted at any time since its \fIDIR\fP (and source directory) is +completely disjoint from all the other custom mounts. When mounted, +\fIVOL\fP/usr will be the rw branch due to the \fBunion\fP option, and will only +contain the difference compared to the underlying read\-only file +system. Hence packages could be installed into /usr with great space\-wise +efficiency compared to bind\-mounts, since in the latter case all of /usr +would have to be copied into \fIVOL\fP/usr during the initial bootstrap. + +.SH "SEE ALSO" +\fIlive\-boot\fP(7) +.PP +\fIlive\-build\fP(7) +.PP +\fIlive\-config\fP(7) +.PP +\fIlive\-tools\fP(7) + +.SH HOMEPAGE +More information about live\-boot and the Live Systems project can be found +on the homepage at <\fIhttp://live\-systems.org/\fP> and in the manual +at <\fIhttp://live\-systems.org/manual/\fP>. + +.SH BUGS +Bugs can be reported by submitting a bugreport for the live\-boot package in +the Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or by +writing a mail to the Live Systems mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-boot was written by Daniel Baumann <\fImail@daniel\-baumann.ch\fP>. diff --git a/manpages/en/live-boot.7 b/manpages/en/live-boot.7 index 4cdd0ac..a813190 100644 --- a/manpages/en/live-boot.7 +++ b/manpages/en/live-boot.7 @@ -1,15 +1,15 @@ -.TH LIVE\-BOOT 7 2013\-02\-14 3.0.1-1 "Debian Live Project" +.TH LIVE\-BOOT 7 2013\-05\-27 4.0~a13-1 "Live Systems Project" .SH NAME \fBlive\-boot\fR \- System Boot Scripts .SH DESCRIPTION -\fBlive\-boot\fR contains the scripts that configure a Debian Live system during the boot process (early userspace). +\fBlive\-boot\fR contains the scripts that configure a live system during the boot process (early userspace). .PP .\" FIXME -live\-boot 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. +live\-boot 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 Live systems 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 aufs, for Debian like systems to boot from. +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 aufs, to boot the system from. .\" FIXME .SH CONFIGURATION @@ -58,7 +58,7 @@ Also note that therefore it's currently not possible to fetch an image from a na .br You may also use the live iso image in place of the squashfs image. .IP "\fBiscsi\fR=\fIserver-ip[,server-port];target-name\fR" 4 -Boot from an iSCSI target that has an iso or disk live image as one of its LUNs. The specified target is searched for a LUN which looks like a live media. If you use the \fBiscsitarget\fR software iSCSI target solution which is packaged in Debian your ietd.conf might look like this: +Boot from an iSCSI target that has an iso or disk live image as one of its LUNs. The specified target is searched for a LUN which looks like a live media. If you use the \fBiscsitarget\fR software iSCSI target solution your ietd.conf might look like this: .br # The target-name you specify in the iscsi= parameter .br @@ -85,7 +85,7 @@ Instead of specifing an actual device name, the keyword 'removable' can be used .IP "{\fBlive\-media\-encryption\fR|\fBencryption\fR}=\fITYPE\fI" 4 live\-boot 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\-boot 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. +This way you could tell live\-boot that your image starts at offset BYTES in the above specified or autodiscovered device, this could be useful to hide the live system ISO or image inside another iso or image, to create "clean" images. .IP "\fBlive\-media\-path\fR=\fIPATH\fR" 4 Sets the path to the live filesystem on the medium. By default, it is set to '/live' and you should not change that unless you have customized your media accordingly. .IP "\fBlive\-media\-timeout\fR=\fISECONDS\fI" 4 @@ -121,8 +121,8 @@ Filesystem changes are not saved back to persistence media. In particular, overl .IP "\fBpersistence\-storage\fR=\fITYPE1\fR,\fITYPE2\fR ... \fITYPEn\fR" 4 This option determines which types of persistence storage to consider when probing for persistence media. If "filesystem" is in the list, filesystems with matching labels will be used; if "file" is in the list, all filesystems will be probed for archives and image files with matching filenames. The default is "file,filesystem". .IP "\fBpersistence\-label\fR=\fILABEL\fR" 4 -live-boot will use the name "LABEL" instead of "persistence" when searching for persistent storage. LABEL can be any valid filename, partition label, or GPT name. This option replaces the less flexible persistent\-subtext option from version 2 of live-boot. If you wish to continue using legacy names for persistent storage, use the full name with this option, e.g. persistence\-label=live-rw-foo -.IP "\fBquickreboot\fR" 4 +live-boot will use the name "LABEL" instead of "persistence" when searching for persistent storage. LABEL can be any valid filename, partition label, or GPT name. +.IP "\fBnoeject\fR" 4 This option causes live\-boot 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\-boot to show on "/" the ro filesystems (mostly compressed) on "/lib/live". This is not enabled by default because could lead to problems by applications like "mono" which store binary paths on installation. @@ -161,10 +161,10 @@ This optional file (inside the live media) contains a list of white\-space or ca \fIlive\-tools\fR(7) .SH HOMEPAGE -More information about live\-boot and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. +More information about live\-boot and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. .SH BUGS -Bugs can be reported by submitting a bugreport for the live\-boot package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@lists.debian.org\fR>. +Bugs can be reported by submitting a bugreport for the live\-boot package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. .SH AUTHOR -live\-boot was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project. +live\-boot was written by Daniel Baumann <\fImail@daniel-baumann.ch\fR>. diff --git a/manpages/en/persistence.conf.5 b/manpages/en/persistence.conf.5 index f31a57a..fefb604 100644 --- a/manpages/en/persistence.conf.5 +++ b/manpages/en/persistence.conf.5 @@ -1,4 +1,4 @@ -.TH LIVE\-BOOT conf 2013\-02\-14 3.0.1-1 "Debian Live Project" +.TH LIVE\-BOOT conf 2013\-05\-27 4.0~a13-1 "Live Systems Project" .SH NAME \fBpersistence.conf\fR \- Configuration file for persistence media in @@ -198,16 +198,10 @@ copied into \fIVOL\fR/usr during the initial bootstrap. \fIlive\-tools\fR(7) .SH HOMEPAGE -More information about live\-boot and the Debian Live project can be -found on the homepage at <\fIhttp://live.debian.net/\fR> and in the -manual at <\fIhttp://live.debian.net/manual/\fR>. +More information about live\-boot and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. .SH BUGS -Bugs can be reported by submitting a bugreport for the live\-boot -package in the Debian Bug Tracking System at -<\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian -Live mailing list at <\fIdebian-live@lists.debian.org\fR>. +Bugs can be reported by submitting a bugreport for the live\-boot package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. .SH AUTHOR -persistence.conf was written by anonym <\fIanonym@lavabit.com\fR> for the -Debian project. +live\-boot was written by Daniel Baumann <\fImail@daniel-baumann.ch\fR>. diff --git a/manpages/es/live-boot.es.7 b/manpages/es/live-boot.es.7 index a175d05..6b773db 100644 --- a/manpages/es/live-boot.es.7 +++ b/manpages/es/live-boot.es.7 @@ -3,27 +3,27 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BOOT 7 14.02.2013 3.0.1\-1 "Proyecto Debian Live" +.TH LIVE\-BOOT 7 2013\-05\-27 4.0~a13\-1 "Proyecto Live Systems" .SH NOMBRE \fBlive\-boot\fP \- Scripts de Arranque del Sistema .SH DESCRIPCIÓN -\fBlive\-boot\fP contiene los scripts que configuran un sistema Debian Live -durante el proceso de arranque (early userspace). +\fBlive\-boot\fP contiene los scripts que configuran un sistema en vivo durante +el proceso de arranque (early userspace). .PP .\" FIXME live\-boot es un hook para initramfs\-tools, usado para generar un initramfs capaz de arrancar sistemas en vivo, tales como los creados por -\fIlive\-helper\fP(7). Esto incluye las isos de Debian Live, netboot tarballs e -imágenes para llaves usb. +\fIlive\-helper\fP(7). Esto incluye las ISOs de Live Systems, netboot tarballs y +las imágenes para llaves usb. .PP .\" FIXME En el momento del arranque se buscará un dispositivo de sólo lectura que contenga un directorio "/live" dónde se almacena un sistema de ficheros raíz (a menudo se trata de una imagen comprimida de un sistema de ficheros como squashfs). Si live\-boot lo encuentra, creará un entorno de escritura, usando -aufs, a partir del cual pueda arrancar un sistema Debian u otro similar. +aufs, a partir del cual pueda arrancar un sistema. .SH CONFIGURACIÓN \fBlive\-boot\fP se puede configurar mediante un parámetro de arranque o un @@ -89,11 +89,10 @@ compartiendo la ip con la instancia principal httpd. También se puede utilizar la imagen iso en vivo en lugar de la imagen squashfs. .IP \fBiscsi\fP=\fIserver\-ip[,server\-port];target\-name\fP 4 -Arranca desde un objetivo iSCSI que tiene una iso o una imagen disco en vivo -como uno de sus LUNs. Se busca en el objetivo especificado un LUN que sea -similar a un medio en vivo. Si se utiliza el software \fBiscsitarget\fP del -objetivo iSCSI que se encuentra disponible en un paquete Debian la ietd.conf -podría ser similar al siguiente: +Arranca desde un iSCSI que tiene una iso o una imagen de disco en vivo como +uno de sus LUNs. Se busca en el objetivo especificado un LUN que sea similar +a un medio en vivo. Si se utiliza el software de iSCSI \fBiscsitarget\fP el +ietd.conf podría ser similar al siguiente: .br # El nombre de destino se especifica en el parámetro iscsi= .br @@ -145,8 +144,8 @@ soportado es "aes" para cifrado loop\-aes. .IP \fBlive\-media\-offset\fP=\fIBYTES\fP 4 De esta manera se puede especificar a live\-boot que la imagen comienza en BYTES en el dispositivo anteriormente especificado, o auto\-descubierto, esto -podría ser útil para esconder la iso o la imagen Debian Live dentro de otra -iso o imagen, para crear imágenes "limpias". +podría ser útil para esconder la iso o la imagen dentro de otra iso o +imagen, para crear imágenes "limpias". .IP \fBlive\-media\-path\fP=\fIPATH\fP 4 Establece la ruta de acceso al sistema de ficheros en vivo en el medio. De forma predeterminada está en '/live' y no se debe cambiar a menos que se @@ -226,7 +225,7 @@ correspondientes. Por defecto es "file,filesystem". live\-boot utilizará el nombre "LABEL" en lugar de "persistence" cuando busque medios de almacenamiento persistente. LABEL puede ser cualquier nombre de fichero, etiqueta de una partición or nombre GPT. -.IP \fBquickreboot\fP 4 +.IP \fBnoeject\fP 4 Esta opción hace que live\-boot reinicie sin tratar de expulsar los medios y sin pedirle al usuario que extraiga el dispositivo usado para arrancar. .IP \fBshowmounts\fP 4 @@ -288,17 +287,17 @@ alfanumérico. \fIlive\-tools\fP(7) .SH "PÁGINA WEB" -Se puede encontrar más información acerca de live\-boot y el proyecto Debian -Live en la página web <\fIhttp://live.debian.net/\fP> y en el manual en -<\fIhttp://live.debian.net/manual/\fP>. +Se puede encontrar más información acerca de live\-boot y el proyecto Live +Systems en la página web <\fIhttp://live\-systems.org/\fP> y en el +manual en <\fIhttp://live\-systems.org/manual/\fP>. .SH ERRORES Se puede notificar los fallos enviando un informe de errores sobre el -paquete live\-boot en el Debian Bug Tracking System en +paquete live\-boot al Sistema de Seguimiento de Errores en <\fIhttp://bugs.debian.org/\fP> o escribiendo un mensaje a la lista de -correo de Debian Live a la dirección +correo de Live Systems a la dirección <\fIdebian\-live@lists.debian.org\fP>. .SH AUTOR -live\-boot fue escrito por Daniel Baumann <\fIdaniel@debian.org\fP> para -el proyecto Debian. +live\-boot fue escrito por Daniel Baumann +<\fImail@daniel\-baumann.ch\fP>. diff --git a/manpages/es/persistence.conf.es.5 b/manpages/es/persistence.conf.es.5 index 3737585..78ba406 100644 --- a/manpages/es/persistence.conf.es.5 +++ b/manpages/es/persistence.conf.es.5 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BOOT conf 14.02.2013 3.0.1\-1 "Proyecto Debian Live" +.TH LIVE\-BOOT conf 2013\-05\-27 4.0~a13\-1 "Proyecto Live Systems" .SH NOMBRE \fBpersistence.conf\fP \- Fichero para configurar medios de almacenamiento con @@ -209,17 +209,17 @@ tendría que ser copiado en \fIVOL\fP/usr durante la preinstalación inicial. \fIlive\-tools\fP(7) .SH "PÁGINA WEB" -Se puede encontrar más información acerca de live\-boot y el proyecto Debian -Live en la página web <\fIhttp://live.debian.net/\fP> y en el manual en -<\fIhttp://live.debian.net/manual/\fP>. +Se puede encontrar más información acerca de live\-boot y el proyecto Live +Systems en la página web <\fIhttp://live\-systems.org/\fP> y en el +manual en <\fIhttp://live\-systems.org/manual/\fP>. .SH ERRORES Se puede notificar los fallos enviando un informe de errores sobre el -paquete live\-boot en el Debian Bug Tracking System en +paquete live\-boot al Sistema de Seguimiento de Errores en <\fIhttp://bugs.debian.org/\fP> o escribiendo un mensaje a la lista de -correo de Debian Live a la dirección +correo de Live Systems a la dirección <\fIdebian\-live@lists.debian.org\fP>. .SH AUTOR -persistence.conf fue escrito por anonym <\fIanonym@lavabit.com\fP> para -el proyecto Debian. +live\-boot fue escrito por Daniel Baumann +<\fImail@daniel\-baumann.ch\fP>. diff --git a/manpages/po/de/live-boot.7.po b/manpages/po/de/live-boot.7.po new file mode 100644 index 0000000..66c7725 --- /dev/null +++ b/manpages/po/de/live-boot.7.po @@ -0,0 +1,887 @@ +# German translations for live-boot package +# Copyright (C) 2006-2013 Daniel Baumann +# This file is distributed under the same license as the live-boot package. +# +msgid "" +msgstr "" +"Project-Id-Version: live-boot 4.0~a13-1\n" +"POT-Creation-Date: 2013-05-27 16:45+0300\n" +"PO-Revision-Date: 2013-04-13 16:48+0100\n" +"Last-Translator: Carlos Zuferri \n" +"Language-Team: none\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/live-boot.7:1 en/persistence.conf.5:1 +#, no-wrap +msgid "LIVE-BOOT" +msgstr "" + +#. type: TH +#: en/live-boot.7:1 en/persistence.conf.5:1 +msgid "2013-05-27" +msgstr "27.05.2013" + +#. type: TH +#: en/live-boot.7:1 en/persistence.conf.5:1 +msgid "4.0~a13-1" +msgstr "4.0~a13-1" + +#. type: TH +#: en/live-boot.7:1 en/persistence.conf.5:1 +#, no-wrap +msgid "Live Systems Project" +msgstr "" + +#. type: SH +#: en/live-boot.7:3 en/persistence.conf.5:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:5 +msgid "B - System Boot Scripts" +msgstr "" + +#. type: SH +#: en/live-boot.7:6 en/persistence.conf.5:7 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:8 +msgid "" +"B contains the scripts that configure a live system during the " +"boot process (early userspace)." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-boot.7:11 +msgid "" +"live-boot is a hook for the initramfs-tools, used to generate a initramfs " +"capable to boot live systems, such as those created by I(7). " +"This includes the Live systems ISOs, netboot tarballs, and usb stick images." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-boot.7:14 +msgid "" +"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 " +"aufs, to boot the system from." +msgstr "" + +#. type: SH +#: en/live-boot.7:15 +#, no-wrap +msgid "CONFIGURATION" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:17 +msgid "" +"B can be configured through a boot parameter or a configuration " +"file." +msgstr "" + +#. type: Plain text +#: en/live-boot.7:19 +msgid "" +"To configure the live-boot parameters used by default in a live image, see " +"the --bootappend-live option in the I(1) manual page." +msgstr "" + +#. type: SS +#: en/live-boot.7:20 +#, no-wrap +msgid "Kernel Parameters" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:22 +msgid "" +"B is only activated if 'boot=live' was used as a kernel parameter." +msgstr "" + +#. type: Plain text +#: en/live-boot.7:24 +msgid "" +"In addition, there are some more boot parameters to influence the behaviour, " +"see below." +msgstr "" + +#. type: SS +#: en/live-boot.7:25 +#, no-wrap +msgid "Configuration Files" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:27 +msgid "" +"B can be configured (but not activated) through configuration " +"files. Those files can be placed either in the root filesystem itself (/etc/" +"live/boot.conf, /etc/live/boot/*), or on the live media (live/boot.conf, " +"live/boot/*)." +msgstr "" + +#. type: SH +#: en/live-boot.7:28 en/persistence.conf.5:57 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-boot.7:31 +msgid "B currently features the following parameters." +msgstr "" + +#. type: IP +#: en/live-boot.7:31 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:33 +msgid "" +"Set the accessibility level for physically or visually impaired 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." +msgstr "" + +#. type: IP +#: en/live-boot.7:33 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:35 +msgid "" +"Set the default console to be used with the \"live-getty\" option. Example: " +"\"console=ttyS0,115200\"" +msgstr "" + +#. type: IP +#: en/live-boot.7:35 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:37 +msgid "Makes initramfs boot process more verbose." +msgstr "" + +#. type: Plain text +#: en/live-boot.7:39 +msgid "Use: debug=1" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:41 +msgid "Without setting debug to a value the messages may not be shown." +msgstr "" + +#. type: IP +#: en/live-boot.7:41 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: IP +#: en/live-boot.7:42 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:50 +msgid "" +"Another form of netboot by downloading a squashfs image from a given url. " +"The fetch method copies the image to ram and the httpfs method uses fuse and " +"httpfs2 to mount the image in place. Copying to ram requires more memory and " +"might take a long time for large images. However, it is more likely to work " +"correctly because it does not require networking afterwards and the system " +"operates faster once booted because it does not require to contact the " +"server anymore." +msgstr "" + +#. type: Plain text +#: en/live-boot.7:52 +msgid "" +"Due to current limitations in busybox's wget and DNS resolution, an URL can " +"not contain a hostname but an IP only." +msgstr "" + +#. type: Plain text +#: en/live-boot.7:54 +msgid "Not working: http://example.com/path/to/your_filesystem.squashfs" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:56 +msgid "Working: http://1.2.3.4/path/to/your_filesystem.squashfs" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:58 +msgid "" +"Also note that therefore it's currently not possible to fetch an image from " +"a namebased virtualhost of an httpd if it is sharing the ip with the main " +"httpd instance." +msgstr "" + +#. type: Plain text +#: en/live-boot.7:60 +msgid "You may also use the live iso image in place of the squashfs image." +msgstr "" + +#. type: IP +#: en/live-boot.7:60 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:62 +msgid "" +"Boot from an iSCSI target that has an iso or disk live image as one of its " +"LUNs. The specified target is searched for a LUN which looks like a live " +"media. If you use the B software iSCSI target solution your " +"ietd.conf might look like this:" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:64 +msgid "# The target-name you specify in the iscsi= parameter" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:69 +#, no-wrap +msgid "" +"Target Etarget-nameE\n" +" Lun 0 Path=Epath-to-your-live-image.isoE,Type=fileio,IOMode=ro\n" +" # If you want to boot multiple machines you might want to look at tuning some parameters like\n" +" # Wthreads or MaxConnections\n" +msgstr "" + +#. type: IP +#: en/live-boot.7:69 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:71 +msgid "" +"Look for the specified ISO file on all disks where it usually looks for the ." +"squashfs file (so you don't have to know the device name as in fromiso=....)." +msgstr "" + +#. type: IP +#: en/live-boot.7:71 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:73 +msgid "" +"Allows to use a filesystem from within an iso image that's available on live-" +"media." +msgstr "" + +#. type: IP +#: en/live-boot.7:73 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:75 +msgid "" +"Do not check that any UUID embedded in the initramfs matches the discovered " +"medium. live-boot may be told to generate a UUID by setting " +"LIVE_GENERATE_UUID=1 when building the initramfs." +msgstr "" + +#. type: IP +#: en/live-boot.7:75 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:77 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/live-boot.7:77 +#, no-wrap +msgid "B=[I]:[I]:[I]:[I]:[I] [,[I]:[I]:[I]:[I]:[I]]" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:79 +msgid "" +"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 (e.g. ip=10.0.0.1::10.0.0.254:255.255.255.0::" +"eth0,:::::eth1:dhcp)." +msgstr "" + +#. type: IP +#: en/live-boot.7:79 +#, no-wrap +msgid "B=[I]" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:81 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/live-boot.7:81 +#, no-wrap +msgid "{B|B}=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:83 +msgid "" +"If you specify one of this two equivalent forms, live-boot 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." +msgstr "" + +#. type: Plain text +#: en/live-boot.7:85 +msgid "" +"Instead of specifing an actual device name, the keyword 'removable' can be " +"used to limit the search of acceptable live media to removable type only. " +"Note that if you want to further restrict the media to usb mass storage " +"only, you can use the 'removable-usb' keyword." +msgstr "" + +#. type: IP +#: en/live-boot.7:85 +#, no-wrap +msgid "{B|B}=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:87 +msgid "" +"live-boot 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." +msgstr "" + +#. type: IP +#: en/live-boot.7:87 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:89 +msgid "" +"This way you could tell live-boot that your image starts at offset BYTES in " +"the above specified or autodiscovered device, this could be useful to hide " +"the live system ISO or image inside another iso or image, to create \"clean" +"\" images." +msgstr "" + +#. type: IP +#: en/live-boot.7:89 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:91 +msgid "" +"Sets the path to the live filesystem on the medium. By default, it is set to " +"'/live' and you should not change that unless you have customized your media " +"accordingly." +msgstr "" + +#. type: IP +#: en/live-boot.7:91 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:93 +msgid "" +"Set the timeout in seconds for the device specified by \"live-media=\" to " +"become ready before giving up." +msgstr "" + +#. type: IP +#: en/live-boot.7:93 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:95 +msgid "" +"Instead of using the default optional file \"filesystem.module\" (see below) " +"another file could be specified without the extension \".module\"; it should " +"be placed on \"/live\" directory of the live medium." +msgstr "" + +#. type: IP +#: en/live-boot.7:95 +#, no-wrap +msgid "B[=nfs|cifs]" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:97 +msgid "" +"This tells live-boot 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." +msgstr "" + +#. type: IP +#: en/live-boot.7:97 +#, no-wrap +msgid "B=" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:99 +msgid "This lets you specify custom nfs options." +msgstr "" + +#. type: IP +#: en/live-boot.7:99 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:101 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/live-boot.7:101 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:103 +msgid "" +"disables the \"persistence\" feature, useful if the bootloader (like " +"syslinux) has been installed with persistence enabled." +msgstr "" + +#. type: IP +#: en/live-boot.7:103 en/live-boot.7:125 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:105 +msgid "Do not prompt to eject the live medium." +msgstr "" + +#. type: IP +#: en/live-boot.7:105 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:107 +msgid "" +"This parameters allows to set a custom ramdisk size (it's the '-o size' " +"option of tmpfs mount). By default, there is no ramdisk size set, so the " +"default of mount applies (currently 50% of available RAM). Note that this " +"option has no currently no effect when booting with toram." +msgstr "" + +#. type: IP +#: en/live-boot.7:107 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:109 +msgid "This parameter enables usage of local swap partitions." +msgstr "" + +#. type: IP +#: en/live-boot.7:109 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:111 +msgid "" +"live-boot will probe devices for persistence media. These can be partitions " +"(with the correct GPT name), filesystems (with the correct label) or image " +"files (with the correct file name). Overlays are labeled/named \"persistence" +"\" (see I(5)). Overlay image files have extensions which " +"determines their filesystem, e.g. \"persistence.ext4\"." +msgstr "" + +#. type: IP +#: en/live-boot.7:111 +#, no-wrap +msgid "B=I,I ... I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:113 +msgid "" +"This option determines which types of encryption that we allow to be used " +"when probing devices for persistence media. If \"none\" is in the list, we " +"allow unencrypted media; if \"luks\" is in the list, we allow LUKS-encrypted " +"media. Whenever a device containing encrypted media is probed the user will " +"be prompted for the passphrase. The default value is \"none\"." +msgstr "" + +#. type: IP +#: en/live-boot.7:113 +#, no-wrap +msgid "B={I|I}" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:115 +msgid "" +"If you specify the keyword 'removable', live-boot will try to find " +"persistence partitions on removable media only. Note that if you want to " +"further restrict the media to usb mass storage only, you can use the " +"'removable-usb' keyword." +msgstr "" + +#. type: IP +#: en/live-boot.7:115 +#, no-wrap +msgid "B=I,I ... I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:117 +msgid "" +"This option determines which types of persistence media we allow. If " +"\"overlay\" is in the list, we consider overlays (i.e. \"live-rw\" and " +"\"home-rw\"). The default is \"overlay\"." +msgstr "" + +#. type: IP +#: en/live-boot.7:117 +#, no-wrap +msgid "B=I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:119 +msgid "" +"live-boot will look for persistency files in the root directory of a " +"partition, with this parameter, the path can be configured so that you can " +"have multiple directories on the same partition to store persistency files." +msgstr "" + +#. type: IP +#: en/live-boot.7:119 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:121 +msgid "" +"Filesystem changes are not saved back to persistence media. In particular, " +"overlays and netboot NFS mounts are mounted read-only." +msgstr "" + +#. type: IP +#: en/live-boot.7:121 +#, no-wrap +msgid "B=I,I ... I" +msgstr "" + +#. type: Plain text +#: en/live-boot.7:123 +msgid "" +"This option determines which types of persistence storage to consider when " +"probing for persistence media. If \"filesystem\" is in the list, filesystems " +"with matching labels will be used; if \"file\" is in the list, all " +"filesystems will be probed for archives and image files with matching " +"filenames. The default is \"file,filesystem\"." +msgstr "" + +#. type: IP +#: en/live-boot.7:123 +#, no-wrap +msgid "B=I