Skip to content

Commit

Permalink
kernel: add missing symbols for lxc
Browse files Browse the repository at this point in the history
These symbols are needed to satisfy lxc dependencies.

Note - this needs to be merged before openwrt/packages#25719

Signed-off-by: John Audia <[email protected]>
  • Loading branch information
graysky2 committed Jan 20, 2025
1 parent f80f521 commit 9ab7325
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions package/kernel/linux/modules/netsupport.mk
Original file line number Diff line number Diff line change
Expand Up @@ -1649,3 +1649,21 @@ define KernelPackage/qrtr-mhi/description
endef

$(eval $(call KernelPackage,qrtr-mhi))

define KernelPackage/unix-diag
TITLE:=UNIX socket monitoring interface
KCONFIG:=CONFIG_UNIX_DIAG
FILES:= $(LINUX_DIR)/net/unix/unix_diag.ko
AUTOLOAD:=$(call AutoProbe,unix_diag)
endef

$(eval $(call KernelPackage,unix-diag))

define KernelPackage/packet-diag
TITLE:=Packet sockets monitoring interface
KCONFIG:=CONFIG_PACKET_DIAG
FILES:= $(LINUX_DIR)/net/packet/af_packet_diag.ko
AUTOLOAD:=$(call AutoProbe,af_packet_diag)
endef

$(eval $(call KernelPackage,packet-diag))

0 comments on commit 9ab7325

Please sign in to comment.