diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-12-08 15:50:14 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-12-08 20:51:42 +0100 |
commit | 3467aef18386068085f0848e245c8bd4ca1c9863 (patch) | |
tree | 8ff2af0dbb22ab584a23a1eb41b6e2a0583df331 | |
parent | cad6f1fabb6b67bb2c6b5222cd4d3cfd351b22fc (diff) | |
download | buildroot-3467aef18386068085f0848e245c8bd4ca1c9863.tar.gz buildroot-3467aef18386068085f0848e245c8bd4ca1c9863.zip |
configs/bananapi_m2_ultra: add kernel headers version option
The bananapi_m2_plus defconfig uses a 4.18 kernel, but doesn't specify
anything for the kernel headers version, so the Buildroot default gets
used, which currently is 4.19. Since 4.19 is newer than 4.18,
Buildroot rightfully whines:
Incorrect selection of kernel headers: expected 4.19.x, got 4.18.x
Let's fix this by telling this defconfig to use the headers from the
kernel, and that they are of version 4.18.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/131216938
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | configs/bananapi_m2_ultra_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/bananapi_m2_ultra_defconfig b/configs/bananapi_m2_ultra_defconfig index 5dd3edd664..bc1d31a60a 100644 --- a/configs/bananapi_m2_ultra_defconfig +++ b/configs/bananapi_m2_ultra_defconfig @@ -1,5 +1,6 @@ BR2_arm=y BR2_cortex_a7=y +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_18=y BR2_TARGET_GENERIC_ISSUE="Welcome to Bananapi M2 Ultra" BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh" BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/bananapi/bananapi-m2-ultra/genimage.cfg" |