base-files: wait for wifi modules to settle
On slower devices wifi drivers might take too long for detecting devices, resulting in the wifi detect call not seeing them. This was observed on a bcm6348 with bcm4318 wifi. Adding a one second pause was enough for b43 to expose the device. SVN-Revision: 31639
This commit is contained in:
parent
b218b15709
commit
80650c9475
1 changed files with 3 additions and 0 deletions
|
@ -71,6 +71,9 @@ start() {
|
|||
|
||||
load_modules /etc/modules.d/*
|
||||
|
||||
# allow wifi modules time to settle
|
||||
sleep 1
|
||||
|
||||
/sbin/wifi detect > /tmp/wireless.tmp
|
||||
[ -s /tmp/wireless.tmp ] && {
|
||||
cat /tmp/wireless.tmp >> /etc/config/wireless
|
||||
|
|
Loading…
Reference in a new issue