linux: add policy routing config flag for aarch64

CONFIG_IP_MULTIPLE_TABLES is part of the default x86 kernel config but
absent from the Aarch64 one. Adding explicitely this flag together
with its dependency IP_ADVANCED_ROUTER.

Both of these config flags are needed to use the routing policy
facilities.
This commit is contained in:
Félix Baylac-Jacqué 2020-02-29 23:57:43 +01:00
parent f727955f3b
commit 6896b1cb1d
No known key found for this signature in database
GPG key ID: EFD315F31848DBA4

View file

@ -104,6 +104,7 @@ let
networking = {
NET = yes;
IP_ADVANCED_ROUTER = yes;
IP_PNP = no;
IP_VS_PROTO_TCP = yes;
IP_VS_PROTO_UDP = yes;
@ -126,6 +127,7 @@ let
IP_ROUTE_VERBOSE = yes;
IP_MROUTE_MULTIPLE_TABLES = yes;
IP_MULTICAST = yes;
IP_MULTIPLE_TABLES = yes;
IPV6_ROUTER_PREF = yes;
IPV6_ROUTE_INFO = yes;
IPV6_OPTIMISTIC_DAD = yes;