mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
7d22831770
Added tag to SRC_URI. Release notes [1]: Add lvmlockd compare and write, index man pages, and a lot of fixes. * Add atomic leases using Compare and Write (CAW) to lvmlockd. * Add lvm-index(7), lvm-categories(7) and lvm-args(7) man pages. * Use temporary activations for integrity, writecache, thin and VDO pool conv preventing interference. * Fix `vgreduce --removemissing --force` infinite loop for raid/mirror snapshot. * Improve RAID LV health report to distinguish 'refresh needed' from 'repair needed'. * Support `--interval +N` to delay first poll in pvmove and lvpoll. * Show active cache mode in kernel table line with `lvs -o kernel_cache_mode`. * Reject lvreduce of CoW snapshot COW store when it would truncate exception data. * Skip filesystem resize handling for CoW snapshot COW store LVs in lvresize. * Fix vgsplit to not fail on no active LV on a PV being split to an existing VG. * Preserve file desciptors with CLOEXEC opened in library constructors. * Add lvmpolld 'cmd' log keyword to enable verbose lvpoll output. * Add `activate_lv_temporary()` to consolidate `LV_TEMPORARY` and sync handling. * Add missing sync in `add_mirror_log()` and `activate_and_wipe_lv_list()`. * Fix cachevol cmeta/cdata device offsets. * Fix pofile generation to include SOURCES2 binaries and update xgettext options. [1] https://github.com/lvmteam/lvm2/releases/tag/v2_03_39 Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From f5c6fabbdf2e7bfa105658b9dfe45d2ab86f34bb Mon Sep 17 00:00:00 2001
|
|
From: Joe Slater <joe.slater@windriver.com>
|
|
Date: Fri, 17 Jul 2020 13:59:56 -0700
|
|
Subject: [PATCH] configure.ac: override CONFIGURE_LINE
|
|
|
|
For reproducible binaries, we need to report a constant CONFIGURE_LINE.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Joe Slater <joe.slater@windriver.com>
|
|
---
|
|
configure.ac | 10 +++++++++-
|
|
1 file changed, 9 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 5364dd68e..c2dbf3c9f 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -14,7 +14,15 @@ AC_PREREQ(2.69)
|
|
################################################################################
|
|
dnl -- Process this file with autoconf to produce a configure script.
|
|
AC_INIT
|
|
-CONFIGURE_LINE="$0 $@"
|
|
+
|
|
+dnl per reproducible-builds.org check SOURCE_DATE_EPOCH
|
|
+dnl
|
|
+if test -z "${SOURCE_DATE_EPOCH+set}" ; then
|
|
+ CONFIGURE_LINE="$0 $@"
|
|
+else
|
|
+ CONFIGURE_LINE="configure options are not available for reproducible builds"
|
|
+fi
|
|
+
|
|
AC_CONFIG_SRCDIR([lib/device/dev-cache.h])
|
|
AC_CONFIG_HEADERS([include/configure.h])
|
|
|