summaryrefslogtreecommitdiff
path: root/mk/build.mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk/build.mk')
-rw-r--r--mk/build.mk17
1 files changed, 14 insertions, 3 deletions
diff --git a/mk/build.mk b/mk/build.mk
index 67ec849cb..f51c92149 100644
--- a/mk/build.mk
+++ b/mk/build.mk
@@ -225,7 +225,10 @@ $(CONFIG)/mconf:
defconfig:
@if [ ! -z "$(TARGET)" ];then \
- grep "^config" target/Config.in |grep -i "$(TARGET)"|sed -e "s#^config \(.*\)#\1=y#" > $(TOPDIR)/.defconfig; \
+ grep "^config" target/Config.in \
+ |grep -i "$(TARGET)" \
+ |sed -e "s#^config \(.*\)#\1=y#" \
+ > $(TOPDIR)/.defconfig; \
for symbol in ${DEFCONFIG}; do \
echo $$symbol >> $(TOPDIR)/.defconfig; \
done; \
@@ -236,13 +239,19 @@ endif
ifneq (,$(filter %_rescue,${TARGET}))
@echo ADK_LINUX_RESCUE=y >> $(TOPDIR)/.defconfig
endif
+ifneq (,$(filter rb%,${TARGET}))
+ @echo ADK_LINUX_MIKROTIK=y >> $(TOPDIR)/.defconfig
+endif
@if [ ! -z "$(TARGET)" ];then \
$(CONFIG)/conf -D .defconfig $(CONFIG_CONFIG_IN); \
fi
modconfig:
@if [ ! -z "$(TARGET)" ];then \
- grep "^config" target/Config.in |grep -i "$(TARGET)"|sed -e "s#^config \(.*\)#\1=y#" > $(TOPDIR)/all.config; \
+ grep "^config" target/Config.in \
+ |grep -i "$(TARGET)" \
+ |sed -e "s#^config \(.*\)#\1=y#" \
+ > $(TOPDIR)/all.config; \
for symbol in ${DEFCONFIG}; do \
echo $$symbol >> $(TOPDIR)/all.config; \
done; \
@@ -266,12 +275,14 @@ modconfig:
>> $(TOPDIR)/all.config; \
fi
ifneq (,$(filter %_qemu,${TARGET}))
-
@echo ADK_LINUX_QEMU=y >> $(TOPDIR)/all.config
endif
ifneq (,$(filter %_rescue,${TARGET}))
@echo ADK_LINUX_RESCUE=y >> $(TOPDIR)/all.config
endif
+ifneq (,$(filter rb%,${TARGET}))
+ @echo ADK_LINUX_MIKROTIK=y >> $(TOPDIR)/all.config
+endif
menuconfig: $(CONFIG)/mconf defconfig
@$(CONFIG)/mconf $(CONFIG_CONFIG_IN)