nbache wrote:Raziel wrote:Still not working as intended.
I use Wet and AmiUpdate and have put them network-startup (deleted them in WBStartup) and changed the startup-sequence to the right network-startup line.
But both programs will still come up with error messages about not finding a network...right now playing with DELAY (Wet) and TIMEOUT (AmiUpdate) to delay the first polling...
Strange.
Just to make sure: You did remember to remove the Run etc. from the AddNetInterface line in Network-Startup, right?
Apart from that, when I used an RTL8169-based card in my X1000, the network would often not come up even though AddNetInterface had returned. In the end, my solution was to put a Wait 5 SECS right after the AddNetInterface line. (Now I use an RTL8139-based card which doesn't have that problem, so I have commented out the wait again.)
I also have the following check after that:
Code: Select all
GetNetStatus CHECK INTERFACES,RESOLVER,DEFAULTROUTE
If WARN
Wait 3 ; Increase chances of IPrefs having opened the final WB screen
RequestChoice "Network Startup" "Network not operational,*nS:Network-Startup aborted" "OK"
Quit
EndIf
Might give some clues, if nothing else. Although GetNetStatus can not necessarily detect all possible problems.
Best regards,
Niels
Yes, of course, no run in front of addnetinterfaces
hmm, your script gave me an idea, maybe i'm putting in an endless loop which waits for the network to be up before progressing...
...wait, wasn't the network-startup meant to do that in the first place?
EDIT:
Wet needs a DELAY of 20 here to work without an error window when WB has come up
AmiUpdate is still refusing to find a network (at the moment using also 20 for TIMEOUT (next check with 30)
...i just realized that TIMEOUT is meant to fix bad connections but has nothing to do with initial scanning delay...ah well
Edit2: For whoever stumbles over this in search of help (probably me in 30 years)

The reason for it not to work properly was that i missed to save WBStartup prefs after removing AmiUpdate from WBStartup list, so there were two times that AU was started giving this strange results. All goody now