kernel: Don't build a debug kernel for 4.13

We already have too many kernels to build and 4.13 will be EOLed soon

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
Rolf Neugebauer 2017-11-21 11:44:00 +00:00
parent f79c392ce3
commit 717829ea89
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,8 @@ RUN DVER=$(basename $(find /tmp/kernel-modules/lib/modules/ -mindepth 1 -maxdept
-path './arch/*/include' -prune -o \
-path './scripts/*' -prune -o \
-type f \( -name 'Makefile*' -o -name 'Kconfig*' -o -name 'Kbuild*' -o \
-name '*.lds' -o -name '*.pl' -o -name '*.sh' \) | \
-name '*.lds' -o -name '*.pl' -o -name '*.sh' -o \
-name 'objtool' -o -name 'fixdep' -o -name 'randomize_layout_seed.h' \) | \
tar cf - -T - | (cd $dir; tar xf -) && \
( cd /tmp && tar cf /out/kernel-dev.tar usr/src )

View File

@ -175,7 +175,6 @@ endef
$(eval $(call kernel,4.14,4.14.x,$(EXTRA)))
$(eval $(call kernel,4.14,4.14.x,-dbg))
$(eval $(call kernel,4.13.13,4.13.x,$(EXTRA)))
$(eval $(call kernel,4.13.13,4.13.x,-dbg))
$(eval $(call kernel,4.9.62,4.9.x,$(EXTRA)))
$(eval $(call kernel,4.9.62,4.9.x,-dbg))
$(eval $(call kernel,4.4.98,4.4.x,$(EXTRA)))