d97673f715
wait for device initialisations workaround for a timing issue during first boot on ath79-generic after sysupgrade from ar71xx-generic image GitHub Issue: #2779
11 lines
205 B
Bash
Executable File
11 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Work around an issue with wifi setup timing by waiting a bit
|
|
# while device initialisation is ongoing.
|
|
# https://github.com/freifunk-gluon/gluon/issues/2779
|
|
sleep 3
|
|
|
|
gluon-reconfigure
|
|
|
|
exit 0
|