X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=debian%2Fpatches%2F34_ignore_unknown_filesystems.patch;h=786f70ae7a465469399c65b46d9081b1964bfbdc;hb=eae42969c6f684a71e2aa812eaa449f3e64a33fc;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..786f70a 100644 --- a/debian/patches/34_ignore_unknown_filesystems.patch +++ b/debian/patches/34_ignore_unknown_filesystems.patch @@ -1,11 +1,11 @@ ---- a/scripts/live-helpers -+++ b/scripts/live-helpers -@@ -507,6 +507,12 @@ +--- a/scripts/boot/9990-misc-helpers.sh ++++ b/scripts/boot/9990-misc-helpers.sh +@@ -491,6 +491,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