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:11:20 +0000 |
commit | c48ce5d693f10404c91815e5ca0e3f3deca08411 (patch) | |
tree | 81572ab7dd5b11f860f2e93f58dfa13c35a258c0 | |
parent | f1bf9ed634be00674c5a02836da8d7647c9d67e5 (diff) |
agl-ic-container: Add missing kernel config for lxc-net on qemuneedlefish_14.0.1needlefish/14.0.114.0.1
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
-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 |