64035ac463
Prepare for better device categorization by moving everything to testing subdir first. [skip-ci]: chicken-egg problem: passing pmaports CI depends on pmbootstrap MR depends on this MR Related: postmarketos#16
10 lines
396 B
Bash
Executable file
10 lines
396 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Enable autostart of deferred initcalls (needed to bring Wi-Fi online)
|
|
rc-update -q add deferred-initcalls sysinit
|
|
|
|
# Explicitly specify wlan device. Without this, p2p0 will be
|
|
# selected automatically instead of wlan0, and Wi-Fi will not work.
|
|
if ! grep -q "i wlan0" /etc/conf.d/wpa_supplicant ; then
|
|
sed -i 's/-Dwext,nl80211/-Dwext,nl80211 -i wlan0/' /etc/conf.d/wpa_supplicant
|
|
fi
|