Also, is there a reason why we can't do something not completely unlike
this [very sloppy, quick, and ugly] hack:

  if [ "$ARCH" = "sparc" -o "$ARCH" = "sparc64" ]; then
    if ["$CONFIG_FONT_8x8" != "y" -a "$CONFIG_FONT_8x16" != "y" -a
"$CONFIG_FONT_SUN12x22" != "y" -a "$CONFIG_FONT_6x11" != "y" -a
"$CONFIG_FONT_PEARL_8x8" != "y" -a "$CONFIG_FONT_ACORN_8x8" != "y" ]; then
      define_bool CONFIG_FONT_SUN8x16 y
    else
      bool 'Sparc console 8x16 font' CONFIG_FONT_SUN8x16
    fi

i realize this doesn't actually work, but i'd like to have some ambitions
towards making CONFIG_FONT_SUN8x16 a default, such that we no longer get
the pesky 'no font defined' error message halfway through a compile. (I've
been hacking at this all... morning?.. and havn't gotten it to work...)

also, i'm wondering about the 

  bool 'Select other fonts' CONFIG_FBCON_FONTS
  if [ "$CONFIG_FBCON_FONTS" = "y" ]; then
    bool '  VGA 8x8 font' CONFIG_FONT_8x8
    bool '  VGA 8x16 font' CONFIG_FONT_8x16
...
  else
    define_bool CONFIG_FONT_8x8 y
    define_bool CONFIG_FONT_8x16 y
...
  fi

construct circa line 286 ... is there any reason we need this on sparc?

 -- Peter, completely submerged in Config.in

"First things first -- but not necessarily in that order."
                -- The Doctor

On Sun, 14 Mar 1999, Peter Jones wrote:

> On Sun, 14 Mar 1999, Anton Blanchard wrote:
> 
> > Can someone that understands the config system have a look at
> > drivers/video/Config.in? I have problems with CONFIG_FONT_SUN8x16 and
> > CONFIG_FBCON_FONTS which seems to be a result of it being defined twice.
> 
> I won't make any grand claims like pretending to understand the config
> system, but it looks like we use CONFIG_FBCON_FONTS at two entirely
> independant places -- once in an 'if [ sparc ]' construct, and once not.
> I've attached a patch which I think should fix things, but get somebody
> else to check it before committing it, because its 6 am and I don't
> remember eating yesterday, so this may be a 'must finish patch and crawl
> to microwave' patch ;)

-
To unsubscribe from this list: send the line "unsubscribe sparclinux" in
the body of the message to [EMAIL PROTECTED]

Reply via email to