Merge pull request #3436 from Ptitpote/kconfig-tag-patch

Add the possibility to tag linuxkit/kconfig with a custom tag
This commit is contained in:
Rolf Neugebauer
2019-11-06 19:50:02 +00:00
committed by GitHub

View File

@@ -271,6 +271,12 @@ endif
# Target for kernel config
kconfig:
ifeq (${KCONFIG_TAG},)
docker build --no-cache -f Dockerfile.kconfig \
--build-arg KERNEL_VERSIONS="$(KERNEL_VERSIONS)" \
-t linuxkit/kconfig .
else
docker build --no-cache -f Dockerfile.kconfig \
--build-arg KERNEL_VERSIONS="$(KERNEL_VERSIONS)" \
-t linuxkit/kconfig:${KCONFIG_TAG} .
endif