diff options
author | Khem Raj <raj.khem@gmail.com> | 2022-12-12 13:03:03 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-12-13 23:31:40 +0000 |
commit | e911886a9177ddbe5f8006553aa4e8a6b74f9b49 (patch) | |
tree | fca011b3314bc62f3b0c894aedef6df15add92c0 /meta/recipes-devtools/fdisk | |
parent | 514a3548cf040fad4e3851cc344abdcb4aedab3a (diff) | |
download | poky-e911886a9177ddbe5f8006553aa4e8a6b74f9b49.tar.gz |
gptfdisk: Enable largefile support functions
Ensures it builds/works fine when _LARGEFILE64_SUPPORT is disabled.
(From OE-Core rev: a3a5999ce4373cb81cd0adc7b8638a70eae41555)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/fdisk')
-rw-r--r-- | meta/recipes-devtools/fdisk/gptfdisk/0001-Use-64bit-time_t-on-linux-as-well.patch | 32 | ||||
-rw-r--r-- | meta/recipes-devtools/fdisk/gptfdisk_1.0.9.bb | 1 |
2 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/fdisk/gptfdisk/0001-Use-64bit-time_t-on-linux-as-well.patch b/meta/recipes-devtools/fdisk/gptfdisk/0001-Use-64bit-time_t-on-linux-as-well.patch new file mode 100644 index 0000000000..80e6f1bc9c --- /dev/null +++ b/meta/recipes-devtools/fdisk/gptfdisk/0001-Use-64bit-time_t-on-linux-as-well.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From cbdbabcc14e4ae4debcc64e41c0bb97d47b4eeef Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Mon, 12 Dec 2022 12:50:07 -0800 | ||
4 | Subject: [PATCH] Use 64bit time_t on linux as well | ||
5 | |||
6 | Alias 64bit version of stat functions to original functions | ||
7 | we are already passing -D_FILE_OFFSET_BITS=64 in linux Makefile | ||
8 | |||
9 | Upstream-Status: Submitted [https://sourceforge.net/p/gptfdisk/code/merge-requests/29/] | ||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | --- | ||
12 | diskio-unix.cc | 6 +++++- | ||
13 | 1 file changed, 5 insertions(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/diskio-unix.cc b/diskio-unix.cc | ||
16 | index 7780aeb..0897c56 100644 | ||
17 | --- a/diskio-unix.cc | ||
18 | +++ b/diskio-unix.cc | ||
19 | @@ -37,8 +37,12 @@ | ||
20 | |||
21 | using namespace std; | ||
22 | |||
23 | -#ifdef __APPLE__ | ||
24 | +#if defined(__APPLE__) || defined(__linux__) | ||
25 | #define off64_t off_t | ||
26 | +#define stat64 stat | ||
27 | +#define fstat64 fstat | ||
28 | +#define lstat64 lstat | ||
29 | +#define lseek64 lseek | ||
30 | #endif | ||
31 | |||
32 | // Returns the official "real" name for a shortened version of same. | ||
diff --git a/meta/recipes-devtools/fdisk/gptfdisk_1.0.9.bb b/meta/recipes-devtools/fdisk/gptfdisk_1.0.9.bb index 4a25945363..66935b7fbb 100644 --- a/meta/recipes-devtools/fdisk/gptfdisk_1.0.9.bb +++ b/meta/recipes-devtools/fdisk/gptfdisk_1.0.9.bb | |||
@@ -11,6 +11,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${PV}/${BP}.tar.gz \ | |||
11 | file://0001-gptcurses-correctly-include-curses.h.patch \ | 11 | file://0001-gptcurses-correctly-include-curses.h.patch \ |
12 | file://0001-Updated-guid.cc-to-deal-with-minor-change-in-libuuid.patch \ | 12 | file://0001-Updated-guid.cc-to-deal-with-minor-change-in-libuuid.patch \ |
13 | file://0001-Fix-failure-crash-of-sgdisk-when-compiled-with-lates.patch \ | 13 | file://0001-Fix-failure-crash-of-sgdisk-when-compiled-with-lates.patch \ |
14 | file://0001-Use-64bit-time_t-on-linux-as-well.patch \ | ||
14 | " | 15 | " |
15 | SRC_URI[sha256sum] = "dafead2693faeb8e8b97832b23407f6ed5b3219bc1784f482dd855774e2d50c2" | 16 | SRC_URI[sha256sum] = "dafead2693faeb8e8b97832b23407f6ed5b3219bc1784f482dd855774e2d50c2" |
16 | 17 | ||