reewide: Purge all uses stdenv.system and top-level system
It is deprecated and will be removed after 18.09.
This commit is contained in:
@@ -114,7 +114,7 @@ let
|
||||
IP_DCCP_CCID3 = no; # experimental
|
||||
CLS_U32_PERF = yes;
|
||||
CLS_U32_MARK = yes;
|
||||
BPF_JIT = when (stdenv.system == "x86_64-linux") yes;
|
||||
BPF_JIT = when (stdenv.hostPlatform.system == "x86_64-linux") yes;
|
||||
WAN = yes;
|
||||
# Required by systemd per-cgroup firewalling
|
||||
CGROUP_BPF = option yes;
|
||||
@@ -184,7 +184,7 @@ let
|
||||
FB_VESA = yes;
|
||||
FRAMEBUFFER_CONSOLE = yes;
|
||||
FRAMEBUFFER_CONSOLE_ROTATION = yes;
|
||||
FB_GEODE = when (stdenv.system == "i686-linux") yes;
|
||||
FB_GEODE = when (stdenv.hostPlatform.system == "i686-linux") yes;
|
||||
};
|
||||
|
||||
video = {
|
||||
@@ -497,7 +497,7 @@ let
|
||||
};
|
||||
|
||||
# Support x2APIC (which requires IRQ remapping)
|
||||
x2apic = optionalAttrs (stdenv.system == "x86_64-linux") {
|
||||
x2apic = optionalAttrs (stdenv.hostPlatform.system == "x86_64-linux") {
|
||||
X86_X2APIC = yes;
|
||||
IRQ_REMAP = yes;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user