X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=debian%2Fpatches%2F34_ignore_unknown_filesystems.patch;h=05f43878c259c6f0c3f03b8ec5e903a15056f3e1;hb=1b428f6013d6ef7c8159d803fee1968e1e758e1f;hp=d269d0b9d79e94746e8a2619cfd4f5dbad446a9d;hpb=e161c2c46e9b01e868a2793ea055ab382df66c2d;p=live-boot-grml.git diff --git a/debian/patches/34_ignore_unknown_filesystems.patch b/debian/patches/34_ignore_unknown_filesystems.patch index d269d0b..05f4387 100644 --- a/debian/patches/34_ignore_unknown_filesystems.patch +++ b/debian/patches/34_ignore_unknown_filesystems.patch @@ -1,11 +1,13 @@ ---- a/scripts/live-helpers -+++ b/scripts/live-helpers -@@ -507,6 +507,12 @@ +Index: live-boot-grml/components/9990-misc-helpers.sh +=================================================================== +--- live-boot-grml.orig/components/9990-misc-helpers.sh 2014-03-08 13:38:26.286476006 +0100 ++++ live-boot-grml/components/9990-misc-helpers.sh 2014-03-08 13:38:26.282476475 +0100 +@@ -443,6 +443,12 @@ return 1 fi -+ # get_fstype might report "unknown", ignore it as no such kernel module exists -+ if [ "${fstype}" = "unknown" ] ++ # get_fstype might report "unknown" or "swap", ignore it as no such kernel module exists ++ if [ "${fstype}" = "unknown" ] || [ "${fstype}" = "swap" ] + then + return 1 + fi