From: Michael Prokop Date: Fri, 19 May 2017 14:49:54 +0000 (+0200) Subject: Don't fail hard if installing on partition number >4, instead warn user [Closes:... X-Git-Tag: v0.15.1~2 X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=commitdiff_plain;h=e4a774796aafe18d465cc9d1891d56c3e8be5409;ds=sidebyside Don't fail hard if installing on partition number >4, instead warn user [Closes: issue1353] --- 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)