OpenWrt – Blame information for rev 2
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | # |
2 | # Copyright (C) 2006-2008 OpenWrt.org |
||
3 | # |
||
4 | # This is free software, licensed under the GNU General Public License v2. |
||
5 | # See /LICENSE for more information. |
||
6 | # |
||
7 | |||
8 | include $(TOPDIR)/rules.mk |
||
9 | |||
10 | PKG_NAME:=fconfig |
||
11 | PKG_VERSION:=20080329 |
||
12 | PKG_RELEASE:=1 |
||
13 | |||
14 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |
||
15 | PKG_SOURCE_URL:=https://downloads.openwrt.org/sources |
||
16 | PKG_HASH:=4ff0e8f07e35e46b705c0dbe9d9544ede01ea092a69e3f7db03e55a3f2bb8eb7 |
||
17 | |||
18 | PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) |
||
19 | |||
20 | include $(INCLUDE_DIR)/package.mk |
||
21 | |||
22 | define Package/fconfig |
||
23 | SECTION:=utils |
||
24 | CATEGORY:=Utilities |
||
25 | SUBMENU:=Boot Loaders |
||
26 | TITLE:=RedBoot configuration editor |
||
27 | endef |
||
28 | |||
29 | define Package/fconfig/description |
||
30 | displays and (if writable) also edits the RedBoot configuration. |
||
31 | endef |
||
32 | |||
33 | define Build/Configure |
||
34 | endef |
||
35 | |||
36 | define Build/Compile |
||
37 | $(call Build/Compile/Default) |
||
38 | endef |
||
39 | |||
40 | define Package/fconfig/install |
||
41 | $(INSTALL_DIR) $(1)/usr/sbin |
||
42 | $(INSTALL_BIN) $(PKG_BUILD_DIR)/fconfig $(1)/usr/sbin/ |
||
43 | endef |
||
44 | |||
45 | $(eval $(call BuildPackage,fconfig)) |