diff options
author | Adrian Stratulat <adrian.stratulat@enea.com> | 2020-06-09 13:10:17 +0200 |
---|---|---|
committer | Adrian Stratulat <adrian.stratulat@enea.com> | 2020-06-11 12:31:55 +0200 |
commit | 2e53208e8c1eaf83fb6b6411f8465f2bdf1d6069 (patch) | |
tree | a75c155496521cf9fb1931751aa573d8bb33a1ea /features/openvswitch | |
parent | 9153e7a0c6a10dfe5ada1661ab116068cfc364ee (diff) | |
download | enea-kernel-cache-ampere-4.14.tar.gz |
Add supporting config snippetsampere-4.14
Change-Id: Ic2f7c31c8ad274f4c3677320b81ccb0407612711
Signed-off-by: Adrian Stratulat <adrian.stratulat@enea.com>
Diffstat (limited to 'features/openvswitch')
-rw-r--r-- | features/openvswitch/ingress_policy.cfg | 3 | ||||
-rw-r--r-- | features/openvswitch/kernel_ovs.scc | 5 | ||||
-rw-r--r-- | features/openvswitch/openvswitch.cfg | 3 | ||||
-rw-r--r-- | features/openvswitch/openvswitch.scc | 5 | ||||
-rw-r--r-- | features/openvswitch/openvswitch_support.scc | 5 | ||||
-rw-r--r-- | features/openvswitch/tun.cfg | 1 |
6 files changed, 22 insertions, 0 deletions
diff --git a/features/openvswitch/ingress_policy.cfg b/features/openvswitch/ingress_policy.cfg new file mode 100644 index 0000000..e0e09a5 --- /dev/null +++ b/features/openvswitch/ingress_policy.cfg | |||
@@ -0,0 +1,3 @@ | |||
1 | NET_CLS_BASIC=m | ||
2 | NET_ACT_POLICE=m | ||
3 | CONFIG_NET_SCH_INGRESS=m | ||
diff --git a/features/openvswitch/kernel_ovs.scc b/features/openvswitch/kernel_ovs.scc new file mode 100644 index 0000000..2e3c131 --- /dev/null +++ b/features/openvswitch/kernel_ovs.scc | |||
@@ -0,0 +1,5 @@ | |||
1 | define KFEATURE_DESCRIPTION "Enable in kernel OpenvSwitch module" | ||
2 | define KFEATURE_COMPATIBILITY board | ||
3 | |||
4 | include features/openvswitch/openvswitch_support.scc | ||
5 | kconf non-hardware openvswitch.cfg | ||
diff --git a/features/openvswitch/openvswitch.cfg b/features/openvswitch/openvswitch.cfg new file mode 100644 index 0000000..e93de69 --- /dev/null +++ b/features/openvswitch/openvswitch.cfg | |||
@@ -0,0 +1,3 @@ | |||
1 | CONFIG_OPENVSWITCH=m | ||
2 | CONFIG_OPENVSWITCH_GRE=m | ||
3 | CONFIG_OPENVSWITCH_VXLAN=m | ||
diff --git a/features/openvswitch/openvswitch.scc b/features/openvswitch/openvswitch.scc new file mode 100644 index 0000000..cf47c06 --- /dev/null +++ b/features/openvswitch/openvswitch.scc | |||
@@ -0,0 +1,5 @@ | |||
1 | define KFEATURE_DESCRIPTION "Enable OpenvSwitch in-tree kernel module" | ||
2 | define KFEATURE_COMPATIBILITY board | ||
3 | |||
4 | kconf non-hardware openvswitch.cfg | ||
5 | |||
diff --git a/features/openvswitch/openvswitch_support.scc b/features/openvswitch/openvswitch_support.scc new file mode 100644 index 0000000..59d5f36 --- /dev/null +++ b/features/openvswitch/openvswitch_support.scc | |||
@@ -0,0 +1,5 @@ | |||
1 | define KFEATURE_DESCRIPTION "Enable OpenvSwitch support dependencies in kernel" | ||
2 | define KFEATURE_COMPATIBILITY board | ||
3 | |||
4 | kconf non-hardware ingress_policy.cfg | ||
5 | kconf non-hardware tun.cfg | ||
diff --git a/features/openvswitch/tun.cfg b/features/openvswitch/tun.cfg new file mode 100644 index 0000000..12009e3 --- /dev/null +++ b/features/openvswitch/tun.cfg | |||
@@ -0,0 +1 @@ | |||
CONFIG_TUN=m | |||