Skip to content

Commit 788076f

Browse files
committed
Fix Yocto RDEPENDS and FILES syntax + add wg-quick.
The Yocto syntax changed from _${PN} to :${PN} v4. Closes #93.
1 parent 6d0698b commit 788076f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

meta/recipes-networking/wireguard-client-config/wireguard-client-config_1.0.1.bb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
66
# procps is needed to work around the following wireguard error:
77
# sysctl: invalid option -- 'r'
88
# iproute2 is needed as busybox ip command does not implement all needed features.
9-
RDEPENDS_${PN} = "wireguard-tools procps iproute2"
9+
RDEPENDS:${PN} = "wireguard-tools wireguard-tools-wg-quick procps iproute2"
1010

1111
SRC_URI = " \
1212
file://wireguard.init \
@@ -31,4 +31,4 @@ do_install() {
3131
install -m 0640 ${WORKDIR}/wg0.conf ${D}${sysconfdir}/wireguard/wg0.conf
3232
}
3333

34-
FILES_${PN} = "${sysconfdir}"
34+
FILES:${PN} = "${sysconfdir}"

0 commit comments

Comments
 (0)