From: Eric Le Bihan Date: Mon, 31 Mar 2014 09:44:18 +0000 (+0200) Subject: systemd: needs kernel headers >= 3.8 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6dc3b6dd09638d1966daef31e1a1ec5b09b69432;p=buildroot.git systemd: needs kernel headers >= 3.8 Systemd needs Linux headers >= 3.8 because it uses IFLA_GRE_FLOWINFO, IFLA_IPTUN_FLAGS from linux/if_tunnel.h. Fixes http://autobuild.buildroot.org/results/ad3/ad3b4003dc50582a493f1156234d83652104a6bf/ Signed-off-by: Eric Le Bihan Signed-off-by: Thomas Petazzoni --- diff --git a/system/Config.in b/system/Config.in index 8ff8d49ac2..ba225cee18 100644 --- a/system/Config.in +++ b/system/Config.in @@ -96,12 +96,12 @@ config BR2_INIT_SYSTEMD depends on BR2_TOOLCHAIN_HAS_SSP depends on BR2_USE_MMU depends on !BR2_PREFER_STATIC_LIB - depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 + depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8 select BR2_PACKAGE_SYSTEMD -comment 'systemd needs an (e)glibc toolchain, headers >= 3.0' +comment 'systemd needs an (e)glibc toolchain, headers >= 3.8' depends on !(BR2_TOOLCHAIN_USES_GLIBC \ - && BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0) + && BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8) config BR2_INIT_NONE bool "None"