Hi, we are planning a release in next 1-2 days for efi launch and will try to merge some
of these patches in it and remaining ones in separate release.
Thanks
Kuo
-----Original Message-----
From: Intel-KGT [mailto:intel-kgt-bounces@lists.01.org] On Behalf Of Michael S. Tsirkin
Sent: Thursday, September 17, 2015 1:54 PM
To: intel-kgt(a)ml01.01.org
Subject: Re: [iKGT] [PATCH] integrity: fix reproducible builds
On Tue, Sep 15, 2015 at 11:16:50PM +0300, Michael S. Tsirkin wrote:
On Fedora 22, build fails:
integrity/driver/main.c:121:68: error: macro "__DATE__" might prevent
reproducible builds [-Werror=date-time]
PRINTK_INFO("%s: Built on %s @ %s\n", __func__, __DATE__, __TIME__);
That's with:
gcc (GCC) 5.1.1 20150618 (Red Hat 5.1.1-4)
Reproducible builds are nice to have, and there's not a lot of value
in having the build date and time in the log.
Let's just drop them.
Signed-off-by: Michael S. Tsirkin <mst(a)redhat.com>
Ping. Do you plan to integrate this?
---
driver/main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/driver/main.c b/driver/main.c index 0dce07f..1035794
100755
--- a/driver/main.c
+++ b/driver/main.c
@@ -118,7 +118,7 @@ static void uninit_shared_regions(void)
static int __init init_agent(void)
{
- PRINTK_INFO("%s: Built on %s @ %s\n", __func__, __DATE__, __TIME__);
+ PRINTK_INFO("%s\n", __func__);
if (!init_shared_regions()) {
PRINTK_ERROR("init_shared_regions failed\n");
--
MST
_______________________________________________
Intel-KGT mailing list
Intel-KGT(a)lists.01.org
https://lists.01.org/mailman/listinfo/intel-kgt