Update README with more wpa
This commit is contained in:
parent
26eaa7becc
commit
1c353bec21
2 changed files with 17 additions and 2 deletions
|
@ -49,8 +49,7 @@ initramfs (which I am haven't done yet)
|
||||||
4: Copy firmware.service to /etc/systemd/system/
|
4: Copy firmware.service to /etc/systemd/system/
|
||||||
5: ln -s /etc/systemd/system/firmware.service /etc/systemd/system/multi-user.target.wants/firmware.service
|
5: ln -s /etc/systemd/system/firmware.service /etc/systemd/system/multi-user.target.wants/firmware.service
|
||||||
|
|
||||||
6: Create a wpa_supplicant-nl80211@wlan0.service with your wpa_supplicant.conf
|
6: cp wpa_supplicant-nl80211@wlan0.service /etc/systemd/system/ and then ln -s /etc/systemd/system/wpa_supplicant-nl80211@wlan0.service /etc/systemd/system/multi-user.target.wants/wpa_supplicant-nl80211@wlan0.service Idealy you can use the original service file but since the ramdisk does not load the module, it requires the firmware.service
|
||||||
details
|
|
||||||
7: ln -s /etc/systemd/system/dhcpcd.service /etc/systemd/system/multi-user.target.wants/dhcpcd.service
|
7: ln -s /etc/systemd/system/dhcpcd.service /etc/systemd/system/multi-user.target.wants/dhcpcd.service
|
||||||
8: ln -s /etc/systemd/system/sshd.service /etc/systemd/system/multi-user.target.wants/sshd.service
|
8: ln -s /etc/systemd/system/sshd.service /etc/systemd/system/multi-user.target.wants/sshd.service
|
||||||
|
|
||||||
|
|
16
wpa_supplicant-nl80211@.service
Normal file
16
wpa_supplicant-nl80211@.service
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
[Unit]
|
||||||
|
Description=WPA supplicant daemon (interface- and nl80211 driver-specific version)
|
||||||
|
#Requires=sys-subsystem-net-devices-%i.device
|
||||||
|
#After=sys-subsystem-net-devices-%i.device
|
||||||
|
Requires=firmware.service
|
||||||
|
After=firmware.service
|
||||||
|
|
||||||
|
# NetworkManager users will probably want the dbus version instead.
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
ExecStart=/usr/bin/sleep 2
|
||||||
|
ExecStart=/usr/sbin/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant.conf -Dnl80211 -i%I
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
Alias=multi-user.target.wants/wpa_supplicant-nl80211@wlan0.service
|
Loading…
Reference in a new issue