From 45e44dd407ba4b86191543b8108a4cd4a12cfb09 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 20 Jul 2023 10:58:21 +0300 Subject: [PATCH] linuxPackages: set IP_ROUTE_MULTIPATH to yes This already gets set to yes by the x86 defconfig, but is not set to true on aarch64, which means you can't program IPv4 routes with multiple nexthops there. Set this to y unconditionally, so we don't have this odd mismatch between x86_64 and aarch64. --- pkgs/os-specific/linux/kernel/common-config.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index dccecb62175e..688c13499b1a 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -170,6 +170,7 @@ let NET = yes; IP_ADVANCED_ROUTER = yes; IP_PNP = no; + IP_ROUTE_MULTIPATH = yes; IP_VS_PROTO_TCP = yes; IP_VS_PROTO_UDP = yes; IP_VS_PROTO_ESP = yes;