Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions srcpkgs/iwd/files/net.connman.ead.service
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[D-BUS Service]
Name=net.connman.ead
Exec=/usr/libexec/ead
User=root
4 changes: 4 additions & 0 deletions srcpkgs/iwd/files/net.connman.iwd.service
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[D-BUS Service]
Name=net.connman.iwd
Exec=/usr/libexec/iwd
User=root
11 changes: 10 additions & 1 deletion srcpkgs/iwd/template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Template file for 'iwd'
pkgname=iwd
version=3.12
revision=1
revision=2
build_style=gnu-configure
configure_args="--disable-systemd-service --enable-pie
--enable-dbus-policy --enable-wired"
Expand All @@ -26,4 +26,13 @@ make_check_pre="dbus-run-session"
post_install() {
vsv ead
vsv iwd
# D-Bus activation files: upstream gates these behind the systemd-service
# build conditional, so they aren't installed when --disable-systemd-service
# is passed. Install them manually so NetworkManager (and other clients)
# can D-Bus-activate iwd/ead on demand without needing the runit services
# to be enabled.
vinstall ${FILESDIR}/net.connman.iwd.service 644 \
usr/share/dbus-1/system-services
vinstall ${FILESDIR}/net.connman.ead.service 644 \
usr/share/dbus-1/system-services
}