Author: nbd Date: 2015-11-08 21:39:54 +0100 (Sun, 08 Nov 2015) New Revision: 47425
Modified: trunk/package/utils/e2fsprogs/Makefile Log: e2fsprogs: add packages for "chattr" and "lsattr" Signed-off-by: Richard Kunze <[email protected]> Modified: trunk/package/utils/e2fsprogs/Makefile =================================================================== --- trunk/package/utils/e2fsprogs/Makefile 2015-11-08 20:39:49 UTC (rev 47424) +++ trunk/package/utils/e2fsprogs/Makefile 2015-11-08 20:39:54 UTC (rev 47425) @@ -93,6 +93,18 @@ DEPENDS:= +e2fsprogs endef +define Package/chattr +$(call Package/e2fsprogs) + TITLE:=Ext2 Filesystem chattr utility + DEPENDS:= +e2fsprogs +endef + +define Package/lsattr +$(call Package/e2fsprogs) + TITLE:=Ext2 Filesystem lsattr utility + DEPENDS:= +e2fsprogs +endef + TARGET_CFLAGS += $(FPIC) -ffunction-sections -fdata-sections CONFIGURE_VARS += \ @@ -219,6 +231,16 @@ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libss.so.* $(1)/usr/lib/ endef +define Package/chattr/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/chattr $(1)/usr/bin/ +endef + +define Package/lsattr/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lsattr $(1)/usr/bin/ +endef + $(eval $(call BuildPackage,e2fsprogs)) $(eval $(call BuildPackage,libext2fs)) $(eval $(call BuildPackage,tune2fs)) @@ -228,3 +250,5 @@ $(eval $(call BuildPackage,e2freefrag)) $(eval $(call BuildPackage,filefrag)) $(eval $(call BuildPackage,debugfs)) +$(eval $(call BuildPackage,chattr)) +$(eval $(call BuildPackage,lsattr)) _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
