mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2024-11-04 21:53:24 +01:00
79 lines
2.0 KiB
Bash
79 lines
2.0 KiB
Bash
#!/bin/sh
|
|
|
|
### This function makes sure the 'wlan' net is in the 'lan' zone
|
|
addFirewallNet() {
|
|
cfgChanged=0; zoneNum=-1; i=0
|
|
|
|
while true; do
|
|
name=`uci get firewall.@zone[$i].name 2>&1`
|
|
exists=`echo "$name" | grep "Entry not found" >/dev/null 2>&1; echo $?`
|
|
|
|
if [ $exists -eq 0 ]; then break; fi
|
|
if [ "x$name" = "xlan" ]; then zoneNum=$i; fi
|
|
|
|
i=`expr $i + 1`
|
|
done
|
|
|
|
if [ $zoneNum -gt -1 ]; then
|
|
network=`uci get firewall.@zone[$zoneNum].network 2>&1`
|
|
hasWlan=`echo $network | grep "wlan" >/dev/null 2>&1; echo $?`
|
|
if [ $hasWlan -eq 1 ]; then
|
|
uci set firewall.@zone[$zoneNum].network="lan wlan"
|
|
uci commit firewall
|
|
/etc/init.d/dnsmasq reload
|
|
cfgChanged=1
|
|
fi
|
|
fi
|
|
|
|
if [ $cfgChanged -eq 1 ]; then
|
|
echo "Added network 'wlan' to zone lan."
|
|
else
|
|
echo "Firewall configuration not changed."
|
|
fi
|
|
}
|
|
|
|
|
|
### Replace the banner with a custom one
|
|
if [ ! -f /etc/banner.default ]; then
|
|
mv /etc/banner /etc/banner.default
|
|
cat <<-'EOM' > /etc/banner
|
|
........D o o d l e 3 D
|
|
.......________ _____ _____ v $(PACKAGE_VERSION)
|
|
....../ / / |__ / __/ / - /___ __
|
|
...../ / / /--// _|-// --| . /v /
|
|
..../________/__//__/__//____/___/_^_\
|
|
...
|
|
..A cad in a box.
|
|
.
|
|
EOM
|
|
fi
|
|
|
|
### Add some convenience functionality to root's profile
|
|
grep '^# DO NOT MODIFY.*wifibox package.$' /root/.profile >/dev/null 2>&1
|
|
if [ $? -eq 1 ]; then
|
|
cat <<-EOM >> /root/.profile
|
|
|
|
# DO NOT MODIFY - this block of lines has been added by the wifibox package.
|
|
alias d3dapi='/usr/share/lua/wifibox/script/d3dapi'
|
|
alias encore='ulimit -c unlimited'
|
|
EOM
|
|
fi
|
|
|
|
### Finally make sure basic configuration is set correctly
|
|
|
|
if [ -z "$IPKG_INSTROOT" ]; then
|
|
echo "Enabling wifi device..."
|
|
uci set wireless.@wifi-device[0].disabled=0; uci commit wireless; wifi
|
|
|
|
addFirewallNet
|
|
|
|
echo "Adding network interface 'wlan'..."
|
|
uci set network.wlan=interface; uci commit network; /etc/init.d/network reload
|
|
|
|
/etc/init.d/wifibox_init enable
|
|
else
|
|
echo "WARNING: WiFiBox network configuration can only be prepared when installing on real device"
|
|
fi
|
|
|
|
exit 0
|