mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-05 15:31:32 +02:00
52eafe1ce5
Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
12 lines
179 B
Bash
Executable File
12 lines
179 B
Bash
Executable File
#!/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"
|
|
}
|
|
|