summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>2020-02-24 17:27:29 +0800
committerKhem Raj <raj.khem@gmail.com>2020-02-24 10:03:17 -0800
commitb60c61a62cbe0679828a062fbd81faf241707340 (patch)
tree3d7899b3992e873c727e298ef635bafaa0696402
parent7d06fdd77171c12a0f66b973eb2c3fcae14afa7d (diff)
downloadmeta-openembedded-b60c61a62cbe0679828a062fbd81faf241707340.tar.gz
xfsdump: 3.1.8 -> 3.1.9
work-with-new-version-of-xfsprogs.patch is removed because it is included in 3.1.9. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-filesystems/recipes-utils/xfsdump/files/work-with-new-version-of-xfsprogs.patch28
-rw-r--r--meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.9.bb (renamed from meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.8.bb)5
2 files changed, 2 insertions, 31 deletions
diff --git a/meta-filesystems/recipes-utils/xfsdump/files/work-with-new-version-of-xfsprogs.patch b/meta-filesystems/recipes-utils/xfsdump/files/work-with-new-version-of-xfsprogs.patch
deleted file mode 100644
index 4ce23d717..000000000
--- a/meta-filesystems/recipes-utils/xfsdump/files/work-with-new-version-of-xfsprogs.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1Make it work with xfsprogs 5.2.0.
2
3"xfs_fsop_geom_v1_t" has changed to "struct xfs_fsop_geom_v1"
4in xfsprogs since version 5.2.0.
5
6Upstream-Status: Pending
7
8Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com>
9---
10 common/fs.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/common/fs.c b/common/fs.c
14index 60cf0fd..2cc7031 100644
15--- a/common/fs.c
16+++ b/common/fs.c
17@@ -204,7 +204,7 @@ fs_mounted( char *typs, char *chrs, char *mnts, uuid_t *idp )
18 int
19 fs_getid( char *mnts, uuid_t *idb )
20 {
21- xfs_fsop_geom_v1_t geo;
22+ struct xfs_fsop_geom_v1 geo;
23 int fd;
24
25 fd = open( mnts, O_RDONLY );
26--
272.7.4
28
diff --git a/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.8.bb b/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.9.bb
index 9c5755862..3e18fba74 100644
--- a/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.8.bb
+++ b/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.9.bb
@@ -12,11 +12,10 @@ DEPENDS = "xfsprogs attr"
12 12
13SRC_URI = "https://www.kernel.org/pub/linux/utils/fs/xfs/xfsdump/${BP}.tar.xz \ 13SRC_URI = "https://www.kernel.org/pub/linux/utils/fs/xfs/xfsdump/${BP}.tar.xz \
14 file://remove-install-as-user.patch \ 14 file://remove-install-as-user.patch \
15 file://work-with-new-version-of-xfsprogs.patch \
16 ${@bb.utils.contains('DISTRO_FEATURES','usrmerge','file://0001-xfsdump-support-usrmerge.patch','',d)} \ 15 ${@bb.utils.contains('DISTRO_FEATURES','usrmerge','file://0001-xfsdump-support-usrmerge.patch','',d)} \
17 " 16 "
18SRC_URI[md5sum] = "84d3bc287b4a2bb5d16b2320a47049a7" 17SRC_URI[md5sum] = "086f7582875b14c17522867ffe3e202b"
19SRC_URI[sha256sum] = "ed14e67ae5b273c2698e767b43a46f033d361e540fe13feaaf9b110ee0edc585" 18SRC_URI[sha256sum] = "55aeede6232ddce6c9e79e2af88d6f808534df1552eb2bfaf7fb85b92add6dd1"
20 19
21inherit autotools-brokensep 20inherit autotools-brokensep
22 21