blob: 615cbaab0a748eb75db2d563d40dc4c281c8cdcd (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
#BLURB="Select a font for the console"
# These platforms are headless so we don't need to configure
# this package.
#
# Silently exit if we find ourselves on one of these platforms
egrep -q "SheevaPlug" /proc/cpuinfo > /dev/null 2>&1 && exit
sh usr/bin/setconsolefont $*
|