2014-06-30 09:57:29 +00:00
|
|
|
#
|
2016-01-14 12:52:18 +00:00
|
|
|
# Copyright (C) 2014-2016 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
|
2017-07-12 22:18:50 +00:00
|
|
|
PKG_RELEASE:=1
|
2012-12-22 18:56:06 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2016-06-06 19:16:47 +00:00
|
|
|
PKG_SOURCE_URL=$(LEDE_GIT)/project/procd.git
|
2017-08-22 14:47:18 +00:00
|
|
|
PKG_SOURCE_DATE:=2017-08-22
|
|
|
|
PKG_SOURCE_VERSION:=54b46a351fab736a92221a6f9c750b5f9da499a1
|
|
|
|
PKG_MIRROR_HASH:=dcbeea89910bbdf7d6cf20c38892d6c51de375c8b35c372a7106ae17090694f3
|
2012-12-22 18:56:06 +00:00
|
|
|
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:=
|
|
|
|
|
2016-05-11 07:06:21 +00:00
|
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
2012-12-22 18:56:06 +00:00
|
|
|
|
2016-02-08 14:28:42 +00:00
|
|
|
PKG_CONFIG_DEPENDS:= \
|
|
|
|
CONFIG_TARGET_INIT_PATH CONFIG_KERNEL_SECCOMP \
|
2017-04-21 18:37:58 +00:00
|
|
|
CONFIG_PROCD_SHOW_BOOT CONFIG_PROCD_ZRAM_TMPFS \
|
2015-09-15 06:12:34 +00:00
|
|
|
CONFIG_KERNEL_NAMESPACES CONFIG_PACKAGE_procd-ujail CONFIG_PACKAGE_procd-seccomp
|
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
|
|
|
|
|
2016-02-08 14:28:42 +00:00
|
|
|
ifeq ($(DUMP),)
|
2016-12-25 15:40:05 +00:00
|
|
|
STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell echo $(CONFIG_TARGET_INIT_PATH) | mkhash md5)
|
2016-02-08 14:28:42 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
CMAKE_OPTIONS += -DEARLY_PATH="$(TARGET_INIT_PATH)"
|
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
|
2017-04-21 18:37:58 +00:00
|
|
|
DEPENDS:=+ubusd +ubus +libjson-script +ubox +USE_GLIBC:librt +libubox +libubus
|
2014-06-11 12:59:49 +00:00
|
|
|
TITLE:=OpenWrt system process manager
|
|
|
|
endef
|
|
|
|
|
2015-09-15 06:12:34 +00:00
|
|
|
define Package/procd-ujail
|
2015-03-26 10:58:25 +00:00
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
2015-09-15 06:12:34 +00:00
|
|
|
DEPENDS:=@KERNEL_NAMESPACES +@KERNEL_UTS_NS +@KERNEL_IPC_NS +@KERNEL_PID_NS +libubox +libblobmsg-json
|
|
|
|
TITLE:=OpenWrt process jail helper
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/procd-seccomp
|
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
|
|
|
DEPENDS:=@arm||@armeb||@mips||@mipsel||@i386||@x86_64 @!TARGET_uml @KERNEL_SECCOMP +libubox +libblobmsg-json
|
|
|
|
TITLE:=OpenWrt process seccomp helper + utrace
|
2015-03-26 10:58:25 +00:00
|
|
|
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."
|
2014-10-30 10:10:45 +00:00
|
|
|
endmenu
|
|
|
|
endef
|
|
|
|
|
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-09-15 06:12:34 +00:00
|
|
|
ifdef CONFIG_PACKAGE_procd-ujail
|
2015-03-26 20:30:18 +00:00
|
|
|
CMAKE_OPTIONS += -DJAIL_SUPPORT=1
|
|
|
|
endif
|
|
|
|
|
2015-09-15 06:12:34 +00:00
|
|
|
ifdef CONFIG_PACKAGE_procd-seccomp
|
|
|
|
CMAKE_OPTIONS += -DSECCOMP_SUPPORT=1 -DUTRACE_SUPPORT=1
|
2015-03-26 20:30:18 +00:00
|
|
|
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
|
|
|
|
2017-04-21 18:37:58 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{init,procd,askfirst,udevtrigger,upgraded} $(1)/sbin/
|
2015-07-07 10:22:25 +00:00
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libsetlbf.so $(1)/lib
|
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 10:58:25 +00:00
|
|
|
endef
|
|
|
|
|
2015-09-15 06:12:34 +00:00
|
|
|
define Package/procd-ujail/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ujail $(1)/sbin/
|
|
|
|
endef
|
2015-03-26 10:58:25 +00:00
|
|
|
|
2015-09-15 06:12:34 +00:00
|
|
|
define Package/procd-seccomp/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/lib
|
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libpreload-seccomp.so $(1)/lib
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/utrace $(1)/sbin/
|
2015-03-26 10:58:25 +00:00
|
|
|
$(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
|
|
|
|
|
|
|
$(eval $(call BuildPackage,procd))
|
2015-09-15 06:12:34 +00:00
|
|
|
$(eval $(call BuildPackage,procd-ujail))
|
|
|
|
$(eval $(call BuildPackage,procd-seccomp))
|