From: Michael Prokop Date: Mon, 28 May 2012 10:26:24 +0000 (+0200) Subject: 34_ignore_unknown_filesystems.patch: also ignore fstype swap X-Git-Tag: v3.0_a27-1+grml.3~1 X-Git-Url: https://git.grml.org/?a=commitdiff_plain;h=d621ee25ea648150e17ad626434a14ca26f0cbef;p=live-boot-grml.git 34_ignore_unknown_filesystems.patch: also ignore fstype swap --- diff --git a/debian/patches/34_ignore_unknown_filesystems.patch b/debian/patches/34_ignore_unknown_filesystems.patch index d269d0b..fd66536 100644 --- a/debian/patches/34_ignore_unknown_filesystems.patch +++ b/debian/patches/34_ignore_unknown_filesystems.patch @@ -4,8 +4,8 @@ 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