kernel: Introduce per arch kernels and drop 4.4.x for arm64

We may soon get another arch, so wanted to set the template
for having per arch list of kernels to compile.

While at it also drop the 4.4.x kernel for arm64. We never really
tested it and folks should be on 4.9 or 4.14 anyway. I'll leave
4.4.x for x86 for now as it might be useful to test for regressions.

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
Rolf Neugebauer 2018-02-21 10:50:17 +00:00
parent bcc72c3502
commit dbb14dfb69
2 changed files with 5 additions and 3648 deletions

View File

@ -41,10 +41,10 @@ endif
PUSH_MANIFEST:=$(shell git rev-parse --show-toplevel)/scripts/push-manifest.sh
ARCH := $(shell uname -m)
ifeq ($(ARCH), x86_64)
ifeq ($(ARCH),x86_64)
SUFFIX=-amd64
endif
ifeq ($(ARCH), aarch64)
ifeq ($(ARCH),aarch64)
SUFFIX=-arm64
endif
@ -219,7 +219,10 @@ $(eval $(call kernel,4.14.20,4.14.x,$(EXTRA),$(DEBUG)))
$(eval $(call kernel,4.14.20,4.14.x,,-dbg))
$(eval $(call kernel,4.14.18,4.14.x,-rt,))
$(eval $(call kernel,4.9.82,4.9.x,$(EXTRA),$(DEBUG)))
ifeq ($(ARCH),x86_64)
$(eval $(call kernel,4.4.116,4.4.x,$(EXTRA),$(DEBUG)))
endif
# Target for kernel config
kconfig: | sources

File diff suppressed because it is too large Load Diff