summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngelo Compagnucci <angelo.compagnucci@gmail.com>2017-04-06 18:58:25 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-04-06 22:24:18 +0200
commit31d4fa76f0fcadb82512361eb762f96cefdfc669 (patch)
tree7fa2f88b390f3cc6d5d8fa0649717abff9671b92
parentb0448016ba97aea7f3047e8776909c4a8052e385 (diff)
downloadbuildroot-31d4fa76f0fcadb82512361eb762f96cefdfc669.tar.gz
buildroot-31d4fa76f0fcadb82512361eb762f96cefdfc669.zip
linux: Add CIP SLTS selection option
This patch adds an easy way to select the CIP project SLTS kernel within the kernel menu. Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> [Thomas: remove BR2_CIP_KERNEL_REPO_URL option.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--linux/Config.in20
-rw-r--r--linux/linux.mk2
2 files changed, 22 insertions, 0 deletions
diff --git a/linux/Config.in b/linux/Config.in
index c5565e55d8..10bb2505ad 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -28,6 +28,25 @@ choice
config BR2_LINUX_KERNEL_LATEST_VERSION
bool "Latest version (4.10.8)"
+config BR2_LINUX_KERNEL_LATEST_CIP_VERSION
+ bool "Latest CIP SLTS version (v4.4.55-cip3)"
+ help
+ CIP launched in the spring of 2016 to address the needs of
+ organizations in industries such as power generation and
+ distribution, water, oil and gas, transportation, building
+ automation and more for reliable and secure Linux-based
+ embedded systems that can be sustained over a period of
+ 10 to as many as 60 years.
+ The project's goal is to provide an open source base layer
+ of industrial-grade software that permits the use and
+ implementation of software building blocks that meet
+ these requirements.
+
+ The CIP community plans to maintain 4.4 for security and
+ bug fixes for more than 10 years.
+
+ https://www.cip-project.org
+
config BR2_LINUX_KERNEL_CUSTOM_VERSION
bool "Custom version"
help
@@ -98,6 +117,7 @@ endif
config BR2_LINUX_KERNEL_VERSION
string
default "4.10.8" if BR2_LINUX_KERNEL_LATEST_VERSION
+ default "v4.4.55-cip3" if BR2_LINUX_KERNEL_LATEST_CIP_VERSION
default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE \
if BR2_LINUX_KERNEL_CUSTOM_VERSION
default "custom" if BR2_LINUX_KERNEL_CUSTOM_TARBALL
diff --git a/linux/linux.mk b/linux/linux.mk
index f68a3ff7f8..7973677d05 100644
--- a/linux/linux.mk
+++ b/linux/linux.mk
@@ -30,6 +30,8 @@ LINUX_SITE_METHOD = hg
else ifeq ($(BR2_LINUX_KERNEL_CUSTOM_SVN),y)
LINUX_SITE = $(call qstrip,$(BR2_LINUX_KERNEL_CUSTOM_REPO_URL))
LINUX_SITE_METHOD = svn
+else ifeq ($(BR2_LINUX_KERNEL_LATEST_CIP_VERSION),y)
+LINUX_SITE = git://git.kernel.org/pub/scm/linux/kernel/git/bwh/linux-cip.git
else
LINUX_SOURCE = linux-$(LINUX_VERSION).tar.xz
ifeq ($(BR2_LINUX_KERNEL_CUSTOM_VERSION),y)
OpenPOWER on IntegriCloud