mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2025-02-08 21:11:57 +02:00
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"
|
|
}
|
|
|