From ebccb6488061feeb5c10e6c0179a5dcc1b89944a Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Tue, 2 Nov 2021 03:24:58 +0100 Subject: lvm: Update to version 2.02.188 Drop all patches while doing so, seems to work just fine without. New dependency is libaio. Also add a dependency on BLK_DEV_DM kernel symbol. Note the backported patch from upstream fixing for libc implementations without symbol versioning support which caused a segfault in cryptsetup due to recursive calls to dm_task_get_info_base(). Signed-off-by: Phil Sutter --- package/lvm/patches/patch-tools_lvmcmdline_c | 34 ---------------------------- 1 file changed, 34 deletions(-) delete mode 100644 package/lvm/patches/patch-tools_lvmcmdline_c (limited to 'package/lvm/patches/patch-tools_lvmcmdline_c') diff --git a/package/lvm/patches/patch-tools_lvmcmdline_c b/package/lvm/patches/patch-tools_lvmcmdline_c deleted file mode 100644 index 8c5cb5c6b..000000000 --- a/package/lvm/patches/patch-tools_lvmcmdline_c +++ /dev/null @@ -1,34 +0,0 @@ ---- LVM2.2.02.177.orig/tools/lvmcmdline.c 2017-12-18 21:44:35.000000000 +0100 -+++ LVM2.2.02.177/tools/lvmcmdline.c 2018-06-07 03:09:58.000000000 +0200 -@@ -3093,9 +3093,12 @@ int lvm_split(char *str, int *argc, char - static int _check_standard_fds(void) - { - int err = is_valid_fd(STDERR_FILENO); -+ FILE *stdin_stream = stdin; -+ FILE *stdout_stream = stdout; -+ FILE *stderr_stream = stderr; - - if (!is_valid_fd(STDIN_FILENO) && -- !(stdin = fopen(_PATH_DEVNULL, "r"))) { -+ !(stdin_stream = fopen(_PATH_DEVNULL, "r"))) { - if (err) - perror("stdin stream open"); - else -@@ -3105,7 +3108,7 @@ static int _check_standard_fds(void) - } - - if (!is_valid_fd(STDOUT_FILENO) && -- !(stdout = fopen(_PATH_DEVNULL, "w"))) { -+ !(stdout_stream = fopen(_PATH_DEVNULL, "w"))) { - if (err) - perror("stdout stream open"); - /* else no stdout */ -@@ -3113,7 +3116,7 @@ static int _check_standard_fds(void) - } - - if (!is_valid_fd(STDERR_FILENO) && -- !(stderr = fopen(_PATH_DEVNULL, "w"))) { -+ !(stderr_stream = fopen(_PATH_DEVNULL, "w"))) { - printf("stderr stream open: %s\n", - strerror(errno)); - return 0; -- cgit v1.2.3