util-linux: add more command
at least vtysh needs it for proper listing, busybox is not modular so add it here Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
This commit is contained in:
parent
9105057cc0
commit
91aabae895
@ -315,6 +315,16 @@ define Package/lscpu/description
|
|||||||
lscpu displays information about the CPU architecture
|
lscpu displays information about the CPU architecture
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/more
|
||||||
|
$(call Package/util-linux/Default)
|
||||||
|
TITLE:=filter for paging through text one screenful at a time
|
||||||
|
DEPENDS:= +libncurses
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/more/description
|
||||||
|
more is a filter for paging through text one screenful at a time
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/mcookie
|
define Package/mcookie
|
||||||
$(call Package/util-linux/Default)
|
$(call Package/util-linux/Default)
|
||||||
TITLE:=generate magic cookies for xauth
|
TITLE:=generate magic cookies for xauth
|
||||||
@ -508,7 +518,6 @@ CONFIGURE_ARGS += \
|
|||||||
--without-python \
|
--without-python \
|
||||||
--without-udev \
|
--without-udev \
|
||||||
--without-readline \
|
--without-readline \
|
||||||
--disable-more \
|
|
||||||
--with-ncursesw
|
--with-ncursesw
|
||||||
|
|
||||||
TARGET_CFLAGS += $(FPIC) -std=gnu99
|
TARGET_CFLAGS += $(FPIC) -std=gnu99
|
||||||
@ -667,6 +676,11 @@ define Package/lscpu/install
|
|||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lscpu $(1)/usr/bin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lscpu $(1)/usr/bin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/more/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/more $(1)/usr/bin/
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/mcookie/install
|
define Package/mcookie/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mcookie $(1)/usr/bin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mcookie $(1)/usr/bin/
|
||||||
@ -782,6 +796,7 @@ $(eval $(call BuildPackage,look))
|
|||||||
$(eval $(call BuildPackage,losetup))
|
$(eval $(call BuildPackage,losetup))
|
||||||
$(eval $(call BuildPackage,lsblk))
|
$(eval $(call BuildPackage,lsblk))
|
||||||
$(eval $(call BuildPackage,lscpu))
|
$(eval $(call BuildPackage,lscpu))
|
||||||
|
$(eval $(call BuildPackage,more))
|
||||||
$(eval $(call BuildPackage,mcookie))
|
$(eval $(call BuildPackage,mcookie))
|
||||||
$(eval $(call BuildPackage,mount-utils))
|
$(eval $(call BuildPackage,mount-utils))
|
||||||
$(eval $(call BuildPackage,namei))
|
$(eval $(call BuildPackage,namei))
|
||||||
|
Loading…
Reference in New Issue
Block a user