mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-17 04:39:41 +02:00
15 lines
233 B
Bash
15 lines
233 B
Bash
#!/bin/sh
|
|
|
|
# no need in NanoNote
|
|
/etc/init.d/atd disable
|
|
/etc/init.d/led disable
|
|
/etc/init.d/telnet disable
|
|
|
|
# write default u-boot env to nand
|
|
/usr/bin/mtd.nn fw_setenv_default
|
|
|
|
# generate fontconfig cache
|
|
/usr/bin/fc-cache
|
|
|
|
exit 0
|