Skip to content

Commit 9f21f1e

Browse files
committed
Fix linux-menuconfig Makefile target.
It now uses the output-* directory corresponding to the target architecture under out/buildroot. Fixes: d1829f2 ("small fixes") Signed-off-by: Francis Laniel <[email protected]>
1 parent 06022e8 commit 9f21f1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,9 @@ iso-menuconfig: ## Configure buildroot configuration
313313

314314
# Change the kernel configuration for the minikube ISO
315315
linux-menuconfig-%: ## Configure Linux kernel configuration
316-
$(MAKE) -C $(BUILD_DIR)/buildroot/output/build/linux-$(KERNEL_VERSION)/ menuconfig
317-
$(MAKE) -C $(BUILD_DIR)/buildroot/output/build/linux-$(KERNEL_VERSION)/ savedefconfig
318-
cp $(BUILD_DIR)/buildroot/output/build/linux-$(KERNEL_VERSION)/defconfig deploy/iso/minikube-iso/board/minikube/$*/linux_$*_defconfig
316+
$(MAKE) -C $(BUILD_DIR)/buildroot/output-$*/build/linux-$(KERNEL_VERSION)/ menuconfig
317+
$(MAKE) -C $(BUILD_DIR)/buildroot/output-$*/build/linux-$(KERNEL_VERSION)/ savedefconfig
318+
cp $(BUILD_DIR)/buildroot/output-$*/build/linux-$(KERNEL_VERSION)/defconfig deploy/iso/minikube-iso/board/minikube/$*/linux_$*_defconfig
319319

320320
out/minikube-%.iso: $(shell find "deploy/iso/minikube-iso" -type f)
321321
ifeq ($(IN_DOCKER),1)

0 commit comments

Comments
 (0)