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 <therealgraysky@proton.me>
  • Loading branch information
graysky2 committed Jan 12, 2025
1 parent b52e897 commit 28fb96f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions config/Config-kernel.in
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,9 @@ config KERNEL_DEBUG_GPIO
bool "Compile the kernel with gpio debugging"
select KERNEL_DEBUG_KERNEL

config KERNEL_CHECKPOINT_RESTORE
bool

config KERNEL_COREDUMP
bool

Expand Down
18 changes: 18 additions & 0 deletions package/kernel/linux/modules/netsupport.mk
Original file line number Diff line number Diff line change
Expand Up @@ -1648,3 +1648,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 28fb96f

Please sign in to comment.