summaryrefslogtreecommitdiff
path: root/package/rbcfg/Makefile
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2012-10-17 21:53:23 +0000
committerJohn Crispin <john@openwrt.org>2012-10-17 21:53:23 +0000
commit788a5816ad218c8401db3eccf459e8c55df35458 (patch)
tree37896985cb51dc1da5a717761cbf1e6282413bbd /package/rbcfg/Makefile
parent7c50aea1ec953a4e70edc02105f7c7358c51ce0c (diff)
downloadmtk-20170518-788a5816ad218c8401db3eccf459e8c55df35458.zip
mtk-20170518-788a5816ad218c8401db3eccf459e8c55df35458.tar.gz
mtk-20170518-788a5816ad218c8401db3eccf459e8c55df35458.tar.bz2
move to boot/ folder
SVN-Revision: 33824
Diffstat (limited to 'package/rbcfg/Makefile')
-rw-r--r--package/rbcfg/Makefile49
1 files changed, 0 insertions, 49 deletions
diff --git a/package/rbcfg/Makefile b/package/rbcfg/Makefile
deleted file mode 100644
index 51fefd5..0000000
--- a/package/rbcfg/Makefile
+++ /dev/null
@@ -1,49 +0,0 @@
-#
-# Copyright (C) 2010 Gabor Juhos <juhosg@openwrt.org>
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=rbcfg
-PKG_RELEASE:=1
-
-PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
-
-include $(INCLUDE_DIR)/package.mk
-
-define Package/rbcfg
- SECTION:=utils
- CATEGORY:=Utilities
- TITLE:=RouterBOOT configuration tool
- DEPENDS:=@TARGET_ar71xx
-endef
-
-define Package/rbcfg/description
- This package contains an utility to manipulate RouterBOOT configuration on the
- MikroTIK RB-4XX devices.
-endef
-
-define Build/Prepare
- mkdir -p $(PKG_BUILD_DIR)
- $(CP) ./src/* $(PKG_BUILD_DIR)/
-endef
-
-define Build/Configure
-endef
-
-define Build/Compile
- $(MAKE) -C $(PKG_BUILD_DIR) \
- CC="$(TARGET_CC)" \
- CFLAGS="$(TARGET_CFLAGS) -Wall" \
- LDFLAGS="$(TARGET_LDFLAGS)"
-endef
-
-define Package/rbcfg/install
- $(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/rbcfg $(1)/usr/sbin/
-endef
-
-$(eval $(call BuildPackage,rbcfg))