mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2024-12-22 02:53:49 +01:00
Minor fix.
This commit is contained in:
parent
83167e31fe
commit
b059cf07e0
2
TODO
2
TODO
@ -5,6 +5,8 @@
|
||||
reconf.WWW_RENAME_NAME, wifihelper.{AP_ADDRESS, AP_NETMASK, (NET)}
|
||||
about bridging this to lua: have some Makefile stage create a ini/lua file with k/v's and have lua read out that file?
|
||||
https://github.com/2ion/ini.lua
|
||||
- in captive portal mode, https is not redirected
|
||||
- postinstall operations should be conditional, or work properly on image creation
|
||||
- write a shellscript to automate tasks like swapping out /www and packaging modified code for git merging
|
||||
- see if updating works when a new version is 'released' (probably needs a real feed)
|
||||
- perhaps opkg+safeboot could be useful in the update mechanism?
|
||||
|
@ -9,7 +9,7 @@ addFirewallNet() {
|
||||
exists=`echo "$name" | grep "Entry not found" >/dev/null 2>&1; echo $?`
|
||||
|
||||
if [ $exists -eq 0 ]; then break; fi
|
||||
if [ $name = "lan" ]; then zoneNum=$i; fi
|
||||
if [ "x$name" = "xlan" ]; then zoneNum=$i; fi
|
||||
|
||||
i=`expr $i + 1`
|
||||
done
|
||||
|
@ -6,5 +6,3 @@ SCRIPT_PATH=/usr/share/lua/autowifi
|
||||
|
||||
cd $SCRIPT_PATH
|
||||
$LUA ./autowifi.lua $@
|
||||
|
||||
#$LUA $SCRIPT_PATH/autowifi.lua $@
|
||||
|
Loading…
Reference in New Issue
Block a user