[openwrt/openwrt] util-linux: add lsns

LEDE Commits lede-commits at lists.infradead.org
Sat Mar 5 12:15:56 PST 2022


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

commit ef4bf8b403205062ddb38ebe7b8c4951be346368
Author: Oskari Rauta <oskari.rauta at gmail.com>
AuthorDate: Thu Mar 3 04:57:08 2022 +0200

    util-linux: add lsns
    
    lsns lists system namespaces
    
    Signed-off-by: Oskari Rauta <oskari.rauta at gmail.com>
---
 package/utils/util-linux/Makefile | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/package/utils/util-linux/Makefile b/package/utils/util-linux/Makefile
index ce3cd171e0..6d44e92f00 100644
--- a/package/utils/util-linux/Makefile
+++ b/package/utils/util-linux/Makefile
@@ -339,6 +339,16 @@ define Package/lslocks/description
  lslocks lists information about all the currently held file locks in a Linux system
 endef
 
+define Package/lsns
+$(call Package/util-linux/Default)
+  TITLE:=list system namespaces
+  DEPENDS:= +libblkid +libmount +libsmartcols
+endef
+
+define Package/lsns/description
+ lsns lists information about all namespaces and their processes
+endef
+
 define Package/more
 $(call Package/util-linux/Default)
   TITLE:=filter for paging through text one screenful at a time
@@ -737,6 +747,11 @@ define Package/lslocks/install
 	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lslocks $(1)/usr/bin/
 endef
 
+define Package/lsns/install
+	$(INSTALL_DIR) $(1)/usr/bin
+	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lsns $(1)/usr/bin/
+endef
+
 define Package/more/install
 	$(INSTALL_DIR) $(1)/usr/bin
 	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/more $(1)/usr/bin/
@@ -866,6 +881,7 @@ $(eval $(call BuildPackage,losetup))
 $(eval $(call BuildPackage,lsblk))
 $(eval $(call BuildPackage,lscpu))
 $(eval $(call BuildPackage,lslocks))
+$(eval $(call BuildPackage,lsns))
 $(eval $(call BuildPackage,more))
 $(eval $(call BuildPackage,mcookie))
 $(eval $(call BuildPackage,mount-utils))




More information about the lede-commits mailing list