0e1547a87c
This package consists of scripts that setup cgroups at boot without doing any cgroup management or classification of tasks into cgroups Signed-off-by: Niranjan Reddy <niranjan.reddy@rockwellcollins.com> [Thomas: - rename to cgroupfs-mount to match upstream - add proper hash, since hashes should be added for github sourced packages - fix minor typos in the init script - fix the license file information.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
805 B
Makefile
24 lines
805 B
Makefile
################################################################################
|
|
#
|
|
# cgroupfs-mount
|
|
#
|
|
################################################################################
|
|
|
|
CGROUPFS_MOUNT_VERSION = 7285bf44402029394808339f69f4f293730fc2c6
|
|
CGROUPFS_MOUNT_SITE = $(call github,tianon,cgroupfs-mount,$(CGROUPFS_MOUNT_VERSION))
|
|
CGROUPFS_MOUNT_LICENSE = GPLv3+
|
|
CGROUPFS_MOUNT_LICENSE_FILES = debian/copyright
|
|
|
|
define CGROUPFS_MOUNT_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/cgroupfs-mount $(TARGET_DIR)/usr/bin/cgroupfs-mount
|
|
$(INSTALL) -D -m 0755 $(@D)/cgroupfs-umount $(TARGET_DIR)/usr/bin/cgroupfs-umount
|
|
endef
|
|
|
|
define CGROUPFS_MOUNT_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D $(CGROUPFS_MOUNT_PKGDIR)/S30cgroupfs \
|
|
$(TARGET_DIR)/etc/init.d/S30cgroupfs
|
|
|
|
endef
|
|
|
|
$(eval $(generic-package))
|