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
commit 4092a10063
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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