diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-07-22 00:26:32 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-23 22:26:28 +0100 |
commit | bbd5d098eca400e2b87da0d42623115319fa5906 (patch) | |
tree | 27a74898a19d0be8045b04daef68596f99b12b99 /meta/recipes-extended | |
parent | 2ebc15672c8304f318fe89a82d5dd260bf2a864b (diff) | |
download | poky-bbd5d098eca400e2b87da0d42623115319fa5906.tar.gz |
mdadm: Include sys/sysmacros.h for major/minor definitions
Fixes
implicit declaration of function 'minor' is invalid in C99 [-Wimplicit-function-declaration]
which eventually ends up with a linker error
(From OE-Core rev: 5841e52e79274b2da17bf7dbd1224d0a3dca2d6f)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/mdadm/files/include_sysmacros.patch | 14 | ||||
-rw-r--r-- | meta/recipes-extended/mdadm/mdadm_4.1.bb | 1 |
2 files changed, 15 insertions, 0 deletions
diff --git a/meta/recipes-extended/mdadm/files/include_sysmacros.patch b/meta/recipes-extended/mdadm/files/include_sysmacros.patch new file mode 100644 index 0000000000..8a1d8342d8 --- /dev/null +++ b/meta/recipes-extended/mdadm/files/include_sysmacros.patch | |||
@@ -0,0 +1,14 @@ | |||
1 | include sys/sysmacros.h for major/minor macro definitions | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
5 | --- a/mdadm.h | ||
6 | +++ b/mdadm.h | ||
7 | @@ -35,6 +35,7 @@ extern __off64_t lseek64 __P ((int __fd, | ||
8 | |||
9 | #include <sys/types.h> | ||
10 | #include <sys/stat.h> | ||
11 | +#include <sys/sysmacros.h> | ||
12 | #include <stdint.h> | ||
13 | #include <stdlib.h> | ||
14 | #include <time.h> | ||
diff --git a/meta/recipes-extended/mdadm/mdadm_4.1.bb b/meta/recipes-extended/mdadm/mdadm_4.1.bb index 0cd9626f27..74c94f6ecb 100644 --- a/meta/recipes-extended/mdadm/mdadm_4.1.bb +++ b/meta/recipes-extended/mdadm/mdadm_4.1.bb | |||
@@ -21,6 +21,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/raid/mdadm/${BPN}-${PV}.tar.xz \ | |||
21 | file://0001-Revert-tests-wait-for-complete-rebuild-in-integrity-.patch \ | 21 | file://0001-Revert-tests-wait-for-complete-rebuild-in-integrity-.patch \ |
22 | file://mdadm.init \ | 22 | file://mdadm.init \ |
23 | file://0001-mdadm-add-option-y-for-use-syslog-to-recive-event-re.patch \ | 23 | file://0001-mdadm-add-option-y-for-use-syslog-to-recive-event-re.patch \ |
24 | file://include_sysmacros.patch \ | ||
24 | " | 25 | " |
25 | SRC_URI[md5sum] = "51bf3651bd73a06c413a2f964f299598" | 26 | SRC_URI[md5sum] = "51bf3651bd73a06c413a2f964f299598" |
26 | SRC_URI[sha256sum] = "ab7688842908d3583a704d491956f31324c3a5fc9f6a04653cb75d19f1934f4a" | 27 | SRC_URI[sha256sum] = "ab7688842908d3583a704d491956f31324c3a5fc9f6a04653cb75d19f1934f4a" |