live-initramfs (1.139.1-2grml.01) unstable; urgency=low
* Resync with Debian's 1.139.1-2 version.
+ * Add debian/patches/04_ignore_errors_from_fstype.dpatch
+ to ignore errors from fstype, otherwise we have
+ "stdin: error 0" during bootup.
- -- Michael Prokop <mika@grml.org> Mon, 15 Sep 2008 17:28:20 +0200
+ -- Michael Prokop <mika@grml.org> Mon, 15 Sep 2008 17:43:13 +0200
live-initramfs (1.139.1-1grml.01) unstable; urgency=low
01_add_rsync.dpatch
02_more_verbose_toram.dpatch
03_grml_version_file_hook.dpatch
+04_ignore_errors_from_fstype.dpatch
05_boot_failure_message_grml.dpatch
--- /dev/null
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 04_ignore_errors_from_fstype.dpatch by Michael Prokop <mika@grml.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Ignore errors from fstype
+##
+## Redirect stderr to /dev/null, otherwise we'll get
+## "stdin: error 0" for some partitions during bootup.
+##
+
+@DPATCH@
+
+diff -r 6b72cefbc61b scripts/live-helpers
+--- a/scripts/live-helpers Mon Sep 15 17:32:23 2008 +0200
++++ b/scripts/live-helpers Mon Sep 15 17:34:17 2008 +0200
+@@ -77,7 +77,7 @@
+ return
+ fi
+
+- eval $(fstype < ${1})
++ eval $(fstype < ${1} 2>/dev/null)
+
+ if [ "${FSTYPE}" != "unknown" ]
+ then