On Tue, May 14, 2002 at 09:31:13AM +0900, Junichi Uekawa wrote: > "Christian T. Steigies" <[EMAIL PROTECTED]> immo vero scripsit: > > > On Tue, May 14, 2002 at 12:51:07AM +1000, Anthony Towns wrote: > > > Hi guys, > > > > > > If you'd like to tag and upload 3.0.23 sometime this week, that will > > > be fine. I believe there are some sparc updates desirect so we can have > > > bootable sparc CDs, that Ben will know about. Please follow Adam's lead, > > > and don't do anything to break them. It'd be better if all architectures > > > could sync on 3.0.23 reasonably quickly, but any that don't will just > > > stick with 3.0.22. > > > > Has anything happend to make bogl work on monochrome displays or do we have > > any command line switch/option/whatever to force the fallback on the > > non-language chooser installer? There seem to be more and more monochrome > > m68k-macs around and it would be nice if they could use the woody > > boot-floppies as well. > > Do we still have problems with monochrome displays ? > > I think there is a boot-time option to disable the graphics mode, > which should be enough.
I'm not aware of anything. Maybe some framebuffers have boot time options to disable them, but I don't think boot-floppies has any such option. Can I suggest something like the patch below, which would let us boot with "nolangchooser" to disable bterm and hence language chooser. Might also help on at least one hppa box where framebuffer code is broken such that b-f wont boot since I turned on language chooser. Richard Index: rootdisk.sh =================================================================== RCS file: /cvs/debian-boot/boot-floppies/rootdisk.sh,v retrieving revision 1.364 diff -u -r1.364 rootdisk.sh --- rootdisk.sh 2002/04/16 20:45:16 1.364 +++ rootdisk.sh 2002/05/14 12:16:32 @@ -406,7 +406,9 @@ < $scripts/prototype/etc/inittab > $T/etc/inittab cat <<EOF >> $T/sbin/udbootstrap #!/bin/sh -if (</dev/fb0) 2>/dev/null && ! grep -q console=ttyS /proc/cmdline 2> /dev/null ; then +if (</dev/fb0) 2>/dev/null && \ + ! grep -q console=ttyS /proc/cmdline 2> /dev/null && \ + ! grep -q nolangchooser /proc/cmdline 2> /dev/null ; then LC_CTYPE=C@utf-8 export LC_CTYPE exec /usr/bin/bterm -f /unifont-reduced.bgf /sbin/dbootstrap -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]