mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
11 lines
283 B
Text
11 lines
283 B
Text
|
#!/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 $*
|