mbox series

[v2,0/3] Better wifi handling

Message ID 20220607151719.2305134-1-angelo@amarulasolutions.com
Headers show
Series Better wifi handling | expand

Message

Angelo Compagnucci June 7, 2022, 3:17 p.m. UTC
While adding and testing for a new wifi driver, I could notice the sad
state of wifi interface bringup in buildroot, so I tried to have
something simple enough to work on the most common cases.

What problems we had:
* Wrong syntax for wpa_supplicant.conf when using default build
  options.
* Lack of a proper ifup/ifdown support to have wpa_supplicant
  automatically started.
* Due to this, the recommended way of configuring a wifi via
  the "interfaces" file wasn't working at all.

Angelo Compagnucci (3):
  package/wpa_supplicant: fixing "Invalid configuration line"
  package/wpa_supplicant: adding ifupdown support
  package/busybox: make udhcp discover faster

 package/busybox/busybox.config             |  2 +-
 package/wpa_supplicant/ifupdown.sh         | 48 ++++++++++++++++++++++
 package/wpa_supplicant/wpa_supplicant.conf |  1 -
 package/wpa_supplicant/wpa_supplicant.mk   | 10 +++++
 4 files changed, 59 insertions(+), 2 deletions(-)
 create mode 100755 package/wpa_supplicant/ifupdown.sh