2014-06-30 09:57:29 +00:00
|
|
|
#
|
2015-01-25 16:12:52 +00:00
|
|
|
# Copyright (C) 2014-2015 OpenWrt.org
|
2014-06-30 09:57:29 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2012-12-22 18:56:06 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=procd
|
2015-06-18 06:37:08 +00:00
|
|
|
PKG_VERSION:=2015-06-18
|
2013-07-23 12:22:40 +00:00
|
|
|
|
2013-11-20 19:28:51 +00:00
|
|
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
2012-12-22 18:56:06 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
|
|
PKG_SOURCE_URL:=git://nbd.name/luci2/procd.git
|
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
2015-06-18 06:37:08 +00:00
|
|
|
PKG_SOURCE_VERSION:=8559df08db51a2e5fe056e6a1c07984e51068eaf
|
2012-12-22 18:56:06 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
|
|
CMAKE_INSTALL:=1
|
|
|
|
|
2014-11-03 09:56:44 +00:00
|
|
|
PKG_LICENSE:=GPL-2.0
|
2012-12-22 18:56:06 +00:00
|
|
|
PKG_LICENSE_FILES:=
|
|
|
|
|
2013-05-30 16:00:06 +00:00
|
|
|
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
|
2012-12-22 18:56:06 +00:00
|
|
|
|
2015-03-26 20:30:18 +00:00
|
|
|
PKG_CONFIG_DEPENDS:= CONFIG_KERNEL_SECCOMP CONFIG_NAND_SUPPORT CONFIG_PROCD_SHOW_BOOT CONFIG_PROCD_ZRAM_TMPFS CONFIG_PROCD_JAIL_SUPPORT
|
2015-03-26 10:58:25 +00:00
|
|
|
|
2012-12-22 18:56:06 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
2015-03-16 12:25:06 +00:00
|
|
|
TARGET_LDFLAGS += $(if $(CONFIG_USE_GLIBC),-lrt)
|
2013-04-03 10:01:10 +00:00
|
|
|
|
2012-12-22 18:56:06 +00:00
|
|
|
define Package/procd
|
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
2015-03-16 12:25:06 +00:00
|
|
|
DEPENDS:=+ubusd +ubus +libjson-script +ubox +USE_GLIBC:librt +libubox +libubus +NAND_SUPPORT:procd-nand
|
2014-06-11 12:59:49 +00:00
|
|
|
TITLE:=OpenWrt system process manager
|
|
|
|
endef
|
|
|
|
|
2015-03-26 10:58:25 +00:00
|
|
|
define Package/procd-jail
|
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
2015-03-26 20:30:18 +00:00
|
|
|
DEPENDS:=procd +@KERNEL_NAMESPACES +@KERNEL_UTS_NS +@KERNEL_IPC_NS +@KERNEL_PID_NS @PROCD_JAIL_SUPPORT
|
2015-03-26 10:58:25 +00:00
|
|
|
TITLE:=OpenWrt process jail
|
|
|
|
DEFAULT:=n
|
|
|
|
endef
|
|
|
|
|
2014-06-11 12:59:49 +00:00
|
|
|
define Package/procd-nand
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2014-06-19 14:13:45 +00:00
|
|
|
DEPENDS:=@NAND_SUPPORT +ubi-utils
|
|
|
|
TITLE:=OpenWrt sysupgrade nand helper
|
2012-12-22 18:56:06 +00:00
|
|
|
endef
|
|
|
|
|
2014-12-03 14:32:32 +00:00
|
|
|
define Package/procd-nand-firstboot
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=procd-nand
|
|
|
|
TITLE:=OpenWrt firstboot nand helper
|
|
|
|
endef
|
|
|
|
|
2014-10-30 10:10:45 +00:00
|
|
|
define Package/procd/config
|
|
|
|
menu "Configuration"
|
|
|
|
depends on PACKAGE_procd
|
|
|
|
|
|
|
|
config PROCD_SHOW_BOOT
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
prompt "Print the shutdown to the console as well as logging it to syslog"
|
2014-12-02 11:13:28 +00:00
|
|
|
|
|
|
|
config PROCD_ZRAM_TMPFS
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
prompt "Mount /tmp using zram."
|
2015-03-26 20:30:18 +00:00
|
|
|
|
|
|
|
config PROCD_JAIL_SUPPORT
|
|
|
|
bool
|
|
|
|
default y
|
2015-05-23 15:26:09 +00:00
|
|
|
depends on (arm || armeb || mips || mipsel || i386 || x86_64) && PROCD_SECCOMP_SUPPORT
|
2015-03-26 20:30:18 +00:00
|
|
|
|
|
|
|
config PROCD_SECCOMP_SUPPORT
|
|
|
|
bool
|
|
|
|
default y
|
2015-05-23 15:26:09 +00:00
|
|
|
depends on (arm || armeb || mips || mipsel || i386 || x86_64) && !TARGET_uml && @KERNEL_SECCOMP
|
2014-10-30 10:10:45 +00:00
|
|
|
endmenu
|
|
|
|
endef
|
|
|
|
|
2014-12-02 11:13:28 +00:00
|
|
|
|
2015-01-25 16:12:52 +00:00
|
|
|
ifeq ($(CONFIG_NAND_SUPPORT),y)
|
|
|
|
CMAKE_OPTIONS += -DBUILD_UPGRADED=1
|
|
|
|
endif
|
|
|
|
|
2014-12-02 11:13:28 +00:00
|
|
|
ifeq ($(CONFIG_PROCD_SHOW_BOOT),y)
|
|
|
|
CMAKE_OPTIONS += -DSHOW_BOOT_ON_CONSOLE=1
|
|
|
|
endif
|
2014-10-30 10:10:45 +00:00
|
|
|
|
2014-12-02 11:13:28 +00:00
|
|
|
ifeq ($(CONFIG_PROCD_ZRAM_TMPFS),y)
|
|
|
|
CMAKE_OPTIONS += -DZRAM_TMPFS=1
|
2014-10-30 10:10:45 +00:00
|
|
|
endif
|
|
|
|
|
2015-03-26 20:30:18 +00:00
|
|
|
ifeq ($(CONFIG_PROCD_JAIL_SUPPORT),y)
|
|
|
|
CMAKE_OPTIONS += -DJAIL_SUPPORT=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_PROCD_SECCOMP_SUPPORT),y)
|
|
|
|
CMAKE_OPTIONS += -DSECCOMP_SUPPORT=1
|
|
|
|
endif
|
|
|
|
|
2013-03-13 18:11:07 +00:00
|
|
|
define Package/procd/install
|
2014-06-11 12:59:49 +00:00
|
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/etc $(1)/lib/functions
|
2013-03-13 18:11:07 +00:00
|
|
|
|
2015-03-26 10:58:25 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{init,procd,askfirst,udevtrigger} $(1)/sbin/
|
2013-07-11 17:00:54 +00:00
|
|
|
$(INSTALL_BIN) ./files/reload_config $(1)/sbin/
|
2013-03-13 18:11:07 +00:00
|
|
|
$(INSTALL_DATA) ./files/hotplug*.json $(1)/etc/
|
2013-11-13 12:15:06 +00:00
|
|
|
$(INSTALL_DATA) ./files/procd.sh $(1)/lib/functions/
|
2015-03-26 20:30:18 +00:00
|
|
|
ifeq ($(CONFIG_PROCD_SECCOMP_SUPPORT),y)
|
2015-03-26 10:58:25 +00:00
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libpreload-seccomp.so $(1)/lib
|
|
|
|
endif
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/procd-jail/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/lib
|
|
|
|
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{utrace,ujail} $(1)/sbin/
|
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libpreload-trace.so $(1)/lib
|
2013-03-13 18:11:07 +00:00
|
|
|
endef
|
2012-12-22 18:56:06 +00:00
|
|
|
|
2014-06-11 12:59:49 +00:00
|
|
|
define Package/procd-nand/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/lib/upgrade
|
|
|
|
|
2015-03-26 10:58:25 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/upgraded $(1)/sbin/
|
2014-06-11 12:59:49 +00:00
|
|
|
$(INSTALL_DATA) ./files/nand.sh $(1)/lib/upgrade/
|
|
|
|
endef
|
|
|
|
|
2014-12-03 14:32:32 +00:00
|
|
|
define Package/procd-nand-firstboot/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/preinit
|
|
|
|
|
|
|
|
$(INSTALL_DATA) ./files/nand-preinit.sh $(1)/lib/preinit/60-nand-firstboot.sh
|
|
|
|
endef
|
|
|
|
|
2012-12-22 18:56:06 +00:00
|
|
|
$(eval $(call BuildPackage,procd))
|
2015-03-26 10:58:25 +00:00
|
|
|
$(eval $(call BuildPackage,procd-jail))
|
2014-06-11 12:59:49 +00:00
|
|
|
$(eval $(call BuildPackage,procd-nand))
|
2014-12-03 14:32:32 +00:00
|
|
|
$(eval $(call BuildPackage,procd-nand-firstboot))
|