diff options
author | Jesse Gilles <jgilles@multitech.com> | 2013-04-23 16:28:05 -0500 |
---|---|---|
committer | Jesse Gilles <jgilles@multitech.com> | 2013-04-23 16:28:05 -0500 |
commit | 14354f56b0686646409db849543571f9d75d24f9 (patch) | |
tree | 0c1fa9ebd75081726fd1467a13f0deffcd7d2c31 /multitech/recipes | |
parent | 5fa32ea3eaf4b00f5f8e972f23e8491c755db78e (diff) |
config: remove "auto wlan0" from example interfaces config
Diffstat (limited to 'multitech/recipes')
-rw-r--r-- | multitech/recipes/multitech/config/network/interfaces | 6 | ||||
-rw-r--r-- | multitech/recipes/multitech/config_1.0.bb | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/multitech/recipes/multitech/config/network/interfaces b/multitech/recipes/multitech/config/network/interfaces index ab3a27a..e34c39c 100644 --- a/multitech/recipes/multitech/config/network/interfaces +++ b/multitech/recipes/multitech/config/network/interfaces @@ -1,5 +1,5 @@ # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8) - + # The loopback interface auto lo iface lo inet loopback @@ -11,7 +11,9 @@ address 192.168.2.1 netmask 255.255.255.0 # Wifi client -#auto wlan0 +# NOTE: udev rules will bring up wlan0 automatically if a wifi device is detected +# and the wlan0 interface is defined, therefore an "auto wlan0" line is not needed. +# If "auto wlan0" is also specified, startup conflicts may result. #iface wlan0 inet dhcp #wpa-conf /var/config/wpa_supplicant.conf #wpa-driver nl80211 diff --git a/multitech/recipes/multitech/config_1.0.bb b/multitech/recipes/multitech/config_1.0.bb index cdc0909..7d488d2 100644 --- a/multitech/recipes/multitech/config_1.0.bb +++ b/multitech/recipes/multitech/config_1.0.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Provides default system config files and /var/config fs" SECTION = "base" LICENSE = "GPL" -PR = "r18" +PR = "r19" inherit update-rc.d |