kernel: Remove AUFS kernel

We default to overlay, so no need to carry AUFS patches and kernel.

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
Rolf Neugebauer
2017-03-13 13:47:47 +00:00
parent f1f329db5b
commit c3fc6faa35
3 changed files with 3 additions and 106 deletions

View File

@@ -2,10 +2,6 @@ DEBUG ?= 0
all: bzImage push
ifdef AUFS
KERNEL_VERSION=4.9.14
DEPS=Dockerfile.aufs Makefile kernel_config kernel_config.debug kernel_config.aufs patches-4.9
else
ifdef LTS4.4
KERNEL_VERSION=4.4.53
DEPS=Dockerfile.4.4 Makefile kernel_config kernel_config.debug kernel_config.4.4 patches-4.4
@@ -13,7 +9,6 @@ else
KERNEL_VERSION=4.9.14
DEPS=Dockerfile Makefile kernel_config kernel_config.debug patches-4.9
endif
endif
kernel.tag: $(DEPS)
BUILD=$$( tar cf - $^ | docker build -f $< --build-arg DEBUG=$(DEBUG) --build-arg KERNEL_VERSION=$(KERNEL_VERSION) -q - ) && [ -n "$$BUILD" ] && echo "Built $$BUILD" && echo "$$BUILD" > $@