[openwrt/openwrt] util-linux: Add taskset

LEDE Commits lede-commits at lists.infradead.org
Fri Jan 21 15:55:45 PST 2022


hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/6ae657e459c8c62f4f844a17098d6cc75b81c91b

commit 6ae657e459c8c62f4f844a17098d6cc75b81c91b
Author: Hauke Mehrtens <hmehrtens at maxlinear.com>
AuthorDate: Wed Jan 19 18:10:05 2022 +0100

    util-linux: Add taskset
    
    This adds the taskset application from util Linux.
    It is already built, but not packaged yet.
    
    Signed-off-by: Hauke Mehrtens <hmehrtens at maxlinear.com>
---
 package/utils/util-linux/Makefile | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/package/utils/util-linux/Makefile b/package/utils/util-linux/Makefile
index 74f3f17469..ded653e2c0 100644
--- a/package/utils/util-linux/Makefile
+++ b/package/utils/util-linux/Makefile
@@ -443,6 +443,15 @@ define Package/swap-utils/description
  contains: mkswap, swaplabel
 endef
 
+define Package/taskset
+$(call Package/util-linux/Default)
+  TITLE:=set or retrieve a process's CPU affinity
+endef
+
+define Package/taskset/description
+ contains: taskset
+endef
+
 define Package/unshare
 $(call Package/util-linux/Default)
   TITLE:=unshare userspace tool
@@ -761,6 +770,11 @@ define Package/swap-utils/install
 	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/swaplabel $(1)/usr/sbin/
 endef
 
+define Package/taskset/install
+	$(INSTALL_DIR) $(1)/usr/bin
+	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/taskset $(1)/usr/bin/
+endef
+
 define Package/unshare/install
 	$(INSTALL_DIR) $(1)/usr/bin
 	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/unshare $(1)/usr/bin/
@@ -829,6 +843,7 @@ $(eval $(call BuildPackage,script-utils))
 $(eval $(call BuildPackage,setterm))
 $(eval $(call BuildPackage,sfdisk))
 $(eval $(call BuildPackage,swap-utils))
+$(eval $(call BuildPackage,taskset))
 $(eval $(call BuildPackage,unshare))
 $(eval $(call BuildPackage,uuidd))
 $(eval $(call BuildPackage,uuidgen))



More information about the lede-commits mailing list