Also fix typo error which will cause build failed. Fixes:75954bd("default-settings: split cnh variant into a separated pkg") (cherry picked from commit202742604b)
34 lines
981 B
Bash
Executable File
34 lines
981 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci set luci.main.lang=auto
|
|
uci commit luci
|
|
|
|
uci set fstab.@global[0].anon_mount=1
|
|
uci commit fstab
|
|
|
|
rm -f /www/luci-static/resources/view/status/include/50_dsl.js
|
|
rm -f /www/luci-static/resources/view/status/include/70_ddns.js
|
|
rm -f /www/luci-static/resources/view/status/include/80_minidlna.js
|
|
rm -f /www/luci-static/resources/view/status/include/80_upnp.js
|
|
|
|
ln -sf /sbin/ip /usr/bin/ip
|
|
|
|
sed -i "s/# //g" /etc/opkg/distfeeds.conf
|
|
|
|
sed -i 's/root::0:0:99999:7:::/root:$1$V4UetPzk$CYXluq4wUazHjmCDBCqXF.:0:0:99999:7:::/g' /etc/shadow
|
|
[ -f '/bin/bash' ] && sed -i 's|root:x:0:0:root:/root:/bin/ash|root:x:0:0:root:/root:/bin/bash|g' /etc/passwd
|
|
|
|
sed -i '/option disabled/d' /etc/config/wireless
|
|
sed -i '/set wireless.radio${devidx}.disabled/d' /lib/wifi/mac80211.sh
|
|
wifi up
|
|
|
|
sed -i '/log-facility/d' /etc/dnsmasq.conf
|
|
echo "log-facility=/dev/null" >> /etc/dnsmasq.conf
|
|
|
|
rm -rf /tmp/luci-modulecache/
|
|
rm -f /tmp/luci-indexcache
|
|
|
|
mv /etc/openwrt_banner /etc/banner
|
|
|
|
exit 0
|