mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-20 15:14:39 +02:00
15 lines
260 B
Bash
15 lines
260 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 pango.modules
|
|
pango-querymodules > '/etc/pango/pango.modules'
|
|
|
|
exit 0
|