[openwrt/openwrt] util-linux: add lscpu package
LEDE Commits
lede-commits at lists.infradead.org
Sat Feb 24 02:24:52 PST 2018
hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.lede-project.org/9a0cc49089e38896391a1003892aba3aa684f868
commit 9a0cc49089e38896391a1003892aba3aa684f868
Author: Tomasz Moń <desowin at gmail.com>
AuthorDate: Tue Feb 20 17:14:06 2018 +0100
util-linux: add lscpu package
lscpu is used by lxc-debian template.
Signed-off-by: Tomasz Moń <desowin 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 9270dd5..fcfc7c7 100644
--- a/package/utils/util-linux/Makefile
+++ b/package/utils/util-linux/Makefile
@@ -278,6 +278,16 @@ define Package/lsblk/description
lsblk lists information about all or the specified block devices
endef
+define Package/lscpu
+$(call Package/util-linux/Default)
+ TITLE:=display information about the CPU architecture
+ DEPENDS:= +libsmartcols
+endef
+
+define Package/lscpu/description
+ lscpu displays information about the CPU architecture
+endef
+
define Package/mcookie
$(call Package/util-linux/Default)
TITLE:=generate magic cookies for xauth
@@ -601,6 +611,11 @@ define Package/lsblk/install
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lsblk $(1)/usr/bin/
endef
+define Package/lscpu/install
+ $(INSTALL_DIR) $(1)/usr/bin
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lscpu $(1)/usr/bin/
+endef
+
define Package/mcookie/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mcookie $(1)/usr/bin/
@@ -703,6 +718,7 @@ $(eval $(call BuildPackage,logger))
$(eval $(call BuildPackage,look))
$(eval $(call BuildPackage,losetup))
$(eval $(call BuildPackage,lsblk))
+$(eval $(call BuildPackage,lscpu))
$(eval $(call BuildPackage,mcookie))
$(eval $(call BuildPackage,mount-utils))
$(eval $(call BuildPackage,namei))
More information about the lede-commits
mailing list