Comment 5 for bug 14534

Revision history for this message
Colin Watson (cjwatson) wrote :

(In reply to comment #4)
> (In reply to comment #3)
> > Can't ubuntu not switch to fb console?
>
> Not a week before a release, no. :-) This is a planned feature for the next
release.

Actually, for every locale other than Greek, we already try (this logic's
inherited from Debian):

UTF-8)
        # Enable UTF-8 in console
        case $TERMINAL in
        console)
                # In the case of Greek console support works,
                # so we can ignore loading jfbterm
                if [ $LANG != "el_GR.UTF-8" ]; then
                        try_load_fb
                        WRAPPER="/usr/bin/jfbterm"
                        WRAPPER_OPTION="-q -e"
                fi
                ;;
        esac
        ;;

I could try moving try_load_fb outside that if, I suppose.