[Debian-live-changes] r2583 - in releases/live-initramfs: . 1.91.6-1 1.91.6-1/bin 1.91.6-1/debian 1.91.6-1/docs 1.91.6-1/hooks 1.91.6-1/scripts/live-bottom
daniel at alioth.debian.org
daniel at alioth.debian.org
Thu Jul 26 18:06:18 UTC 2007
Author: daniel
Date: 2007-07-26 18:06:18 +0000 (Thu, 26 Jul 2007)
New Revision: 2583
Added:
releases/live-initramfs/1.91.6-1/
releases/live-initramfs/1.91.6-1/Makefile
releases/live-initramfs/1.91.6-1/debian/changelog
releases/live-initramfs/1.91.6-1/debian/control
releases/live-initramfs/1.91.6-1/debian/copyright
releases/live-initramfs/1.91.6-1/debian/rules
releases/live-initramfs/1.91.6-1/docs/ChangeLog
releases/live-initramfs/1.91.6-1/hooks/live
releases/live-initramfs/1.91.6-1/scripts/live-bottom/01integrity_check
Removed:
releases/live-initramfs/1.91.6-1/Makefile
releases/live-initramfs/1.91.6-1/bin/live-md5check/
releases/live-initramfs/1.91.6-1/debian/changelog
releases/live-initramfs/1.91.6-1/debian/control
releases/live-initramfs/1.91.6-1/debian/copyright
releases/live-initramfs/1.91.6-1/debian/rules
releases/live-initramfs/1.91.6-1/docs/ChangeLog
releases/live-initramfs/1.91.6-1/hooks/live
releases/live-initramfs/1.91.6-1/scripts/live-bottom/01integrity_check
Log:
Copied: releases/live-initramfs/1.91.6-1 (from rev 2579, dists/trunk/live-initramfs)
Deleted: releases/live-initramfs/1.91.6-1/Makefile
===================================================================
--- dists/trunk/live-initramfs/Makefile 2007-07-26 09:01:51 UTC (rev 2579)
+++ releases/live-initramfs/1.91.6-1/Makefile 2007-07-26 18:06:18 UTC (rev 2583)
@@ -1,133 +0,0 @@
-# Makefile
-
-CFLAGS = -Wall -g -O2
-BUILD_SYSTEM := $(shell lsb_release --short --id)
-
-TRANSLATIONS="it"
-
-all: build
-
-test:
- set -e; for SCRIPT in hooks/* scripts/live scripts/live-functions scripts/live-helpers scripts/*/*; \
- do \
- sh -n $$SCRIPT; \
- done
-
-build:
- # Setting BUILD_SYSTEM
- sed -e 's/\(BUILD_SYSTEM="\).*"/\1'$(BUILD_SYSTEM)'"/g' conf/live.conf > live.conf
-
- # Building live-md5check
- CFLAGS="$(CFLAGS)" $(MAKE) -C bin/live-md5check
-
-install: test build
- # Installing configuration
- install -D -m 0644 live.conf $(DESTDIR)/etc/live.conf
-
- # Installing live-md5check
- install -D -m 0755 bin/live-md5check/live-md5check $(DESTDIR)/usr/lib/live-initramfs/live-md5check
-
- # Installing executables
- mkdir -p $(DESTDIR)/sbin
- cp bin/live-getty bin/live-login bin/live-snapshot $(DESTDIR)/sbin
-
- mkdir -p $(DESTDIR)/usr/share/live-initramfs
- cp bin/live-preseed bin/live-reconfigure $(DESTDIR)/usr/share/live-initramfs
-
- mkdir -p $(DESTDIR)/usr/share/initramfs-tools
- cp -r hooks scripts $(DESTDIR)/usr/share/initramfs-tools
-
- # Installing documentation
- mkdir -p $(DESTDIR)/usr/share/doc/live-initramfs
- cp -r COPYING docs/* $(DESTDIR)/usr/share/doc/live-initramfs
-
- mkdir -p $(DESTDIR)/usr/share/doc/live-initramfs/examples
- cp -r conf/live.conf $(DESTDIR)/usr/share/doc/live-initramfs/examples
-
- # Installing manpages
- set -e; for MANPAGE in manpages/*.en.1; \
- do \
- install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man1/`basename $$MANPAGE .en.1`.1; \
- done
-
- set -e; for MANPAGE in manpages/*.en.7; \
- do \
- install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man7/`basename $$MANPAGE .en.7`.7; \
- done
-
- set -e; for TRANSLATIONS in $$TRANSLATIONS; \
- do \
- for MANPAGE in manpages/*.$$TRANSLATION.1; \
- do \
- install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/`basename $$MANPAGE .$$TRANSLATION.1`.1; \
- done; \
- for MANPAGE in manpages/*.$$TRANSLATION.7; \
- do \
- install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/`basename $$MANPAGE .$$TRANSLATION.7`.7; \
- done; \
- done
-
- # Temporary symlinks
- ln -sf live-initramfs.7.gz $(DESTDIR)/usr/share/man/man7/live-getty.7.gz
- ln -sf live-initramfs.7.gz $(DESTDIR)/usr/share/man/man7/live-login.7.gz
-
-uninstall:
- # Uninstalling configuration
- rm -f $(DESTDIR)/etc/live.conf
-
- # Uninstalling live-md5check
- rm -rf $(DESTDIR)/usr/lib/live-initramfs
-
- # Uninstalling executables
- rm -f $(DESTDIR)/sbin/live-getty $(DESTDIR)/sbin/live-login $(DESTDIR)/sbin/live-snapshot
- rm -rf $(DESTDIR)/usr/share/live-initramfs
- rm -f $(DESTDIR)/usr/share/initramfs-tools/hooks/live
- rm -rf $(DESTDIR)/usr/share/initramfs-tools/scripts/live*
- rm -f $(DESTDIR)/usr/share/initramfs-tools/scripts/local-top/live
-
- # Uninstalling documentation
- rm -rf $(DESTDIR)/usr/share/doc/live-initramfs
-
- # Uninstalling manpages
- set -e; for MANPAGE in manpages/*.en.1; \
- do \
- rm -f $(DESTDIR)/usr/share/man/man1/`basename $$MANPAGE .en.1`.1; \
- done
-
- set -e; for MANPAGE in manpages/*.en.7; \
- do \
- rm -f $(DESTDIR)/usr/share/man/man7/`basename $$MANPAGE .en.7`.7; \
- done
-
- set -e; for TRANSLATIONS in $$TRANSLATIONS; \
- do \
- for MANPAGE in manpages/*.$$TRANSLATION.1; \
- do \
- install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/`basename $$MANPAGE .$$TRANSLATION.1`.1; \
- done; \
- for MANPAGE in manpages/*.$$TRANSLATION.7; \
- do \
- install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/`basename $$MANPAGE .$$TRANSLATION.7`.7; \
- done; \
- done
-
- # Temporary symlinks
- rm -f $(DESTDIR)/usr/share/man/man7/live-getty.7.gz
- rm -f $(DESTDIR)/usr/share/man/man7/live-login.7.gz
-
-update:
- set -e; for FILE in docs/parameters.txt manpages/*.en.*; \
- do \
- sed -i -e 's/2007\\-07\\-23/2007\\-07\\-30/' \
- -e 's/23.07.2007/30.07.2007/' \
- -e 's/1.91.6/1.91.7/' \
- $$FILE; \
- done
-
-clean:
- rm -f live.conf
- $(MAKE) -C bin/live-md5check clean
-
-distclean:
-
-reinstall: uninstall install
Copied: releases/live-initramfs/1.91.6-1/Makefile (from rev 2581, dists/trunk/live-initramfs/Makefile)
===================================================================
--- releases/live-initramfs/1.91.6-1/Makefile (rev 0)
+++ releases/live-initramfs/1.91.6-1/Makefile 2007-07-26 18:06:18 UTC (rev 2583)
@@ -0,0 +1,122 @@
+# Makefile
+
+BUILD_SYSTEM := $(shell lsb_release --short --id)
+
+TRANSLATIONS="it"
+
+all: build
+
+test:
+ set -e; for SCRIPT in hooks/* scripts/live scripts/live-functions scripts/live-helpers scripts/*/*; \
+ do \
+ sh -n $$SCRIPT; \
+ done
+
+build:
+ # Setting BUILD_SYSTEM
+ sed -e 's/\(BUILD_SYSTEM="\).*"/\1'$(BUILD_SYSTEM)'"/g' conf/live.conf > live.conf
+
+install: test build
+ # Installing configuration
+ install -D -m 0644 live.conf $(DESTDIR)/etc/live.conf
+
+ # Installing executables
+ mkdir -p $(DESTDIR)/sbin
+ cp bin/live-getty bin/live-login bin/live-snapshot $(DESTDIR)/sbin
+
+ mkdir -p $(DESTDIR)/usr/share/live-initramfs
+ cp bin/live-preseed bin/live-reconfigure $(DESTDIR)/usr/share/live-initramfs
+
+ mkdir -p $(DESTDIR)/usr/share/initramfs-tools
+ cp -r hooks scripts $(DESTDIR)/usr/share/initramfs-tools
+
+ # Installing documentation
+ mkdir -p $(DESTDIR)/usr/share/doc/live-initramfs
+ cp -r COPYING docs/* $(DESTDIR)/usr/share/doc/live-initramfs
+
+ mkdir -p $(DESTDIR)/usr/share/doc/live-initramfs/examples
+ cp -r conf/live.conf $(DESTDIR)/usr/share/doc/live-initramfs/examples
+
+ # Installing manpages
+ set -e; for MANPAGE in manpages/*.en.1; \
+ do \
+ install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man1/`basename $$MANPAGE .en.1`.1; \
+ done
+
+ set -e; for MANPAGE in manpages/*.en.7; \
+ do \
+ install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man7/`basename $$MANPAGE .en.7`.7; \
+ done
+
+ set -e; for TRANSLATIONS in $$TRANSLATIONS; \
+ do \
+ for MANPAGE in manpages/*.$$TRANSLATION.1; \
+ do \
+ install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/`basename $$MANPAGE .$$TRANSLATION.1`.1; \
+ done; \
+ for MANPAGE in manpages/*.$$TRANSLATION.7; \
+ do \
+ install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/`basename $$MANPAGE .$$TRANSLATION.7`.7; \
+ done; \
+ done
+
+ # Temporary symlinks
+ ln -sf live-initramfs.7.gz $(DESTDIR)/usr/share/man/man7/live-getty.7.gz
+ ln -sf live-initramfs.7.gz $(DESTDIR)/usr/share/man/man7/live-login.7.gz
+
+uninstall:
+ # Uninstalling configuration
+ rm -f $(DESTDIR)/etc/live.conf
+
+ # Uninstalling executables
+ rm -f $(DESTDIR)/sbin/live-getty $(DESTDIR)/sbin/live-login $(DESTDIR)/sbin/live-snapshot
+ rm -rf $(DESTDIR)/usr/share/live-initramfs
+ rm -f $(DESTDIR)/usr/share/initramfs-tools/hooks/live
+ rm -rf $(DESTDIR)/usr/share/initramfs-tools/scripts/live*
+ rm -f $(DESTDIR)/usr/share/initramfs-tools/scripts/local-top/live
+
+ # Uninstalling documentation
+ rm -rf $(DESTDIR)/usr/share/doc/live-initramfs
+
+ # Uninstalling manpages
+ set -e; for MANPAGE in manpages/*.en.1; \
+ do \
+ rm -f $(DESTDIR)/usr/share/man/man1/`basename $$MANPAGE .en.1`.1; \
+ done
+
+ set -e; for MANPAGE in manpages/*.en.7; \
+ do \
+ rm -f $(DESTDIR)/usr/share/man/man7/`basename $$MANPAGE .en.7`.7; \
+ done
+
+ set -e; for TRANSLATIONS in $$TRANSLATIONS; \
+ do \
+ for MANPAGE in manpages/*.$$TRANSLATION.1; \
+ do \
+ install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/`basename $$MANPAGE .$$TRANSLATION.1`.1; \
+ done; \
+ for MANPAGE in manpages/*.$$TRANSLATION.7; \
+ do \
+ install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/`basename $$MANPAGE .$$TRANSLATION.7`.7; \
+ done; \
+ done
+
+ # Temporary symlinks
+ rm -f $(DESTDIR)/usr/share/man/man7/live-getty.7.gz
+ rm -f $(DESTDIR)/usr/share/man/man7/live-login.7.gz
+
+update:
+ set -e; for FILE in docs/parameters.txt manpages/*.en.*; \
+ do \
+ sed -i -e 's/2007\\-07\\-23/2007\\-07\\-30/' \
+ -e 's/23.07.2007/30.07.2007/' \
+ -e 's/1.91.6/1.91.7/' \
+ $$FILE; \
+ done
+
+clean:
+ rm -f live.conf
+
+distclean:
+
+reinstall: uninstall install
Deleted: releases/live-initramfs/1.91.6-1/debian/changelog
===================================================================
--- dists/trunk/live-initramfs/debian/changelog 2007-07-26 09:01:51 UTC (rev 2579)
+++ releases/live-initramfs/1.91.6-1/debian/changelog 2007-07-26 18:06:18 UTC (rev 2583)
@@ -1,78 +0,0 @@
-live-initramfs (1.91.6-1) UNRELEASED; urgency=medium
-
- * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org> Mon, 23 Jul 2007 00:00:00 +0200
-
-live-initramfs (1.91.5-1) unstable; urgency=medium
-
- * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org> 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 <daniel at debian.org> Mon, 9 Jul 2007 00:00:00 +0200
-
-live-initramfs (1.91.3-1) unstable; urgency=medium
-
- * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org> Mon, 2 Jul 2007 00:00:00 +0200
-
-live-initramfs (1.91.2-1) unstable; urgency=medium
-
- * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org> Mon, 25 Jun 2007 00:00:00 +0200
-
-live-initramfs (1.91.1-1) unstable; urgency=medium
-
- * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org> Mon, 18 Jun 2007 00:00:00 +0200
-
-live-initramfs (1.90.1-1) unstable; urgency=medium
-
- * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org> Mon, 11 Jun 2007 00:00:00 +0200
-
-live-initramfs (1.87.6-1) unstable; urgency=medium
-
- * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org> Mon, 4 Jun 2007 00:00:00 +0200
-
-live-initramfs (1.87.5-1) unstable; urgency=medium
-
- * New upstream release, replacing casper.
-
- -- Daniel Baumann <daniel at debian.org> Mon, 28 May 2007 00:00:00 +0200
-
-live-initramfs (1.87.4-1) unstable; urgency=medium
-
- * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org> Mon, 21 May 2007 00:00:00 +0200
-
-live-initramfs (1.87.3-1) unstable; urgency=medium
-
- * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org> Mon, 14 May 2007 00:00:00 +0200
-
-live-initramfs (1.87.2-1) unstable; urgency=low
-
- * New upstream release.
-
- -- Daniel Baumann <daniel at debian.org> Mon, 7 May 2007 00:00:00 +0200
-
-live-initramfs (1.87.1-1) unstable; urgency=low
-
- * Initial release, forking casper.
-
- -- Daniel Baumann <daniel at debian.org> Mon, 30 Apr 2007 00:00:00 +0200
Copied: releases/live-initramfs/1.91.6-1/debian/changelog (from rev 2582, dists/trunk/live-initramfs/debian/changelog)
===================================================================
--- releases/live-initramfs/1.91.6-1/debian/changelog (rev 0)
+++ releases/live-initramfs/1.91.6-1/debian/changelog 2007-07-26 18:06:18 UTC (rev 2583)
@@ -0,0 +1,78 @@
+live-initramfs (1.91.6-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org> Mon, 23 Jul 2007 00:00:00 +0200
+
+live-initramfs (1.91.5-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org> 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 <daniel at debian.org> Mon, 9 Jul 2007 00:00:00 +0200
+
+live-initramfs (1.91.3-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org> Mon, 2 Jul 2007 00:00:00 +0200
+
+live-initramfs (1.91.2-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org> Mon, 25 Jun 2007 00:00:00 +0200
+
+live-initramfs (1.91.1-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org> Mon, 18 Jun 2007 00:00:00 +0200
+
+live-initramfs (1.90.1-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org> Mon, 11 Jun 2007 00:00:00 +0200
+
+live-initramfs (1.87.6-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org> Mon, 4 Jun 2007 00:00:00 +0200
+
+live-initramfs (1.87.5-1) unstable; urgency=medium
+
+ * New upstream release, replacing casper.
+
+ -- Daniel Baumann <daniel at debian.org> Mon, 28 May 2007 00:00:00 +0200
+
+live-initramfs (1.87.4-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org> Mon, 21 May 2007 00:00:00 +0200
+
+live-initramfs (1.87.3-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org> Mon, 14 May 2007 00:00:00 +0200
+
+live-initramfs (1.87.2-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Daniel Baumann <daniel at debian.org> Mon, 7 May 2007 00:00:00 +0200
+
+live-initramfs (1.87.1-1) unstable; urgency=low
+
+ * Initial release, forking casper.
+
+ -- Daniel Baumann <daniel at debian.org> Mon, 30 Apr 2007 00:00:00 +0200
Deleted: releases/live-initramfs/1.91.6-1/debian/control
===================================================================
--- dists/trunk/live-initramfs/debian/control 2007-07-26 09:01:51 UTC (rev 2579)
+++ releases/live-initramfs/1.91.6-1/debian/control 2007-07-26 18:06:18 UTC (rev 2583)
@@ -1,33 +0,0 @@
-Source: live-initramfs
-Section: misc
-Priority: optional
-Maintainer: Debian Live <debian-live-devel at lists.alioth.debian.org>
-Uploaders: Daniel Baumann <daniel at debian.org>, Marco Amadori <marco.amadori at gmail.com>
-Build-Depends: debhelper (>= 5), lsb-release
-Standards-Version: 3.7.2
-XS-Vcs-Svn: svn://svn.debian.org/debian-live/dists/trunk/live-initramfs/
-XS-VCS-Browse: http://svn.debian.org/wsvn/debian-live/dists/trunk/live-initramfs/
-
-Package: live-initramfs
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, file, initramfs-tools, sudo, user-setup
-Recommends: eject, live-initscripts
-Suggests: genext2fs, squashfs-tools
-Conflicts: casper
-Replaces: casper
-Description: Debian Live initramfs hook
- live-initramfs is a hook for the initramfs-tools, used to generate a initramfs
- capable to boot live systems, such as those created by live-helper. This
- includes the Debian Live isos, netboot tarballs, and usb stick images.
- .
- At boot time it will look for a (read-only) media containing a "/live"
- directory where a root filesystems (often a compressed filesystem image like
- squashfs) is stored. If found, it will create a writable environment, using
- unionfs, for Debian like systems to boot from.
- .
- You probably do not want to install this package onto a non-live system,
- although it will do no harm.
- .
- Homepage: <http://debian-live.alioth.debian.org/>
- .
- live-initramfs is a fork of casper <http://packages.ubuntu.com/casper/>.
Copied: releases/live-initramfs/1.91.6-1/debian/control (from rev 2581, dists/trunk/live-initramfs/debian/control)
===================================================================
--- releases/live-initramfs/1.91.6-1/debian/control (rev 0)
+++ releases/live-initramfs/1.91.6-1/debian/control 2007-07-26 18:06:18 UTC (rev 2583)
@@ -0,0 +1,33 @@
+Source: live-initramfs
+Section: misc
+Priority: optional
+Maintainer: Debian Live <debian-live-devel at lists.alioth.debian.org>
+Uploaders: Daniel Baumann <daniel at debian.org>, Marco Amadori <marco.amadori at gmail.com>
+Build-Depends: debhelper (>= 5), lsb-release
+Standards-Version: 3.7.2
+XS-Vcs-Svn: svn://svn.debian.org/debian-live/dists/trunk/live-initramfs/
+XS-VCS-Browse: http://svn.debian.org/wsvn/debian-live/dists/trunk/live-initramfs/
+
+Package: live-initramfs
+Architecture: all
+Depends: ${misc:Depends}, file, initramfs-tools, sudo, user-setup
+Recommends: eject, live-initscripts
+Suggests: genext2fs, squashfs-tools
+Conflicts: casper
+Replaces: casper
+Description: Debian Live initramfs hook
+ live-initramfs is a hook for the initramfs-tools, used to generate a initramfs
+ capable to boot live systems, such as those created by live-helper. This
+ includes the Debian Live isos, netboot tarballs, and usb stick images.
+ .
+ At boot time it will look for a (read-only) media containing a "/live"
+ directory where a root filesystems (often a compressed filesystem image like
+ squashfs) is stored. If found, it will create a writable environment, using
+ unionfs, for Debian like systems to boot from.
+ .
+ You probably do not want to install this package onto a non-live system,
+ although it will do no harm.
+ .
+ Homepage: <http://debian-live.alioth.debian.org/>
+ .
+ live-initramfs is a fork of casper <http://packages.ubuntu.com/casper/>.
Deleted: releases/live-initramfs/1.91.6-1/debian/copyright
===================================================================
--- dists/trunk/live-initramfs/debian/copyright 2007-07-26 09:01:51 UTC (rev 2579)
+++ releases/live-initramfs/1.91.6-1/debian/copyright 2007-07-26 18:06:18 UTC (rev 2583)
@@ -1,64 +0,0 @@
-This package was debianized by Daniel Baumann <daniel at debian.org> on
-Mon, 30 Apr 2007 00:00:00 +0200.
-
-It was downloaded from:
-
- <http://debian-live.alioth.debian.org/>
-
-Upstream contact:
-
- Debian Live <debian-live-devel at lists.alioth.debian.org>
-
-License:
-
- live-initramfs is a fork of casper <http://packages.ubuntu.com/casper/>.
- casper was originally written by Tollef Fog Heen <tfheen at canonical.com>
- and Matt Zimmerman <mdz at canonical.com>.
-
- Copyright (C) 2005-2007 Canonical Ltd. <http://www.cannonical.com/>
- Copyright (C) 2006-2007 Marco Amadori <marco.amadori at gmail.com>
- Copyright (C) 2007 Daniel Baumann <daniel at debian.org>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-On Debian systems, the complete text of the GNU General Public License
-can be found in /usr/share/common-licenses/GPL-2 file.
-
-License (live-md5check/md5.c, live-md5check/md5,h):
-
- Copyright (C) 1999-2002 Aladdin Enterprises
- All rights reserved.
-
- This software is provided 'as-is', without any express or implied
- warranty. In no event will the authors be held liable for any damages
- arising from the use of this software.
-
- Permission is granted to anyone to use this software for any purpose,
- including commercial applications, and to alter it and redistribute it
- freely, subject to the following restrictions:
-
- 1. The origin of this software must not be misrepresented; you must not
- claim that you wrote the original software. If you use this software in
- a product, an acknowledgment in the product documentation would be
- appreciated but is not required.
-
- 2. Altered source versions must be plainly marked as such, and must not
- be misrepresented as being the original software.
-
- 3. This notice may not be removed or altered from any source
- distribution.
-
-The Debian packaging is (C) 2007, Daniel Baumann <daniel at debian.org> and
-is licensed under the GPL, see `/usr/share/common-licenses/GPL-2'.
Copied: releases/live-initramfs/1.91.6-1/debian/copyright (from rev 2581, dists/trunk/live-initramfs/debian/copyright)
===================================================================
--- releases/live-initramfs/1.91.6-1/debian/copyright (rev 0)
+++ releases/live-initramfs/1.91.6-1/debian/copyright 2007-07-26 18:06:18 UTC (rev 2583)
@@ -0,0 +1,40 @@
+This package was debianized by Daniel Baumann <daniel at debian.org> on
+Mon, 30 Apr 2007 00:00:00 +0200.
+
+It was downloaded from:
+
+ <http://debian-live.alioth.debian.org/>
+
+Upstream contact:
+
+ Debian Live <debian-live-devel at lists.alioth.debian.org>
+
+License:
+
+ live-initramfs is a fork of casper <http://packages.ubuntu.com/casper/>.
+ casper was originally written by Tollef Fog Heen <tfheen at canonical.com>
+ and Matt Zimmerman <mdz at canonical.com>.
+
+ Copyright (C) 2005-2007 Canonical Ltd. <http://www.cannonical.com/>
+ Copyright (C) 2006-2007 Marco Amadori <marco.amadori at gmail.com>
+ Copyright (C) 2007 Daniel Baumann <daniel at debian.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in /usr/share/common-licenses/GPL-2 file.
+
+The Debian packaging is (C) 2007, Daniel Baumann <daniel at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL-2'.
Deleted: releases/live-initramfs/1.91.6-1/debian/rules
===================================================================
--- dists/trunk/live-initramfs/debian/rules 2007-07-26 09:01:51 UTC (rev 2579)
+++ releases/live-initramfs/1.91.6-1/debian/rules 2007-07-26 18:06:18 UTC (rev 2583)
@@ -1,82 +0,0 @@
-#!/usr/bin/make -f
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-CFLAGS = -Wall -g
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
- CFLAGS += -O0
-else
- CFLAGS += -O2
-endif
-
-upstream:
- # Needs: subversion
- cd .. && svn co svn://svn.debian.org/debian-live/dists/trunk/live-initramfs || true
- find . -type d -name .svn | xargs rm -rf
-
-build: build-stamp
-build-stamp:
- dh_testdir
-
- # Building package
- CFLAGS="$(CFLAGS)" $(MAKE)
-
- touch build-stamp
-
-clean:
- dh_testdir
- dh_testroot
- rm -f build-stamp
-
- # Cleaning package
- $(MAKE) clean
-
- dh_clean
-
-install: build
- dh_testdir
- dh_testroot
- dh_clean -k
- dh_installdirs
-
- # Installing package
- $(MAKE) install DESTDIR=$(CURDIR)/debian/live-initramfs
-
- # Removing double files
- rm -f debian/live-initramfs/usr/share/doc/live-initramfs/COPYING
- rm -f debian/live-initramfs/usr/share/doc/live-initramfs/ChangeLog
- mv debian/live-initramfs/usr/share/doc/live-initramfs/ChangeLog.casper debian/live-initramfs/usr/share/doc/live-initramfs/changelog.casper
-
-binary-indep: build install
- dh_testdir -i
- dh_testroot -i
- dh_installchangelogs -i docs/ChangeLog
- dh_installdocs -i
- dh_install -i
- dh_compress -i
- dh_fixperms -i
- dh_installdeb -i
- dh_gencontrol -i
- dh_md5sums -i
- dh_builddeb -i
-
-binary-arch: build install
- dh_testdir -a
- dh_testroot -a
- dh_installchangelogs -a docs/ChangeLog
- dh_installdocs -a
- dh_install -a
- dh_installinit -a --no-restart-on-upgrade --no-start -- start 89 0 6 .
- dh_strip -a
- dh_compress -a
- dh_fixperms -a
- dh_installdeb -a
- dh_shlibdeps -a
- dh_gencontrol -a
- dh_md5sums -a
- dh_builddeb -a
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
Copied: releases/live-initramfs/1.91.6-1/debian/rules (from rev 2581, dists/trunk/live-initramfs/debian/rules)
===================================================================
--- releases/live-initramfs/1.91.6-1/debian/rules (rev 0)
+++ releases/live-initramfs/1.91.6-1/debian/rules 2007-07-26 18:06:18 UTC (rev 2583)
@@ -0,0 +1,61 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+upstream:
+ # Needs: subversion
+ cd .. && svn co svn://svn.debian.org/debian-live/dists/trunk/live-initramfs || true
+ find . -type d -name .svn | xargs rm -rf
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+ # Building package
+ $(MAKE)
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+
+ # Cleaning package
+ $(MAKE) clean
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ # Installing package
+ $(MAKE) install DESTDIR=$(CURDIR)/debian/live-initramfs
+
+ # Removing double files
+ rm -f debian/live-initramfs/usr/share/doc/live-initramfs/COPYING
+ rm -f debian/live-initramfs/usr/share/doc/live-initramfs/ChangeLog
+ mv debian/live-initramfs/usr/share/doc/live-initramfs/ChangeLog.casper debian/live-initramfs/usr/share/doc/live-initramfs/changelog.casper
+
+binary-arch: build install
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs docs/ChangeLog
+ dh_installdocs
+ dh_install
+ dh_installinit --no-restart-on-upgrade --no-start -- start 89 0 6 .
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
Deleted: releases/live-initramfs/1.91.6-1/docs/ChangeLog
===================================================================
--- dists/trunk/live-initramfs/docs/ChangeLog 2007-07-26 09:01:51 UTC (rev 2579)
+++ releases/live-initramfs/1.91.6-1/docs/ChangeLog 2007-07-26 18:06:18 UTC (rev 2583)
@@ -1,312 +0,0 @@
-2007-07-26 Daniel Baumann <daniel at debian.org>
-
- * scripts/live:
- - Fixed typo.
- - Added live-media-path as suggested by Jordi Pujol
- <jordi_pujol at telefonica.net>.
-
-2007-07-19 Daniel Baumann <daniel at debian.org>
-
- * scripts/live, scripts/live-bottom/02_timezone:
- - Added utc boot parameter as suggested by Vladimir Stavrinov
- <vs at inist.ru>
-
-2007-07-18 Daniel Baumann <daniel at debian.org>
-
- * docs/parameters.txt:
- - Added values for vga parameter.
- * scripts/live:
- - Added patch from Thomas Lange <lange at informatik.uni-koeln.de> to
- respect rootserver name from dhcp.
- * Uploaded 1.91.5-1.
-
-2007-07-12 Daniel Baumann <daniel at debian.org>
-
- * bin/live-snapshot, scripts/live:
- - Moved /cow to /live/cow.
- * scripts/live, scripts/live-bottom/01integrity_check, 05mountpoints:
- - Moved /live_media to /live/image.
- * Uploaded 1.91.4-1.
-
-2007-07-07 Daniel Baumann <daniel at debian.org>
-
- * scripts/live:
- - Added debug parameter.
-
-2007-06-31 Daniel Baumann <daniel at debian.org>
-
- * scripts/live:
- - Added patch from Julian Andres Klode <jak at jak-linux.org> to add
- support for aufs.
- * hooks/live, manpage/live-initramfs.en.7, scripts/live-bottom/12fstab:
- - Added aufs support.
- * Uploaded 1.91.3-1.
-
-2007-06-30 Daniel Baumann <daniel at debian.org>
-
- * scripts/live-bottom/12fstab:
- - Added disabling of /etc/init.d/checkfs.sh to avoid file systemcheck
- at boot time. Added nofastboot parameter to be able to change that.
- - Disabled removal of checkroot.sh.
-
-2007-06-28 Daniel Baumann <daniel at debian.org>
-
- * Applied patch from Mathieu Geli <mathieu.geli at gmail.com> to set the
- timezone with a boot parameter.
-
-2007-06-25 Daniel Baumann <daniel at debian.org>
-
- * scripts/live:
- - Added missing nfsopts boot parameter.
- - Changed default module name from 'order' to 'filesystem'.
- - Changed module extension from '.lst' to '.module'.
- - Check not just for $MODULE.module, but also
- filesystem.$MODULE.module
- - Cleaned up parse_cmdline and is_live_path functions.
- * debian/control, debian/live-initramfs.init,
- scripts/live-premount/10driver_updates:
- - Moving eject to recommends.
- - Added checks for eject existence.
- * Uploaded 1.91.2-1.
-
-2007-06-17 Daniel Baumann <daniel at debian.org>
-
- * debian/live-initramfs.postinst:
- - Made update-initramfs call conditional as suggested by Thomas Lange
- <lange at informatik.uni-koeln.de>.
- * debian/live-initramfs.postrm:
- - Added update-initramfs call to cleanup.
-
-2007-06-17 Daniel Baumann <daniel at debiann.org>
-
- * Added patch from Thomas Lange <lange at informatik.uni-koeln.de> to
- properly load ide-generic after udev.
- * Uploaded 1.91.1-1.
-
-2007-06-15 Daniel Baumann <daniel at debian.org>
-
- * Merging changes from casper 1.91.
-
-2007-06-14 Daniel Baumann <daniel at debian.org>
-
- * scripts/live-bottom/18hostname:
- - Appending to /etc/hosts to not overwrite custom settings.
-
-2007-06-08 Daniel Baumann <daniel at debian.org>
-
- * Merging changes from casper 1.88.
- * Merging changes from casper 1.90.
- * hooks/live:
- - Added force loading of ide-generic module. It is required on some
- systems to boot (reported as needed also for some qemu versions).
- * Uploaded 1.90.1-1.
-
-2007-06-04 Daniel Baumann <daniel at debian.org>
-
- * Uploaded 1.87.6-1.
-
-2007-05-28 Daniel Baumann <daniel at debian.org>
-
- * scripts/live-bottom/42apt_upgrade:
- - Moved to dedicated live-initscripts package.
-
-2007-05-24 Daniel Baumann <daniel at debian.org>
-
- * debian/control:
- - Added casper transitional package.
- - Removed usplash conflicts.
- * scripts/live-bottom/42apt_upgrade:
- - Added, idea taken from Kais webconverger.
- * Uploaded 1.87.5-1.
-
-2007-05-23 Daniel Baumann <daniel at debian.org>
-
- * scripts/*:
- - Minor code cleanup.
-
-2007-05-18 Daniel Baumann <daniel at debian.org>
-
- * scripts/live, scripts/live-bottom/05mountpoints:
- - Replaced 'mount -o move' with 'mount --move'.
- * scripts/live, scripts/live-bottom/10adduser:
- - Added check for 'nosudo' bootparameter to disable automatic
- sudo configuration.
- * scripts/live, scripts/live-bottom/13swap:
- - Renamed 'swapoff' parameter to 'noswap'.
- * scripts/live, scripts/live-bottom/15autologin:
- - Added check for 'noxautologin' bootparameter to disable automatic
- gdm/kdm login.
- * scripts/live, scripts/live-bottom/25configure_init:
- - Added check for 'noautologin' bootparameter to disable automatic
- terminal login.
- * bin/live-snapshot, scripts/live, scripts/live-helpers:
- - Also recognize ext3, but treat it like ext2.
- * Uploaded 1.87.4-1.
-
-2007-05-12 Daniel Baumann <daniel at debian.org>
-
- * scripts/live-bottom/*:
- - Added generic header.
-
-2007-05-12 Daniel Baumann <daniel at debian.org>
-
- * scripts/live:
- - Renamed CASPERCONF to LIVECONF.
- - Renamed CASPERGETTY to LIVE_GETTY.
- - Renamed LIVEMEDIA_* to LIVE_MEDIA_*.
- * Uploaded 1.87.3-1.
-
-2007-05-11 Daniel Baumann <daniel at debian.org>
-
- * hooks/live:
- - Reformated.
- * scripts/live, scripts/live-bottom/13swap:
- - Added check for swapoff bootparameter to disable usage of local swap
- partitions.
-
-2007-05-09 Daniel Baumann <daniel at debian.org>
-
- * manpages/*:
- - Added language suffix.
- - Partially rewritten and reformated.
-
-2007-05-08 Daniel Baumann <daniel at debian.org>
-
- * Makefile, doc/AUTHORS, doc/CREDITS:
- - Added.
- * doc:
- - Renamed to docs.
-
-2007-05-07 Daniel Baumann <daniel at debian.org>
-
- * debian/control:
- - Added suggests to genext2fs and squashfs-tools.
- - Removed depends to dmsetup.
- * scripts/live-bottom/10adduser:
- - Added patch from Ben Armstrong <synrg at debian.org> to write
- $HOME/.su-to-rootrc file.
- * scripts/live, scripts/live-bottom/21xvideomode:
- - Added patch from Mathieu Geli <mathieu.geli at gmail.com> to have the
- ability to force X video mode from kernel append line.
-
-2007-05-06 Daniel Baumann <daniel at debian.org>
-
- * Merging patches from casper 1.81+debian-4, see ChangeLog.casper.
- * conf/live.conf:
- - Renamed HOST to HOSTNAME.
- * debian/init:
- - Added quickreboot.
- - Renamed /cdrom to /live_media.
- * doc/ChangeLog.casper:
- - Added missing debian uploads.
- * manpages/live-initramfs.7:
- - Updated.
- * hooks/live:
- - Reading live.conf earlier.
- - Making some udev copies conditional for ubuntu.
- - Allowing local keymap when using encrypted filesystems.
- * scripts/live:
- - Renamed HOST to HOSTNAME.
- - Renamed /cdrom to /live_media.
- - Added support for live-snapshot.
- - Parsing commandline in one central place now.
- - Added support for encrypted filesytem images.
- - Added support for multiple filesystem images.
- * scripts/live-bottom/01integrity_check:
- - Renamed /cdrom to /live_media.
- * scripts/live-bottom/02etc_live_conf:
- - Added.
- * scripts/live-bottom/05mountpoints:
- - Renamed /cdrom to /live_media.
- - Don't do anything if not required.
- * scripts/live-bottom/10adduser:
- - Changed default password.
- - Disabling xscreensaver locking and copying ubiquity desktop only on
- ubuntu.
- * scripts/live-bottom/14locales:
- - Added handling of locale bootparameter.
- * scripts/live-bottom/15autologin:
- - Added workaround for using gdm default config.
- * scripts/live-bottom/18hostname:
- - Renamed HOST to HOSTNAME.
- * scripts/live-bottom/19keyboard:
- - Added handling of keyboard bootparameter.
- * scripts/live-bottom/20xconfig:
- - Added handling of keyboard bootparameter.
- - Added handling of locale bootparameter.
- * scripts/live-bottom/23networking:
- - Disabled loop over fixed network devices.
- * scripts/live-bottom/24preseed:
- - Added handling of multiple preseeding files.
- - Removed locale handling.
- * scripts/live-bottom/25configure_init:
- - Added handling of serial ttys.
- * scripts/live-bottom/30accessibility:
- - Removed extra parsing of commandline.
- * scripts/live-functions:
- - Added function to really export variables.
- * scripts/live-helpers:
- - Added support for encrypted filesytem images.
-
-2007-05-06 Daniel Baumann <daniel at debian.org>
-
- * bin/casper-getty, casper-login, casper-preseed, casper-reconfigure,
- casper-snapshot:
- - Renamed to live-*.
- * casper-md5check:
- - Moved to bin.
- - Renamed to live-md5check.
- * casper.conf:
- - Moved to conf/live.conf.
- * caspermon:
- - Removed.
- * hooks/casper, scripts/casper, casper-bottom, casper-functions,
- casper-helpers, casper-premount:
- - Renamed to live*.
- * bin/live-getty, live-login:
- - Reformated.
- * conf/live.conf:
- - Reformated.
- - Setting Debian defaults.
- * bin/live-snapshot, debian/dirs, debian/install, debian/rules,
- hooks/live, scripts/live:
- - Replaces casper directory and file names with live-initramfs
- directory and file names.
- * debian/manpage:
- - Moved to manpages.
- - Renamed casper.7 to live-initramfs.7.
- - Renamed casper-snapshot.1 to live-snapshot.1.
- * debian/init:
- - Changed activation parameter from boot=casper to boot=live.
- * scripts/live-bottom/02_timezone:
- - Fixed wrong script description.
- * Uploaded 1.87.2-1.
-
-2007-04-30 Daniel Baumann <daniel at debian.org>
-
- * Forked casper 1.87.
- * COPYING:
- - Added.
- * debian/control, debian/ubiquity-casper.install, ubiquity-hooks:
- - Removed ubiquity support.
- * debian/changelog:
- - Moved old changelog to doc/ChangeLog.casper.
- - Added new changelog for live-initramfs.
- * debian/casper.dirs, casper.init, casper.install, casper.manpages,
- casper.postinst:
- - Renamed, removed packagename prefix from filename.
- * debian/compat, copyright, dirs, manpages:
- - Updated.
- * debian/examples, links:
- - Added.
- * debian/rules:
- - Updated.
- - Added upstream target.
- * debian/control:
- - Updated.
- - Added depends to file.
- - Added conflicts/replaces to casper.
- * debian/postinst:
- - Running 'update-initramfs' for all kernel versions instead of latest
- only.
- * Uploaded 1.87.1-1.
Copied: releases/live-initramfs/1.91.6-1/docs/ChangeLog (from rev 2581, dists/trunk/live-initramfs/docs/ChangeLog)
===================================================================
--- releases/live-initramfs/1.91.6-1/docs/ChangeLog (rev 0)
+++ releases/live-initramfs/1.91.6-1/docs/ChangeLog 2007-07-26 18:06:18 UTC (rev 2583)
@@ -0,0 +1,316 @@
+2007-07-26 Daniel Baumann <daniel at debian.org>
+
+ * bin/live-md5check:
+ - Removed, using standard md5sum which makes the md5 check slower,
+ doesn't integrate well with usplash yet, but it makes live-initramfs
+ architecture independent now.
+ * scripts/live:
+ - Fixed typo.
+ - Added live-media-path as suggested by Jordi Pujol
+ <jordi_pujol at telefonica.net>.
+
+2007-07-19 Daniel Baumann <daniel at debian.org>
+
+ * scripts/live, scripts/live-bottom/02_timezone:
+ - Added utc boot parameter as suggested by Vladimir Stavrinov
+ <vs at inist.ru>
+
+2007-07-18 Daniel Baumann <daniel at debian.org>
+
+ * docs/parameters.txt:
+ - Added values for vga parameter.
+ * scripts/live:
+ - Added patch from Thomas Lange <lange at informatik.uni-koeln.de> to
+ respect rootserver name from dhcp.
+ * Uploaded 1.91.5-1.
+
+2007-07-12 Daniel Baumann <daniel at debian.org>
+
+ * bin/live-snapshot, scripts/live:
+ - Moved /cow to /live/cow.
+ * scripts/live, scripts/live-bottom/01integrity_check, 05mountpoints:
+ - Moved /live_media to /live/image.
+ * Uploaded 1.91.4-1.
+
+2007-07-07 Daniel Baumann <daniel at debian.org>
+
+ * scripts/live:
+ - Added debug parameter.
+
+2007-06-31 Daniel Baumann <daniel at debian.org>
+
+ * scripts/live:
+ - Added patch from Julian Andres Klode <jak at jak-linux.org> to add
+ support for aufs.
+ * hooks/live, manpage/live-initramfs.en.7, scripts/live-bottom/12fstab:
+ - Added aufs support.
+ * Uploaded 1.91.3-1.
+
+2007-06-30 Daniel Baumann <daniel at debian.org>
+
+ * scripts/live-bottom/12fstab:
+ - Added disabling of /etc/init.d/checkfs.sh to avoid file systemcheck
+ at boot time. Added nofastboot parameter to be able to change that.
+ - Disabled removal of checkroot.sh.
+
+2007-06-28 Daniel Baumann <daniel at debian.org>
+
+ * Applied patch from Mathieu Geli <mathieu.geli at gmail.com> to set the
+ timezone with a boot parameter.
+
+2007-06-25 Daniel Baumann <daniel at debian.org>
+
+ * scripts/live:
+ - Added missing nfsopts boot parameter.
+ - Changed default module name from 'order' to 'filesystem'.
+ - Changed module extension from '.lst' to '.module'.
+ - Check not just for $MODULE.module, but also
+ filesystem.$MODULE.module
+ - Cleaned up parse_cmdline and is_live_path functions.
+ * debian/control, debian/live-initramfs.init,
+ scripts/live-premount/10driver_updates:
+ - Moving eject to recommends.
+ - Added checks for eject existence.
+ * Uploaded 1.91.2-1.
+
+2007-06-17 Daniel Baumann <daniel at debian.org>
+
+ * debian/live-initramfs.postinst:
+ - Made update-initramfs call conditional as suggested by Thomas Lange
+ <lange at informatik.uni-koeln.de>.
+ * debian/live-initramfs.postrm:
+ - Added update-initramfs call to cleanup.
+
+2007-06-17 Daniel Baumann <daniel at debiann.org>
+
+ * Added patch from Thomas Lange <lange at informatik.uni-koeln.de> to
+ properly load ide-generic after udev.
+ * Uploaded 1.91.1-1.
+
+2007-06-15 Daniel Baumann <daniel at debian.org>
+
+ * Merging changes from casper 1.91.
+
+2007-06-14 Daniel Baumann <daniel at debian.org>
+
+ * scripts/live-bottom/18hostname:
+ - Appending to /etc/hosts to not overwrite custom settings.
+
+2007-06-08 Daniel Baumann <daniel at debian.org>
+
+ * Merging changes from casper 1.88.
+ * Merging changes from casper 1.90.
+ * hooks/live:
+ - Added force loading of ide-generic module. It is required on some
+ systems to boot (reported as needed also for some qemu versions).
+ * Uploaded 1.90.1-1.
+
+2007-06-04 Daniel Baumann <daniel at debian.org>
+
+ * Uploaded 1.87.6-1.
+
+2007-05-28 Daniel Baumann <daniel at debian.org>
+
+ * scripts/live-bottom/42apt_upgrade:
+ - Moved to dedicated live-initscripts package.
+
+2007-05-24 Daniel Baumann <daniel at debian.org>
+
+ * debian/control:
+ - Added casper transitional package.
+ - Removed usplash conflicts.
+ * scripts/live-bottom/42apt_upgrade:
+ - Added, idea taken from Kais webconverger.
+ * Uploaded 1.87.5-1.
+
+2007-05-23 Daniel Baumann <daniel at debian.org>
+
+ * scripts/*:
+ - Minor code cleanup.
+
+2007-05-18 Daniel Baumann <daniel at debian.org>
+
+ * scripts/live, scripts/live-bottom/05mountpoints:
+ - Replaced 'mount -o move' with 'mount --move'.
+ * scripts/live, scripts/live-bottom/10adduser:
+ - Added check for 'nosudo' bootparameter to disable automatic
+ sudo configuration.
+ * scripts/live, scripts/live-bottom/13swap:
+ - Renamed 'swapoff' parameter to 'noswap'.
+ * scripts/live, scripts/live-bottom/15autologin:
+ - Added check for 'noxautologin' bootparameter to disable automatic
+ gdm/kdm login.
+ * scripts/live, scripts/live-bottom/25configure_init:
+ - Added check for 'noautologin' bootparameter to disable automatic
+ terminal login.
+ * bin/live-snapshot, scripts/live, scripts/live-helpers:
+ - Also recognize ext3, but treat it like ext2.
+ * Uploaded 1.87.4-1.
+
+2007-05-12 Daniel Baumann <daniel at debian.org>
+
+ * scripts/live-bottom/*:
+ - Added generic header.
+
+2007-05-12 Daniel Baumann <daniel at debian.org>
+
+ * scripts/live:
+ - Renamed CASPERCONF to LIVECONF.
+ - Renamed CASPERGETTY to LIVE_GETTY.
+ - Renamed LIVEMEDIA_* to LIVE_MEDIA_*.
+ * Uploaded 1.87.3-1.
+
+2007-05-11 Daniel Baumann <daniel at debian.org>
+
+ * hooks/live:
+ - Reformated.
+ * scripts/live, scripts/live-bottom/13swap:
+ - Added check for swapoff bootparameter to disable usage of local swap
+ partitions.
+
+2007-05-09 Daniel Baumann <daniel at debian.org>
+
+ * manpages/*:
+ - Added language suffix.
+ - Partially rewritten and reformated.
+
+2007-05-08 Daniel Baumann <daniel at debian.org>
+
+ * Makefile, doc/AUTHORS, doc/CREDITS:
+ - Added.
+ * doc:
+ - Renamed to docs.
+
+2007-05-07 Daniel Baumann <daniel at debian.org>
+
+ * debian/control:
+ - Added suggests to genext2fs and squashfs-tools.
+ - Removed depends to dmsetup.
+ * scripts/live-bottom/10adduser:
+ - Added patch from Ben Armstrong <synrg at debian.org> to write
+ $HOME/.su-to-rootrc file.
+ * scripts/live, scripts/live-bottom/21xvideomode:
+ - Added patch from Mathieu Geli <mathieu.geli at gmail.com> to have the
+ ability to force X video mode from kernel append line.
+
+2007-05-06 Daniel Baumann <daniel at debian.org>
+
+ * Merging patches from casper 1.81+debian-4, see ChangeLog.casper.
+ * conf/live.conf:
+ - Renamed HOST to HOSTNAME.
+ * debian/init:
+ - Added quickreboot.
+ - Renamed /cdrom to /live_media.
+ * doc/ChangeLog.casper:
+ - Added missing debian uploads.
+ * manpages/live-initramfs.7:
+ - Updated.
+ * hooks/live:
+ - Reading live.conf earlier.
+ - Making some udev copies conditional for ubuntu.
+ - Allowing local keymap when using encrypted filesystems.
+ * scripts/live:
+ - Renamed HOST to HOSTNAME.
+ - Renamed /cdrom to /live_media.
+ - Added support for live-snapshot.
+ - Parsing commandline in one central place now.
+ - Added support for encrypted filesytem images.
+ - Added support for multiple filesystem images.
+ * scripts/live-bottom/01integrity_check:
+ - Renamed /cdrom to /live_media.
+ * scripts/live-bottom/02etc_live_conf:
+ - Added.
+ * scripts/live-bottom/05mountpoints:
+ - Renamed /cdrom to /live_media.
+ - Don't do anything if not required.
+ * scripts/live-bottom/10adduser:
+ - Changed default password.
+ - Disabling xscreensaver locking and copying ubiquity desktop only on
+ ubuntu.
+ * scripts/live-bottom/14locales:
+ - Added handling of locale bootparameter.
+ * scripts/live-bottom/15autologin:
+ - Added workaround for using gdm default config.
+ * scripts/live-bottom/18hostname:
+ - Renamed HOST to HOSTNAME.
+ * scripts/live-bottom/19keyboard:
+ - Added handling of keyboard bootparameter.
+ * scripts/live-bottom/20xconfig:
+ - Added handling of keyboard bootparameter.
+ - Added handling of locale bootparameter.
+ * scripts/live-bottom/23networking:
+ - Disabled loop over fixed network devices.
+ * scripts/live-bottom/24preseed:
+ - Added handling of multiple preseeding files.
+ - Removed locale handling.
+ * scripts/live-bottom/25configure_init:
+ - Added handling of serial ttys.
+ * scripts/live-bottom/30accessibility:
+ - Removed extra parsing of commandline.
+ * scripts/live-functions:
+ - Added function to really export variables.
+ * scripts/live-helpers:
+ - Added support for encrypted filesytem images.
+
+2007-05-06 Daniel Baumann <daniel at debian.org>
+
+ * bin/casper-getty, casper-login, casper-preseed, casper-reconfigure,
+ casper-snapshot:
+ - Renamed to live-*.
+ * casper-md5check:
+ - Moved to bin.
+ - Renamed to live-md5check.
+ * casper.conf:
+ - Moved to conf/live.conf.
+ * caspermon:
+ - Removed.
+ * hooks/casper, scripts/casper, casper-bottom, casper-functions,
+ casper-helpers, casper-premount:
+ - Renamed to live*.
+ * bin/live-getty, live-login:
+ - Reformated.
+ * conf/live.conf:
+ - Reformated.
+ - Setting Debian defaults.
+ * bin/live-snapshot, debian/dirs, debian/install, debian/rules,
+ hooks/live, scripts/live:
+ - Replaces casper directory and file names with live-initramfs
+ directory and file names.
+ * debian/manpage:
+ - Moved to manpages.
+ - Renamed casper.7 to live-initramfs.7.
+ - Renamed casper-snapshot.1 to live-snapshot.1.
+ * debian/init:
+ - Changed activation parameter from boot=casper to boot=live.
+ * scripts/live-bottom/02_timezone:
+ - Fixed wrong script description.
+ * Uploaded 1.87.2-1.
+
+2007-04-30 Daniel Baumann <daniel at debian.org>
+
+ * Forked casper 1.87.
+ * COPYING:
+ - Added.
+ * debian/control, debian/ubiquity-casper.install, ubiquity-hooks:
+ - Removed ubiquity support.
+ * debian/changelog:
+ - Moved old changelog to doc/ChangeLog.casper.
+ - Added new changelog for live-initramfs.
+ * debian/casper.dirs, casper.init, casper.install, casper.manpages,
+ casper.postinst:
+ - Renamed, removed packagename prefix from filename.
+ * debian/compat, copyright, dirs, manpages:
+ - Updated.
+ * debian/examples, links:
+ - Added.
+ * debian/rules:
+ - Updated.
+ - Added upstream target.
+ * debian/control:
+ - Updated.
+ - Added depends to file.
+ - Added conflicts/replaces to casper.
+ * debian/postinst:
+ - Running 'update-initramfs' for all kernel versions instead of latest
+ only.
+ * Uploaded 1.87.1-1.
Deleted: releases/live-initramfs/1.91.6-1/hooks/live
===================================================================
--- dists/trunk/live-initramfs/hooks/live 2007-07-26 09:01:51 UTC (rev 2579)
+++ releases/live-initramfs/1.91.6-1/hooks/live 2007-07-26 18:06:18 UTC (rev 2583)
@@ -1,114 +0,0 @@
-#!/bin/sh
-
-# initramfs hook for live-initramfs (Debian Live)
-
-set -e
-
-# initramfs-tools header
-
-PREREQ=""
-
-prereqs()
-{
- echo "${PREREQ}"
-}
-
-case "${1}" in
- prereqs)
- prereqs
- exit 0
- ;;
-esac
-
-. /usr/share/initramfs-tools/hook-functions
-
-# live-initramfs hook
-
-# Handling live-initramfs
-
-# Configuration
-if [ -r /etc/live.conf ]
-then
- . /etc/live.conf
-
- mkdir -p "${DESTDIR}"/etc
- cp /etc/live.conf "${DESTDIR}"/etc
-fi
-
-# Directories
-mkdir -p "${DESTDIR}"/lib/live-initramfs
-
-# Executables
-copy_exec /usr/lib/live-initramfs/live-md5check /bin
-copy_exec /usr/share/live-initramfs/live-reconfigure /bin
-copy_exec /usr/share/live-initramfs/live-preseed /bin
-
-# Scripts
-cp /usr/share/initramfs-tools/scripts/live-functions "${DESTDIR}"/scripts
-cp /usr/share/initramfs-tools/scripts/live-helpers "${DESTDIR}"/scripts
-
-# Handling other stuff
-
-# Configuration: keymap (usefull when using encryption)
-if [ -x /bin/loadkeys ] && [ -r /etc/console/boottime.kmap.gz ]
-then
- copy_exec /bin/loadkeys /bin
-
- mkdir -p "${DESTDIR}"/etc
- cp /etc/console/boottime.kmap.gz "${DESTDIR}"/etc
-fi
-
-# Filesystem: cifs
-if [ -x /sbin/mount.cifs ]
-then
- copy_exec /sbin/mount.cifs /sbin
- manual_add_modules cifs
-fi
-
-# Filesystem: ext3
-manual_add_modules ext3
-
-# Filesystem: squashfs
-copy_exec /sbin/losetup /sbin
-manual_add_modules loop
-manual_add_modules squashfs
-
-# Filesystem: unionfs/aufs
-manual_add_modules unionfs
-manual_add_modules aufs
-
-# Filesystem: vfat
-manual_add_modules nls_cp437
-manual_add_modules nls_iso8859-1
-manual_add_modules nls_utf8
-manual_add_modules vfat
-
-# Hardware: cdrom
-manual_add_modules ide-cd
-manual_add_modules ide-generic
-manual_add_modules ohci1394
-manual_add_modules sbp2
-manual_add_modules sr_mod
-
-# Hardware: network
-auto_add_modules net
-
-# Program: eject
-if [ -x /usr/bin/eject ]
-then
- copy_exec /usr/bin/eject /bin
-fi
-
-# Program: udev
-if [ "${BUILD_SYSTEM}" = "Ubuntu" ]
-then
- mkdir -p "${DESTDIR}"/lib/udev
-
- copy_exec /lib/udev/cdrom_id /lib/udev
- copy_exec /lib/udev/path_id /lib/udev
- copy_exec /lib/udev/vol_id /lib/udev
-fi
-
-copy_exec /sbin/udevtrigger /sbin
-copy_exec /sbin/udevsettle /sbin
-copy_exec /usr/bin/udevinfo /bin
Copied: releases/live-initramfs/1.91.6-1/hooks/live (from rev 2581, dists/trunk/live-initramfs/hooks/live)
===================================================================
--- releases/live-initramfs/1.91.6-1/hooks/live (rev 0)
+++ releases/live-initramfs/1.91.6-1/hooks/live 2007-07-26 18:06:18 UTC (rev 2583)
@@ -0,0 +1,116 @@
+#!/bin/sh
+
+# initramfs hook for live-initramfs (Debian Live)
+
+set -e
+
+# initramfs-tools header
+
+PREREQ=""
+
+prereqs()
+{
+ echo "${PREREQ}"
+}
+
+case "${1}" in
+ prereqs)
+ prereqs
+ exit 0
+ ;;
+esac
+
+. /usr/share/initramfs-tools/hook-functions
+
+# live-initramfs hook
+
+# Handling live-initramfs
+
+# Configuration
+if [ -r /etc/live.conf ]
+then
+ . /etc/live.conf
+
+ mkdir -p "${DESTDIR}"/etc
+ cp /etc/live.conf "${DESTDIR}"/etc
+fi
+
+# Directories
+mkdir -p "${DESTDIR}"/lib/live-initramfs
+
+# Executables
+copy_exec /usr/share/live-initramfs/live-reconfigure /bin
+copy_exec /usr/share/live-initramfs/live-preseed /bin
+
+# Scripts
+cp /usr/share/initramfs-tools/scripts/live-functions "${DESTDIR}"/scripts
+cp /usr/share/initramfs-tools/scripts/live-helpers "${DESTDIR}"/scripts
+
+# Handling other stuff
+
+# Configuration: keymap (usefull when using encryption)
+if [ -x /bin/loadkeys ] && [ -r /etc/console/boottime.kmap.gz ]
+then
+ copy_exec /bin/loadkeys /bin
+
+ mkdir -p "${DESTDIR}"/etc
+ cp /etc/console/boottime.kmap.gz "${DESTDIR}"/etc
+fi
+
+# Filesystem: cifs
+if [ -x /sbin/mount.cifs ]
+then
+ copy_exec /sbin/mount.cifs /sbin
+ manual_add_modules cifs
+fi
+
+# Filesystem: ext3
+manual_add_modules ext3
+
+# Filesystem: squashfs
+copy_exec /sbin/losetup /sbin
+manual_add_modules loop
+manual_add_modules squashfs
+
+# Filesystem: unionfs/aufs
+manual_add_modules unionfs
+manual_add_modules aufs
+
+# Filesystem: vfat
+manual_add_modules nls_cp437
+manual_add_modules nls_iso8859-1
+manual_add_modules nls_utf8
+manual_add_modules vfat
+
+# Hardware: cdrom
+manual_add_modules ide-cd
+manual_add_modules ide-generic
+manual_add_modules ohci1394
+manual_add_modules sbp2
+manual_add_modules sr_mod
+
+# Hardware: network
+auto_add_modules net
+
+# Program: eject
+if [ -x /usr/bin/eject ]
+then
+ copy_exec /usr/bin/eject /bin
+fi
+
+# Program: md5sum
+copy_exec /usr/bin/md5sum /bin
+
+# Program: udev
+if [ "${BUILD_SYSTEM}" = "Ubuntu" ]
+then
+ mkdir -p "${DESTDIR}"/lib/udev
+
+ copy_exec /lib/udev/cdrom_id /lib/udev
+ copy_exec /lib/udev/path_id /lib/udev
+ copy_exec /lib/udev/vol_id /lib/udev
+fi
+
+copy_exec /sbin/udevtrigger /sbin
+copy_exec /sbin/udevsettle /sbin
+copy_exec /usr/bin/udevinfo /bin
Deleted: releases/live-initramfs/1.91.6-1/scripts/live-bottom/01integrity_check
===================================================================
--- dists/trunk/live-initramfs/scripts/live-bottom/01integrity_check 2007-07-26 09:01:51 UTC (rev 2579)
+++ releases/live-initramfs/1.91.6-1/scripts/live-bottom/01integrity_check 2007-07-26 18:06:18 UTC (rev 2583)
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-#set -e
-
-# initramfs-tools header
-
-PREREQ=""
-
-prereqs()
-{
- echo "${PREREQ}"
-}
-
-case "${1}" in
- prereqs)
- prereqs
- exit 0
- ;;
-esac
-
-# live-initramfs script
-
-grep integrity-check /proc/cmdline && live-md5check /live/image /live/image/md5sum.txt < /dev/tty8
Copied: releases/live-initramfs/1.91.6-1/scripts/live-bottom/01integrity_check (from rev 2581, dists/trunk/live-initramfs/scripts/live-bottom/01integrity_check)
===================================================================
--- releases/live-initramfs/1.91.6-1/scripts/live-bottom/01integrity_check (rev 0)
+++ releases/live-initramfs/1.91.6-1/scripts/live-bottom/01integrity_check 2007-07-26 18:06:18 UTC (rev 2583)
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+#set -e
+
+# initramfs-tools header
+
+PREREQ=""
+
+prereqs()
+{
+ echo "${PREREQ}"
+}
+
+case "${1}" in
+ prereqs)
+ prereqs
+ exit 0
+ ;;
+esac
+
+# live-initramfs script
+
+grep -qs integrity-check /proc/cmdline || exit 0
+
+cd /live/image
+md5sum -c md5sum.txt < /dev/tty8
More information about the Debian-live-changes
mailing list