mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 1/3] host-faketime: new package
@ 2018-10-11 14:19 Baeuerle, Florian
  2018-10-11 14:19 ` [ptxdist] [PATCH 2/3] barebox: add option for building barebox reproducibly Baeuerle, Florian
                   ` (3 more replies)
  0 siblings, 4 replies; 34+ messages in thread
From: Baeuerle, Florian @ 2018-10-11 14:19 UTC (permalink / raw)
  To: ptxdist

Signed-off-by: Florian Bäuerle <florian.baeuerle@allegion.com>
---
 rules/host-faketime.in   | 10 +++++++++
 rules/host-faketime.make | 47 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)
 create mode 100644 rules/host-faketime.in
 create mode 100644 rules/host-faketime.make

diff --git a/rules/host-faketime.in b/rules/host-faketime.in
new file mode 100644
index 000000000..1a2e7ae19
--- /dev/null
+++ b/rules/host-faketime.in
@@ -0,0 +1,10 @@
+## SECTION=hosttools_noprompt
+## SECTION=hosttools_platform
+
+config HOST_FAKETIME
+	tristate
+	default ALLYES
+	help
+	  libfaketime intercepts various system calls that programs use to
+	  retrieve the current date and time. It then reports modified (faked)
+	  dates and times to these programs.
diff --git a/rules/host-faketime.make b/rules/host-faketime.make
new file mode 100644
index 000000000..462854eb9
--- /dev/null
+++ b/rules/host-faketime.make
@@ -0,0 +1,47 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2018 by Florian Bäuerle <florian.baeuerle@allegion.com>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+HOST_PACKAGES-$(PTXCONF_HOST_FAKETIME) += host-faketime
+
+#
+# Paths and names
+#
+HOST_FAKETIME_VERSION	= $(LIBFAKETIME_VERSION)
+HOST_FAKETIME_MD5	= $(LIBFAKETIME_MD5)
+HOST_FAKETIME		= $(LIBFAKETIME)
+HOST_FAKETIME_SUFFIX	= $(LIBFAKETIME_SUFFIX)
+HOST_FAKETIME_URL	= $(LIBFAKETIME_URL)
+HOST_FAKETIME_SOURCE	= $(LIBFAKETIME_SOURCE)
+HOST_FAKETIME_LICENSE	= $(LIBFAKETIME_LICENSE)
+HOST_FAKETIME_DIR	= $(HOST_BUILDDIR)/$(HOST_FAKETIME)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+HOST_FAKETIME_CONF_TOOL	= NO
+
+# ----------------------------------------------------------------------------
+# Compile
+# ----------------------------------------------------------------------------
+
+HOST_FAKETIME_MAKE_ENV	= $(HOST_ENV)
+HOST_FAKETIME_MAKE_OPT	= PREFIX=$(PTXCONF_SYSROOT_HOST) DESTDIR=
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+HOST_FAKETIME_INSTALL_OPT	= PREFIX=$(PTXCONF_SYSROOT_HOST) DESTDIR= install
+
+# vim: syntax=make
-- 
2.19.0

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2018-10-26 13:47 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-11 14:19 [ptxdist] [PATCH 1/3] host-faketime: new package Baeuerle, Florian
2018-10-11 14:19 ` [ptxdist] [PATCH 2/3] barebox: add option for building barebox reproducibly Baeuerle, Florian
2018-10-12  7:59   ` Baeuerle, Florian
2018-10-12 12:01   ` Michael Olbrich
2018-10-12 12:21     ` Baeuerle, Florian
2018-10-24  8:19       ` Michael Olbrich
2018-10-26 13:46         ` [ptxdist] [PATCH 0/2] Barebox reproducible build + ptxdist setup configuration Baeuerle, Florian
2018-10-26 13:46           ` [ptxdist] [PATCH 1/4] config/setup: make reproducible builds configurable Baeuerle, Florian
2018-10-26 13:46           ` [ptxdist] [PATCH 2/4] barebox: depend on HOST_LZOP Baeuerle, Florian
2018-10-26 13:46           ` [ptxdist] [PATCH 3/4] lzop: add patch that allows overriding mtime Baeuerle, Florian
2018-10-26 13:46           ` [ptxdist] [PATCH 4/4] barebox: add support for reproducible build Baeuerle, Florian
2018-10-12 12:28     ` [ptxdist] [PATCH 2/3] barebox: add option for building barebox reproducibly Baeuerle, Florian
2018-10-16  8:59       ` Michael Olbrich
2018-10-16 11:06         ` Baeuerle, Florian
2018-10-16 12:51           ` Michael Olbrich
2018-10-16 14:11             ` Baeuerle, Florian
2018-10-16 19:06               ` Michael Olbrich
2018-10-16 10:09   ` Michael Olbrich
2018-10-16 10:57     ` Baeuerle, Florian
2018-10-16 12:38       ` Michael Olbrich
2018-10-16 14:27         ` Baeuerle, Florian
2018-10-16 19:20           ` Michael Olbrich
2018-10-16 17:15       ` Alexander Dahl
2018-10-16 19:13         ` Michael Olbrich
2018-10-11 14:19 ` [ptxdist] [PATCH 3/3] barebox_mlo: add option for building barebox_mlo reproducibly Baeuerle, Florian
2018-10-11 14:43 ` [ptxdist] [PATCH 1/3] host-faketime: new package Roland Hieber
2018-10-11 21:30   ` Jon Ringle
2018-10-16  7:33     ` Baeuerle, Florian
2018-10-16  8:47       ` Michael Olbrich
2018-10-12  7:47   ` Baeuerle, Florian
2018-10-16  8:51     ` Michael Olbrich
2018-10-16 11:34       ` Alexander Dahl
2018-10-16 12:30         ` Michael Olbrich
2018-10-16  8:53 ` Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox