1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 01:01:52 +02: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:
nbd 2011-06-07 17:00:43 +00:00
parent c2f40cfcf4
commit 7c8a20940f

View File

@ -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