|
@@ -321,7 +321,7 @@ $(CONFIG)/mconf:
|
|
fi
|
|
fi
|
|
|
|
|
|
menuconfig: $(CONFIG)/mconf
|
|
menuconfig: $(CONFIG)/mconf
|
|
- @-mkdir -p $(CONFIG)/buildroot-config
|
|
|
|
|
|
+ @mkdir -p $(CONFIG)/buildroot-config
|
|
@if ! KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
@if ! KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
$(CONFIG)/mconf $(CONFIG_CONFIG_IN); then \
|
|
$(CONFIG)/mconf $(CONFIG_CONFIG_IN); then \
|
|
@@ -329,39 +329,39 @@ menuconfig: $(CONFIG)/mconf
|
|
fi
|
|
fi
|
|
|
|
|
|
config: $(CONFIG)/conf
|
|
config: $(CONFIG)/conf
|
|
- @-mkdir -p $(CONFIG)/buildroot-config
|
|
|
|
|
|
+ @mkdir -p $(CONFIG)/buildroot-config
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
$(CONFIG)/conf $(CONFIG_CONFIG_IN)
|
|
$(CONFIG)/conf $(CONFIG_CONFIG_IN)
|
|
|
|
|
|
oldconfig: $(CONFIG)/conf
|
|
oldconfig: $(CONFIG)/conf
|
|
- @-mkdir -p $(CONFIG)/buildroot-config
|
|
|
|
|
|
+ @mkdir -p $(CONFIG)/buildroot-config
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
|
|
$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
|
|
|
|
|
|
randconfig: $(CONFIG)/conf
|
|
randconfig: $(CONFIG)/conf
|
|
- @-mkdir -p $(CONFIG)/buildroot-config
|
|
|
|
|
|
+ @mkdir -p $(CONFIG)/buildroot-config
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
$(CONFIG)/conf -r $(CONFIG_CONFIG_IN)
|
|
$(CONFIG)/conf -r $(CONFIG_CONFIG_IN)
|
|
|
|
|
|
allyesconfig: $(CONFIG)/conf
|
|
allyesconfig: $(CONFIG)/conf
|
|
cat $(CONFIG_DEFCONFIG) > .config
|
|
cat $(CONFIG_DEFCONFIG) > .config
|
|
- @-mkdir -p $(CONFIG)/buildroot-config
|
|
|
|
|
|
+ @mkdir -p $(CONFIG)/buildroot-config
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
$(CONFIG)/conf -y $(CONFIG_CONFIG_IN)
|
|
$(CONFIG)/conf -y $(CONFIG_CONFIG_IN)
|
|
#sed -i -e "s/^CONFIG_DEBUG.*/# CONFIG_DEBUG is not set/" .config
|
|
#sed -i -e "s/^CONFIG_DEBUG.*/# CONFIG_DEBUG is not set/" .config
|
|
|
|
|
|
allnoconfig: $(CONFIG)/conf
|
|
allnoconfig: $(CONFIG)/conf
|
|
- @-mkdir -p $(CONFIG)/buildroot-config
|
|
|
|
|
|
+ @mkdir -p $(CONFIG)/buildroot-config
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
$(CONFIG)/conf -n $(CONFIG_CONFIG_IN)
|
|
$(CONFIG)/conf -n $(CONFIG_CONFIG_IN)
|
|
|
|
|
|
defconfig: $(CONFIG)/conf
|
|
defconfig: $(CONFIG)/conf
|
|
- @-mkdir -p $(CONFIG)/buildroot-config
|
|
|
|
|
|
+ @mkdir -p $(CONFIG)/buildroot-config
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
@KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
|
|
$(CONFIG)/conf -d $(CONFIG_CONFIG_IN)
|
|
$(CONFIG)/conf -d $(CONFIG_CONFIG_IN)
|