diff options
-rw-r--r-- | patches/os-prober-hang-fix.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/patches/os-prober-hang-fix.patch b/patches/os-prober-hang-fix.patch index 569e520..b572d92 100644 --- a/patches/os-prober-hang-fix.patch +++ b/patches/os-prober-hang-fix.patch @@ -3,10 +3,10 @@ @@ -38,6 +38,9 @@ elif [ "$types" = swap ]; then debug "$1 is a swap partition; skipping" - exit 0 + exit 1 +elif [ "$types" = iso9660 ]; then + debug "$1 is a iso9660 partition; skipping" -+ exit 0 ++ exit 1 elif [ "$types" = crypto_LUKS ]; then debug "$1 is a LUKS partition; skipping" - exit 0 + exit 1 |