From 528dd36c875a07f06c37eb89188b530eb6d25744 Mon Sep 17 00:00:00 2001 From: Sergiusz Urbaniak Date: Thu, 13 Oct 2016 14:06:31 +0200 Subject: [PATCH] Makefile: add minikube-iso target --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1e126cd4f..214864730 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,17 @@ localkube-image: out/localkube make -C deploy/docker VERSION=$(VERSION) iso: - cd deploy/iso && ./build.sh + cd deploy/iso/boot2docker && ./build.sh + +minikube-iso: + [ ! -e $(BUILD_DIR)/buildroot ] && \ + mkdir -p $(BUILD_DIR) && \ + git clone https://github.com/buildroot/buildroot $(BUILD_DIR)/buildroot && \ + cd $(BUILD_DIR)/buildroot && \ + git checkout 2016.08 && \ + make BR2_EXTERNAL=../../deploy/iso/minikube-iso minikube_defconfig && \ + cd ../.. + cd $(BUILD_DIR)/buildroot && make .PHONY: integration integration: out/minikube -- GitLab