From e4a774796aafe18d465cc9d1891d56c3e8be5409 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 19 May 2017 16:49:54 +0200 Subject: [PATCH] Don't fail hard if installing on partition number >4, instead warn user [Closes: issue1353] --- grml2usb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/grml2usb b/grml2usb index 05067e4..f06ab9a 100755 --- a/grml2usb +++ b/grml2usb @@ -1840,8 +1840,7 @@ def main(): if not os.path.isdir(device): if device[-1:].isdigit(): if int(device[-1:]) > 4 or device[-2:].isdigit(): - logging.critical("Fatal: installation on partition number >4 not supported. (BIOS won't support it.)") - sys.exit(1) + logging.warn("Warning: installing on partition number >4, booting *might* fail depending on your system.") # provide upgrade path handle_compat_warning(device) -- 2.1.4