Author: jow Date: 2016-02-01 14:58:43 +0100 (Mon, 01 Feb 2016) New Revision: 48610
Modified: trunk/include/image.mk Log: include: image.mk: use correct flag for fixed mtimes with make_ext4fs (#21768) The correct flag for fixed mtime is -T, not -t. Signed-off-by: Jo-Philipp Wich <[email protected]> Modified: trunk/include/image.mk =================================================================== --- trunk/include/image.mk 2016-02-01 13:42:59 UTC (rev 48609) +++ trunk/include/image.mk 2016-02-01 13:58:43 UTC (rev 48610) @@ -263,7 +263,7 @@ -i $(CONFIG_TARGET_EXT4_MAXINODE) \ -m $(CONFIG_TARGET_EXT4_RESERVED_PCT) \ $(if $(CONFIG_TARGET_EXT4_JOURNAL),,-J) \ - $(if $(SOURCE_DATE_EPOCH),-t $(SOURCE_DATE_EPOCH)) \ + $(if $(SOURCE_DATE_EPOCH),-T $(SOURCE_DATE_EPOCH)) \ $(KDIR)/root.ext4 $(TARGET_DIR)/ endef _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
