From: Daniel Baumann Date: Sun, 18 Apr 2010 18:40:19 +0000 (+0200) Subject: Adding upstream version 1.95.3. X-Git-Tag: upstream/1.95.3^0 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=dd61b17ab62f1326b01130c62b93c8c0f96ffe85;p=live-boot-grml.git Adding upstream version 1.95.3. --- diff --git a/Makefile b/Makefile index aec6d74..7c0d1c3 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ TRANSLATIONS="it" all: build test: - set -e; for SCRIPT in hooks/* scripts/live scripts/live-functions scripts/live-helpers scripts/*/*; \ + set -e; for SCRIPT in bin/* hooks/* scripts/live scripts/live-functions scripts/live-helpers scripts/*/*; \ do \ sh -n $$SCRIPT; \ done @@ -108,9 +108,9 @@ uninstall: update: set -e; for FILE in docs/parameters.txt manpages/*.en.*; \ do \ - sed -i -e 's/2007\\-07\\-30/2007\\-08\\-06/' \ - -e 's/30.07.2007/06.08.2007/' \ - -e 's/1.95.1/1.95.2/' \ + sed -i -e 's/2007\\-08\\-13/2007\\-08\\-20/' \ + -e 's/13.08.2007/20.08.2007/' \ + -e 's/1.95.3/1.95.4/' \ $$FILE; \ done diff --git a/docs/ChangeLog b/docs/ChangeLog index 32fa652..ac88a8d 100644 --- a/docs/ChangeLog +++ b/docs/ChangeLog @@ -1,3 +1,15 @@ +2007-08-21 Daniel Baumann + + * scripts/live: + - Applied patch from Jesse W. Hathaway to + not use nfsro with kernels larger than 2.6.22 (where unionfs 2.x + is supposed to be available soon). + * Uploaded 1.95.3-1. + +2007-08-11 Daniel Baumann + + * Uploaded 1.95.2-1. + 2007-08-01 Daniel Baumann * scripts/live-bottom/10adduser: diff --git a/docs/parameters.txt b/docs/parameters.txt index f8a0e72..8c2e13b 100644 --- a/docs/parameters.txt +++ b/docs/parameters.txt @@ -1,9 +1,9 @@ Boot Parameters for Debian Live ------------------------------- -Updated for live-initramfs 1.95.2-1 on 2007-07-30. +Updated for live-initramfs 1.95.3-1 on 2007-07-30. -These options (can be combined) work from the syslinux bootprompt: +These options (can be combined) work from the bootloader prompt: live access=ACCESS live console=TTY,SPEED diff --git a/manpages/live-initramfs.en.7 b/manpages/live-initramfs.en.7 index ab92697..e0a61e1 100644 --- a/manpages/live-initramfs.en.7 +++ b/manpages/live-initramfs.en.7 @@ -1,4 +1,4 @@ -.TH LIVE\-INITRAMFS 7 "2007\-08\-06" "1.95.2" "live\-initramfs" +.TH LIVE\-INITRAMFS 7 "2007\-08\-13" "1.95.3" "live\-initramfs" .SH NAME live\-initramfs \- Debian Live initramfs hook diff --git a/manpages/live-snapshot.en.1 b/manpages/live-snapshot.en.1 index d5f56a4..8c62c13 100644 --- a/manpages/live-snapshot.en.1 +++ b/manpages/live-snapshot.en.1 @@ -1,4 +1,4 @@ -.TH LIVE\-SNAPSHOT 1 "2007\-08\-06" "1.95.2" "live\-initramfs" +.TH LIVE\-SNAPSHOT 1 "2007\-08\-13" "1.95.3" "live\-initramfs" .SH NAME live\-snapshot \- a simple script to ease persistence usage diff --git a/scripts/live b/scripts/live index 97777bd..a73da84 100755 --- a/scripts/live +++ b/scripts/live @@ -635,8 +635,10 @@ setup_unionfs() { # Let's just mount the read-only file systems first rofsstring="" rofslist="" - if [ "${NETBOOT}" = "nfs" ] ; then - roopt="nfsro" # go aroung a bug in nfs-unionfs locking + minor_kernel_version=`uname -r|cut -c 5-|sed 's/[^0-9].*//'` + if [ "${NETBOOT}" = "nfs" ] && [ "${minor_kernel_version}" -lt 22 ]; then + # go aroung a bug in nfs-unionfs locking for unionfs <= 1.4 + roopt="nfsro" else roopt="ro" fi diff --git a/scripts/live-bottom/02_timezone b/scripts/live-bottom/02timezone similarity index 100% rename from scripts/live-bottom/02_timezone rename to scripts/live-bottom/02timezone