summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-dbs/postgresql/files/0001-Add-support-for-RISC-V.patch
diff options
context:
space:
mode:
authorRobert Joslyn <robert.joslyn@redrectangle.org>2023-08-20 19:12:57 -0700
committerArmin Kuster <akuster808@gmail.com>2023-08-30 13:40:19 -0400
commit4aeca7b2b321dc09ce4d5c8e6566add487b152ff (patch)
tree48d7f5ce17916d79d9c27af3ff7a54f7c38a0ea4 /meta-oe/recipes-dbs/postgresql/files/0001-Add-support-for-RISC-V.patch
parentac60beb44f62181ce48134bac61d89b7c0f4476f (diff)
downloadmeta-openembedded-4aeca7b2b321dc09ce4d5c8e6566add487b152ff.tar.gz
postgresql: Update to 14.9
This is a minor release to address CVEs and other bug fixes without new features. Remove patches that are fixed in this release. Release notes are available at: https://www.postgresql.org/docs/release/14.6/ https://www.postgresql.org/docs/release/14.7/ https://www.postgresql.org/docs/release/14.8/ https://www.postgresql.org/docs/release/14.9/ License-Update: Copyright year updated Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> [Fixup patch fuzzy] Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-dbs/postgresql/files/0001-Add-support-for-RISC-V.patch')
-rw-r--r--meta-oe/recipes-dbs/postgresql/files/0001-Add-support-for-RISC-V.patch10
1 files changed, 4 insertions, 6 deletions
diff --git a/meta-oe/recipes-dbs/postgresql/files/0001-Add-support-for-RISC-V.patch b/meta-oe/recipes-dbs/postgresql/files/0001-Add-support-for-RISC-V.patch
index 90b7419495..46343674fc 100644
--- a/meta-oe/recipes-dbs/postgresql/files/0001-Add-support-for-RISC-V.patch
+++ b/meta-oe/recipes-dbs/postgresql/files/0001-Add-support-for-RISC-V.patch
@@ -1,16 +1,17 @@
1From 780fd27ea6f7f2c446c46a7a5e26d94106c67efd Mon Sep 17 00:00:00 2001 1From 0801befde991250b4502954fdec61bec8c33da3b Mon Sep 17 00:00:00 2001
2From: "Richard W.M. Jones" <rjones@redhat.com> 2From: "Richard W.M. Jones" <rjones@redhat.com>
3Date: Sun, 20 Nov 2016 15:04:52 +0000 3Date: Sun, 20 Nov 2016 15:04:52 +0000
4Subject: [PATCH] Add support for RISC-V. 4Subject: [PATCH] Add support for RISC-V.
5 5
6The architecture is sufficiently similar to aarch64 that simply 6The architecture is sufficiently similar to aarch64 that simply
7extending the existing aarch64 macro works. 7extending the existing aarch64 macro works.
8
8--- 9---
9 src/include/storage/s_lock.h | 5 +++-- 10 src/include/storage/s_lock.h | 5 +++--
10 1 file changed, 3 insertions(+), 2 deletions(-) 11 1 file changed, 3 insertions(+), 2 deletions(-)
11 12
12diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h 13diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h
13index dccbd29..ad60429 100644 14index 95049f0..e08c963 100644
14--- a/src/include/storage/s_lock.h 15--- a/src/include/storage/s_lock.h
15+++ b/src/include/storage/s_lock.h 16+++ b/src/include/storage/s_lock.h
16@@ -317,11 +317,12 @@ tas(volatile slock_t *lock) 17@@ -317,11 +317,12 @@ tas(volatile slock_t *lock)
@@ -35,7 +36,4 @@ index dccbd29..ad60429 100644
35+#endif /* __arm__ || __arm || __aarch64__ || __aarch64 || __riscv */ 36+#endif /* __arm__ || __arm || __aarch64__ || __aarch64 || __riscv */
36 37
37 38
38 /* 39 /* S/390 and S/390x Linux (32- and 64-bit zSeries) */
39--
402.34.1
41