2014-06-30 17:57:29 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2012-12-23 02:56:06 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=procd
|
2014-07-03 03:18:05 +08:00
|
|
|
PKG_VERSION:=2014-07-02
|
2013-07-23 20:22:40 +08:00
|
|
|
|
2013-11-21 03:28:51 +08:00
|
|
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
2012-12-23 02:56:06 +08:00
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
|
|
PKG_SOURCE_URL:=git://nbd.name/luci2/procd.git
|
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
2014-07-03 03:18:05 +08:00
|
|
|
PKG_SOURCE_VERSION:=619ec82ececcbe9b9d1ca18ac6bc7c5c68c96825
|
2012-12-23 02:56:06 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
|
|
CMAKE_INSTALL:=1
|
|
|
|
|
|
|
|
PKG_LICENSE:=GPLv2
|
|
|
|
PKG_LICENSE_FILES:=
|
|
|
|
|
2013-05-31 00:00:06 +08:00
|
|
|
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
|
2012-12-23 02:56:06 +08:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
2013-04-03 18:01:10 +08:00
|
|
|
TARGET_LDFLAGS += $(if $(CONFIG_USE_EGLIBC),-lrt)
|
|
|
|
|
2012-12-23 02:56:06 +08:00
|
|
|
define Package/procd
|
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
2014-06-11 20:59:49 +08:00
|
|
|
DEPENDS:=+ubusd +ubus +libjson-script +ubox +USE_EGLIBC:librt +libubox +libubus +NAND_SUPPORT:procd-nand
|
|
|
|
TITLE:=OpenWrt system process manager
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/procd-nand
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2014-06-19 22:13:45 +08:00
|
|
|
DEPENDS:=@NAND_SUPPORT +ubi-utils
|
|
|
|
TITLE:=OpenWrt sysupgrade nand helper
|
2012-12-23 02:56:06 +08:00
|
|
|
endef
|
|
|
|
|
2013-03-14 02:11:07 +08:00
|
|
|
define Package/procd/install
|
2014-06-11 20:59:49 +08:00
|
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/etc $(1)/lib/functions
|
2013-03-14 02:11:07 +08:00
|
|
|
|
2013-11-17 04:20:30 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/{init,procd,askfirst,udevtrigger} $(1)/sbin/
|
2013-07-12 01:00:54 +08:00
|
|
|
$(INSTALL_BIN) ./files/reload_config $(1)/sbin/
|
2013-03-14 02:11:07 +08:00
|
|
|
$(INSTALL_DATA) ./files/hotplug*.json $(1)/etc/
|
2013-11-13 20:15:06 +08:00
|
|
|
$(INSTALL_DATA) ./files/procd.sh $(1)/lib/functions/
|
2013-03-14 02:11:07 +08:00
|
|
|
endef
|
2012-12-23 02:56:06 +08:00
|
|
|
|
2014-06-11 20:59:49 +08:00
|
|
|
define Package/procd-nand/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/lib/upgrade
|
|
|
|
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/upgraded $(1)/sbin/
|
|
|
|
$(INSTALL_DATA) ./files/nand.sh $(1)/lib/upgrade/
|
|
|
|
endef
|
|
|
|
|
2012-12-23 02:56:06 +08:00
|
|
|
$(eval $(call BuildPackage,procd))
|
2014-06-11 20:59:49 +08:00
|
|
|
$(eval $(call BuildPackage,procd-nand))
|