Je suis à nouveau en train de refactoriser ma procédure de boot, car j'ai toujours des problèmes de mémoire. Cela ne fonctionne pas encore :-(

This commit is contained in:
Christian Zufferey
2020-01-06 23:32:50 +01:00
parent b97ff69216
commit 5716fbd93f
3 changed files with 11 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
-- Scripts à charger après le boot pour démarrer le core system
print("\n boot.lua zf200106.1815 \n")
print("\n boot.lua zf200106.2313 \n")
function boot()
if zswitch ~= nill then
@@ -9,5 +9,6 @@ function boot()
f= "wifi_init.lua" if file.exists(f) then dofile(f) end
f= "telnet_srv2.lua" if file.exists(f) then dofile(f) end
f= "web_srv2.lua" if file.exists(f) then dofile(f) end
second_chance=nil initz=nil f=nil boot=nil
end
boot()