diff options
author | Hiroyuki Ishii <ishii.hiroyuki002@jp.panasonic.com> | 2022-09-16 11:53:51 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2022-09-16 06:03:14 +0000 |
commit | 379435786e828d4ac2db14e071d580d112d8119f (patch) | |
tree | 5e880edaeb7e99de0a4a0bb072c75acf6e7e7308 /meta-agl-ic-container/recipes-kernel/linux | |
parent | 16ad1d30935e3ca31bc8e15cf82e4498829b429e (diff) |
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 <ishii.hiroyuki002@jp.panasonic.com>
Change-Id: I73169289c84755e0eb9a28658e8337c79824ab1b
Diffstat (limited to 'meta-agl-ic-container/recipes-kernel/linux')
-rw-r--r-- | meta-agl-ic-container/recipes-kernel/linux/linux/lxc-net.cfg | 1 |
1 files changed, 1 insertions, 0 deletions
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 |