From abd1c5f12e7585b35b5bd6769d3dceb97efdd0c7 Mon Sep 17 00:00:00 2001 From: Peter Steenbergen Date: Wed, 22 Apr 2020 14:45:32 +0200 Subject: [PATCH] MycroftOS: Buildroot: Include menuconfig and savedefconfig to Makefile. --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a50dbbbf..f2631749 100644 --- a/Makefile +++ b/Makefile @@ -35,9 +35,17 @@ endif clean: $(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) clean +menuconfig: + $(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) menuconfig + +savedefconfig: + $(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) savedefconfig + help: @echo "Supported targets: $(TARGETS)" @echo "Run 'make ' to build a target image." @echo "Run 'make all' to build all target images." @echo "Run 'make clean' to clean the build output." - @echo "Run 'make -config' to configure buildroot for a target." + @echo "Run 'make -config' to configure MycroftOS for a target." + @echo "Run 'make menuconfig' to update current config utilising a menu based program." + @echo "Run 'make savedefconfig' to save current config back to config directory."