From 379435786e828d4ac2db14e071d580d112d8119f Mon Sep 17 00:00:00 2001 From: Hiroyuki Ishii Date: Fri, 16 Sep 2022 11:53:51 +0900 Subject: agl-ic-container: Add missing kernel config for lxc-net on qemu On qemu network bridge setting by lxc-net service fails because of missing kernel module as shown as following message: iptables v1.8.7 (legacy): unknown option "--checksum-fill" With this change we'd like to add missing kernel config to fix that. Bug-AGL: SPEC-4464 Signed-off-by: Hiroyuki Ishii Change-Id: I73169289c84755e0eb9a28658e8337c79824ab1b --- meta-agl-ic-container/recipes-kernel/linux/linux/lxc-net.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-agl-ic-container/recipes-kernel/linux/linux/lxc-net.cfg b/meta-agl-ic-container/recipes-kernel/linux/linux/lxc-net.cfg index e9bd7b80..454c0571 100644 --- a/meta-agl-ic-container/recipes-kernel/linux/linux/lxc-net.cfg +++ b/meta-agl-ic-container/recipes-kernel/linux/linux/lxc-net.cfg @@ -1,5 +1,6 @@ CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m CONFIG_IP_NF_FILTER=m CONFIG_NF_NAT=m CONFIG_NF_CONNTRACK=y -- cgit 1.2.3-korg