mirror of
https://git.proxmox.com/git/grub2
synced 2025-06-27 14:21:49 +00:00
* util/grub-install-common.c (grub_install_parse): Recognize
--compress=none like shell script did.
This commit is contained in:
parent
8df6eff6da
commit
3a129dba59
@ -1,3 +1,8 @@
|
|||||||
|
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>
|
2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* include/grub/misc.h: Replace check for __sparc64__ with one for
|
* include/grub/misc.h: Replace check for __sparc64__ with one for
|
||||||
|
@ -329,7 +329,8 @@ grub_install_parse (int key, char *arg)
|
|||||||
handle_install_list (&install_fonts, arg, 0);
|
handle_install_list (&install_fonts, arg, 0);
|
||||||
return 1;
|
return 1;
|
||||||
case GRUB_INSTALL_OPTIONS_INSTALL_COMPRESS:
|
case GRUB_INSTALL_OPTIONS_INSTALL_COMPRESS:
|
||||||
if (strcmp (arg, "no") == 0)
|
if (strcmp (arg, "no") == 0
|
||||||
|
|| strcmp (arg, "none") == 0)
|
||||||
{
|
{
|
||||||
compress_func = NULL;
|
compress_func = NULL;
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user