mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 13:30:45 -05:00
This patch adopts netlink policies and command definitions generated by ynl-gen, thus completing the conversion to YNL. Given that the old and new policies are functionally identical and have just been moved to a new file, it serves to verify that the policies generated from the spec are identical to the previous policy code. The following functions are renamed: wg_get_device_dump() -> wg_get_device_dumpit() wg_set_device() -> wg_set_device_doit() The new files are covered by the existing drivers/net/wireguard/ pattern in MAINTAINERS. No behavioural changes intended. Signed-off-by: Asbjørn Sloth Tønnesen <ast@fiberby.net> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
18 lines
503 B
Makefile
18 lines
503 B
Makefile
ccflags-y := -D'pr_fmt(fmt)=KBUILD_MODNAME ": " fmt'
|
|
ccflags-$(CONFIG_WIREGUARD_DEBUG) += -DDEBUG
|
|
wireguard-y := main.o
|
|
wireguard-y += noise.o
|
|
wireguard-y += device.o
|
|
wireguard-y += peer.o
|
|
wireguard-y += timers.o
|
|
wireguard-y += queueing.o
|
|
wireguard-y += send.o
|
|
wireguard-y += receive.o
|
|
wireguard-y += socket.o
|
|
wireguard-y += peerlookup.o
|
|
wireguard-y += allowedips.o
|
|
wireguard-y += ratelimiter.o
|
|
wireguard-y += cookie.o
|
|
wireguard-y += netlink.o generated/netlink.o
|
|
obj-$(CONFIG_WIREGUARD) := wireguard.o
|