diff options
| -rw-r--r-- | meta-oe/recipes-support/sg3-utils/sg3-utils/0001-sg_dd.c-Use-off_t-instead-of-uint.patch | 36 | ||||
| -rw-r--r-- | meta-oe/recipes-support/sg3-utils/sg3-utils_1.48.bb (renamed from meta-oe/recipes-support/sg3-utils/sg3-utils_1.47.bb) | 5 |
2 files changed, 2 insertions, 39 deletions
diff --git a/meta-oe/recipes-support/sg3-utils/sg3-utils/0001-sg_dd.c-Use-off_t-instead-of-uint.patch b/meta-oe/recipes-support/sg3-utils/sg3-utils/0001-sg_dd.c-Use-off_t-instead-of-uint.patch deleted file mode 100644 index 317876f197..0000000000 --- a/meta-oe/recipes-support/sg3-utils/sg3-utils/0001-sg_dd.c-Use-off_t-instead-of-uint.patch +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 1 | From 9a8ede03ef61cdf527ce3a80771150a7452e4603 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Sat, 11 Mar 2023 22:56:17 -0800 | ||
| 4 | Subject: [PATCH] sg_dd.c: Use off_t instead of uint | ||
| 5 | |||
| 6 | uint is not available on every platform e.g. linux/musl systems. Use | ||
| 7 | uint32_t instead to represent 'off' variable, Fixes | ||
| 8 | |||
| 9 | sg_dd.c:2402:17: error: use of undeclared identifier 'uint'; did you mean 'int'? | ||
| 10 | uint off; | ||
| 11 | ^~~~ | ||
| 12 | int | ||
| 13 | 1 error generated. | ||
| 14 | |||
| 15 | Upstream-Status: Pending | ||
| 16 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 17 | --- | ||
| 18 | src/sg_dd.c | 2 +- | ||
| 19 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 20 | |||
| 21 | diff --git a/src/sg_dd.c b/src/sg_dd.c | ||
| 22 | index 9d05c93..35e2423 100644 | ||
| 23 | --- a/src/sg_dd.c | ||
| 24 | +++ b/src/sg_dd.c | ||
| 25 | @@ -2399,7 +2399,7 @@ main(int argc, char * argv[]) | ||
| 26 | res = blocks * blk_sz; | ||
| 27 | if (iflag.zero && iflag.ff && (blk_sz >= 4)) { | ||
| 28 | uint32_t pos = (uint32_t)skip; | ||
| 29 | - uint off; | ||
| 30 | + uint32_t off; | ||
| 31 | |||
| 32 | for (k = 0, off = 0; k < blocks; ++k, off += blk_sz, ++pos) { | ||
| 33 | for (j = 0; j < (blk_sz - 3); j += 4) | ||
| 34 | -- | ||
| 35 | 2.39.2 | ||
| 36 | |||
diff --git a/meta-oe/recipes-support/sg3-utils/sg3-utils_1.47.bb b/meta-oe/recipes-support/sg3-utils/sg3-utils_1.48.bb index 1aa65e6cc4..6c3d813983 100644 --- a/meta-oe/recipes-support/sg3-utils/sg3-utils_1.47.bb +++ b/meta-oe/recipes-support/sg3-utils/sg3-utils_1.48.bb | |||
| @@ -8,13 +8,12 @@ SECTION = "console/admin" | |||
| 8 | LICENSE = "GPL-2.0-or-later & BSD-2-Clause" | 8 | LICENSE = "GPL-2.0-or-later & BSD-2-Clause" |
| 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=f685699d3ac82f108aa880043fa3feb7" | 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=f685699d3ac82f108aa880043fa3feb7" |
| 10 | 10 | ||
| 11 | SRC_URI = "http://sg.danny.cz/sg/p/sg3_utils-${PV}.tgz \ | 11 | SRC_URI = "http://sg.danny.cz/sg/p/sg3_utils-${PV}.tgz" |
| 12 | file://0001-sg_dd.c-Use-off_t-instead-of-uint.patch" | ||
| 13 | MIRRORS += "http://sg.danny.cz/sg/p https://fossies.org/linux/misc" | 12 | MIRRORS += "http://sg.danny.cz/sg/p https://fossies.org/linux/misc" |
| 14 | 13 | ||
| 15 | UPSTREAM_CHECK_REGEX = "sg3_utils-(?P<pver>\d+(\.\d+)+)\.tgz" | 14 | UPSTREAM_CHECK_REGEX = "sg3_utils-(?P<pver>\d+(\.\d+)+)\.tgz" |
| 16 | 15 | ||
| 17 | SRC_URI[sha256sum] = "8673c7faca849b6b34764332d2aa91f72db05bff7382bb836d0688795199c3e1" | 16 | SRC_URI[sha256sum] = "d62b6c3cf20390fa7357044390084166d25f1d932a1135c450b69fe5c283d773" |
| 18 | 17 | ||
| 19 | inherit autotools-brokensep | 18 | inherit autotools-brokensep |
| 20 | 19 | ||
