From: Felix Zielcke <fzielcke@z-51.de>
To: The development of GRUB 2 <grub-devel@gnu.org>
Subject: grub-mkconfig fails on every non i386-pc because of gfxterm/vbe
Date: Wed, 03 Jun 2009 11:43:35 +0200 [thread overview]
Message-ID: <1244022215.3429.17.camel@fz.local> (raw)
I wonder why nobody on this list noticed this yet.
Jordi reported this already on Debian a while ago [0]
It fails with `No suitable backend could be found for gfxterm.'
The problem is that gfxterm is used when nothing is explicitly specified
and the fonts were compiled, but the fails because vbe.mod only gets
compiled for i386-pc whereas gfxterm.mod gets compiled for every arches.
I suggest as Jordi to just change the `exit 1' to ´exit 0' and telling
the user that it falls back to native terminal:
diff --git a/util/grub.d/00_header.in b/util/grub.d/00_header.in
index d8fa416..7c6ea39 100644
--- a/util/grub.d/00_header.in
+++ b/util/grub.d/00_header.in
@@ -83,7 +83,7 @@ case x${GRUB_TERMINAL_OUTPUT} in
fi
done
if ! [ "${video_backend}" ] ; then
- echo "No suitable backend could be found for gfxterm." >&2 ; exit 1
+ echo "No suitable backend could be found for gfxterm, falling back to native terminal." >&2 ; exit 0
fi
cat << EOF
[0] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=520846
--
Felix Zielcke
next reply other threads:[~2009-06-03 9:43 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-03 9:43 Felix Zielcke [this message]
2009-06-03 20:55 ` grub-mkconfig fails on every non i386-pc because of gfxterm/vbe Pavel Roskin
2009-06-03 22:11 ` Felix Zielcke
2009-06-09 20:24 ` Felix Zielcke
2009-06-12 1:09 ` Pavel Roskin
2009-08-14 6:44 ` Felix Zielcke
2009-08-18 17:58 ` Pavel Roskin
2009-08-18 18:09 ` Felix Zielcke
2009-08-18 18:25 ` Michal Suchanek
2009-06-11 16:09 ` Vladimir 'phcoder' Serbinenko
2009-07-22 11:04 ` Felix Zielcke
2009-08-18 17:44 ` Pavel Roskin
2009-08-18 17:53 ` Vladimir 'phcoder' Serbinenko
2009-08-18 18:11 ` Pavel Roskin
2009-08-19 15:18 ` Robert Millan
2009-08-20 22:18 ` Pavel Roskin
2009-08-20 22:45 ` Vladimir 'phcoder' Serbinenko
2009-08-21 11:14 ` Michal Suchanek
2009-08-23 8:22 ` Felix Zielcke
2009-08-23 11:03 ` Robert Millan
2009-08-25 19:35 ` Robert Millan
2009-08-25 19:47 ` Felix Zielcke
2009-09-11 21:54 ` Pavel Roskin
2009-09-12 12:58 ` Robert Millan
2009-09-12 13:17 ` Felix Zielcke
2009-09-12 20:44 ` Michal Suchanek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1244022215.3429.17.camel@fz.local \
--to=fzielcke@z-51.de \
--cc=grub-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.