From 86db8293c92075a2ca89e1385d1468f35c75cda4 Mon Sep 17 00:00:00 2001 From: Peter Vicman Date: Sat, 7 May 2016 11:37:30 +0200 Subject: [PATCH] projects/imx6: use Linux kernel 4.4 by default to use kernel 3.14 from solidrun use extra build parameter LINUX_VERSION="sr-3.14" --- projects/imx6/options | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/projects/imx6/options b/projects/imx6/options index 48c51ea818..179e170d45 100644 --- a/projects/imx6/options +++ b/projects/imx6/options @@ -62,12 +62,12 @@ # Additional kernel make parameters (for example to specify the u-boot loadaddress) KERNEL_MAKE_EXTRACMD="" - # Kernel to use. values can be: - # default: default mainline kernel - if [ -z "$LINUX_VERSION" ]; then - LINUX="imx6" - else + # Kernel to use. + # default is 4.4 from xbian + if [ -z "$LINUX_VERSION" -o "$LINUX_VERSION" != "sr-3.14" ]; then LINUX="imx6-4.4-xbian" + else + LINUX="imx6" fi