From: Vladimir 'phcoder' Serbinenko Date: Sun, 25 Dec 2011 16:41:55 +0000 (+0100) Subject: * grub-core/normal/menu.c (menu_init): Don't stop menu init at gfxterm. X-Git-Tag: 2.00~816 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0108f49101c83ab5d591112e5e90d8386e7686cf;p=thirdparty%2Fgrub.git * grub-core/normal/menu.c (menu_init): Don't stop menu init at gfxterm. --- diff --git a/ChangeLog b/ChangeLog index aab91a793..aa3843db0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-12-25 Vladimir Serbinenko + + * grub-core/normal/menu.c (menu_init): Don't stop menu init at gfxterm. + 2011-12-25 Vladimir Serbinenko * unicode: Import Unicode 6.0 data. diff --git a/grub-core/normal/menu.c b/grub-core/normal/menu.c index ae8e3e681..8b428f220 100644 --- a/grub-core/normal/menu.c +++ b/grub-core/normal/menu.c @@ -387,7 +387,7 @@ menu_init (int entry, grub_menu_t menu, int nested) grub_err_t err; if (grub_strcmp (term->name, "gfxterm") == 0 && gfxmenu) - break; + continue; err = grub_menu_try_text (term, entry, menu, nested); if(!err)