summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-extended/blktool/blktool/blktool-gnulib-makedev.patch23
-rw-r--r--meta/recipes-extended/blktool/blktool_4-7.bb1
2 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-extended/blktool/blktool/blktool-gnulib-makedev.patch b/meta/recipes-extended/blktool/blktool/blktool-gnulib-makedev.patch
new file mode 100644
index 0000000000..6eea608b29
--- /dev/null
+++ b/meta/recipes-extended/blktool/blktool/blktool-gnulib-makedev.patch
@@ -0,0 +1,23 @@
1include <sys/sysmacros.h> for major/minor defintions
2
3Fixes
4
5| ../blktool-4.orig/blktool.c: In function 'detect_dev_class':
6| ../blktool-4.orig/blktool.c:295:10: warning: implicit declaration of function 'major' [-Wimplicit-function-declaration]
7| switch (major(st_rdev)) {
8| ^~~~~
9
10Upstream-Status: Pending
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12Index: blktool-4.orig/blktool.c
13===================================================================
14--- blktool-4.orig.orig/blktool.c
15+++ blktool-4.orig/blktool.c
16@@ -27,6 +27,7 @@
17 #include <linux/cdrom.h>
18 #include <linux/major.h>
19 #include <scsi/scsi.h>
20+#include <sys/sysmacros.h>
21
22 #include "blktool.h"
23
diff --git a/meta/recipes-extended/blktool/blktool_4-7.bb b/meta/recipes-extended/blktool/blktool_4-7.bb
index 4551c3233e..0e6f7ee6df 100644
--- a/meta/recipes-extended/blktool/blktool_4-7.bb
+++ b/meta/recipes-extended/blktool/blktool_4-7.bb
@@ -13,6 +13,7 @@ SRC_URI = "http://snapshot.debian.org/archive/debian/20160728T043443Z/pool/main/
13 file://0001-fix-typos-in-manpage.patch \ 13 file://0001-fix-typos-in-manpage.patch \
14 file://0002-fix-string-error.patch \ 14 file://0002-fix-string-error.patch \
15 file://0003-Fix-3-d-argument-for-BLKROSET-it-must-be-const-int.patch \ 15 file://0003-Fix-3-d-argument-for-BLKROSET-it-must-be-const-int.patch \
16 file://blktool-gnulib-makedev.patch \
16 " 17 "
17 18
18SRC_URI[tarball.md5sum] = "62edc09c9908107e69391c87f4f3fd40" 19SRC_URI[tarball.md5sum] = "62edc09c9908107e69391c87f4f3fd40"