#!/bin/sh echo "Setting locale" LANG=en_US.utf8 export LANG echo "Setting consolefonts" eval $(/usr/local/bin/readhash /var/ipfire/main/settings) for i in 2 3 4 5 6; do > /dev/tty$i done if [ "$LANGUAGE" = "el" ]; then /usr/bin/unicode_start iso07u-16 elif [ "$LANGUAGE" = "pt" -o "$LANGUAGE" = "bz" ]; then /usr/bin/unicode_start lat1-16 elif [ "$LANGUAGE" = "cs" -o "$LANGUAGE" = "hu" -o "$LANGUAGE" = "pl" -o "$LANGUAGE" = "sk" ]; then /usr/bin/unicode_start lat2-16 elif [ "$LANGUAGE" = "tr" ]; then /usr/bin/unicode_start lat5-16 elif [ "$LANGUAGE" = "vi" ]; then /usr/bin/unicode_start viscii10-8x16 else /usr/bin/unicode_start lat0-16 fi #/sbin/splash -n -s -u 0 /boot/splash/config/bootsplash-1024x768.cfg /sbin/splash -n -s -u 1 /boot/splash/config/bootsplash-1024x768.cfg /sbin/splash -n -s -u 2 /boot/splash/config/bootsplash-1024x768.cfg /sbin/splash -n -s -u 3 /boot/splash/config/bootsplash-1024x768.cfg /sbin/splash -n -s -u 4 /boot/splash/config/bootsplash-1024x768.cfg /sbin/splash -n -s -u 5 /boot/splash/config/bootsplash-1024x768.cfg /sbin/splash -n -s -u 11 /boot/splash/config/bootsplash-1024x768.cfg