File tree 1 file changed +4
-2
lines changed 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,9 @@ ZIP ?= zip
8
8
PLANTUML ?= plantuml # may also be "java -jar plantuml.jar" if installed elsewhere
9
9
10
10
# The KCONFIG programs are only needed for re-generating the ".config" file.
11
- KCONFIG_CONF ?= kconfig-conf
12
- KCONFIG_MCONF ?= kconfig-mconf
11
+ # You can install the python "kconfiglib", if you don't have kconfig/kbuild.
12
+ KCONFIG_CONF ?= $(shell command -v kconfig-conf || command -v kbuild-conf || echo oldconfig)
13
+ KCONFIG_MCONF ?= $(shell command -v kconfig-mconf || command -v kbuild-mconf || echo menuconfig)
13
14
14
15
GOOS ?= $(shell $(GO ) env GOOS)
15
16
ifeq ($(GOOS ) ,windows)
@@ -68,6 +69,7 @@ config: Kconfig
68
69
$(KCONFIG_CONF ) $<
69
70
70
71
menuconfig : Kconfig
72
+ MENUCONFIG_STYLE=aquatic \
71
73
$(KCONFIG_MCONF ) $<
72
74
73
75
# Copy the default config, if not overridden locally
You can’t perform that action at this time.
0 commit comments