mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-05 12:32:49 +02:00
12 lines
179 B
Plaintext
12 lines
179 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2008 OpenWrt.org
|
||
|
START=40
|
||
|
|
||
|
FONT="un-fuzzy-6x10-font.pnm"
|
||
|
PATH_TO_FONT="/usr/share/setfont2/$FONT"
|
||
|
|
||
|
start() {
|
||
|
setfont2 "$PATH_TO_FONT"
|
||
|
}
|
||
|
|