mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
base-files: do not write to /etc/config/wireless at boot time unless a new interface was found
eliminates unnecessary flash write cycles at every boot patch by Peter Wagner (tripolar) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27127 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -9,11 +9,14 @@ boot() {
|
||||
|
||||
include /lib/network
|
||||
setup_switch
|
||||
/sbin/wifi detect >> /etc/config/wireless
|
||||
|
||||
/sbin/wifi detect > /tmp/wireless.tmp
|
||||
[ -s /tmp/wireless.tmp ] && {
|
||||
cat /tmp/wireless.tmp >> /etc/config/wireless
|
||||
}
|
||||
rm -f /tmp/wireless.tmp
|
||||
grep -qs config /etc/config/wireless && {
|
||||
/sbin/wifi up
|
||||
} || {
|
||||
rm -f /etc/config/wireless
|
||||
}
|
||||
|
||||
scan_interfaces
|
||||
|
||||
Reference in New Issue
Block a user