X-Git-Url: http://git.grml.org/?a=blobdiff_plain;ds=sidebyside;f=debian%2Fpatches%2F34_ignore_unknown_filesystems.patch;h=5212abb3c0590270f8478b33bb45613b98d40b5c;hb=ce765d3020af178c02b15250d65e9e7d8fb9454c;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..5212abb 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 +--- a/scripts/boot/9990-misc-helpers.sh ++++ b/scripts/boot/9990-misc-helpers.sh @@ -507,6 +507,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