--compress=none like shell script did.
+2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * util/grub-install-common.c (grub_install_parse): Recognize
+ --compress=none like shell script did.
+
2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
* include/grub/misc.h: Replace check for __sparc64__ with one for
handle_install_list (&install_fonts, arg, 0);
return 1;
case GRUB_INSTALL_OPTIONS_INSTALL_COMPRESS:
- if (strcmp (arg, "no") == 0)
+ if (strcmp (arg, "no") == 0
+ || strcmp (arg, "none") == 0)
{
compress_func = NULL;
return 1;