summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-23 14:46:24 +0200
committerDaniel Baumann <daniel@debian.org>2007-09-23 14:46:24 +0200
commita4f706a4bfe34ed6064c79d5ad7b3295fb0431cd (patch)
tree3d86573eacddaaa9d90931007227f3853beab849 /debian
parentc8e8ee4983b9bffa74138712eae61c94c34b2845 (diff)
downloadlive-boot-a4f706a4bfe34ed6064c79d5ad7b3295fb0431cd.tar.gz
live-boot-a4f706a4bfe34ed6064c79d5ad7b3295fb0431cd.zip
Adding casper 1.63+debian-3.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog7
-rw-r--r--debian/control2
-rw-r--r--debian/init.d5
-rwxr-xr-xdebian/rules8
4 files changed, 16 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog
index 05b55b4..eb8357d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+casper (1.63+debian-3) unstable; urgency=low
+
+ * Really do not try to eject cd if netbooted.
+ * Fixed unionfs ro param in case of nfs netboot (Closes: 383346).
+
+ -- Marco Amadori <marco.amadori@gmail.com> Wed, 16 Aug 2006 20:10:11 +0200
+
casper (1.63+debian-2) unstable; urgency=low
* Working netboot support (Closes: #380506).
diff --git a/debian/control b/debian/control
index 171d184..dd0d461 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: misc
Priority: optional
Maintainer: Marco Amadori <marco.amadori@gmail.com>
Uploaders: Daniel Baumann <daniel@debian.org>
-Build-Depends: debhelper (>= 4), dpatch
+Build-Depends: debhelper (>= 4)
Standards-Version: 3.7.2
Package: casper
diff --git a/debian/init.d b/debian/init.d
index bed1b89..424c024 100644
--- a/debian/init.d
+++ b/debian/init.d
@@ -1,5 +1,10 @@
#! /bin/sh
+# check for netboot
+if grep -qs netboot /proc/cmdline || grep -qsi root=/dev/nfs /proc/cmdline || grep -qsi root=/dev/cifs /proc/cmdline ; then
+ exit 0
+fi
+
grep -qs boot=casper /proc/cmdline || exit 0
# Try to cache everything we're likely to need after ejecting. This
diff --git a/debian/rules b/debian/rules
index c7fdbac..bd01663 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,9 +3,7 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
-include /usr/share/dpatch/dpatch.make
-
-build: patch-stamp build-stamp
+build: build-stamp
build-stamp:
dh_testdir
@@ -14,9 +12,9 @@ build-stamp:
touch build-stamp
-clean: unpatch
+clean:
dh_testdir
- rm -f patch-stamp build-stamp
+ rm -f build-stamp
# Cleaning package
-$(MAKE) -C casper-md5check clean