diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-09-29 13:15:37 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-09-30 10:40:59 +0200 |
commit | d162cea16d25ab16ba49ac6b2452d1f830791d60 (patch) | |
tree | 6eca7bf2b78abec68d35b51a967f37f49cc78349 /package/bootutils/0001-fix-musl-compilation-issue.patch | |
parent | 5a5102c428d98d79e2b4eeba5226a7c824a1fb66 (diff) | |
download | buildroot-d162cea16d25ab16ba49ac6b2452d1f830791d60.tar.gz buildroot-d162cea16d25ab16ba49ac6b2452d1f830791d60.zip |
bootutils: fix build with glibc 2.28
Replace first patch which was adding sys/types.h to fix musl issue by a
patch adding sys/sysmacros.h to fix build with glibc 2.28
Fixes:
- http://autobuild.buildroot.org/results/c26761663a764a2eb7af54316a6dc78bd01490fb
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/bootutils/0001-fix-musl-compilation-issue.patch')
-rw-r--r-- | package/bootutils/0001-fix-musl-compilation-issue.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/package/bootutils/0001-fix-musl-compilation-issue.patch b/package/bootutils/0001-fix-musl-compilation-issue.patch deleted file mode 100644 index ccb6ef61ec..0000000000 --- a/package/bootutils/0001-fix-musl-compilation-issue.patch +++ /dev/null @@ -1,31 +0,0 @@ -From e4c2c18b9d1d7a6dc17d8f7705b26fc2e2efc5a9 Mon Sep 17 00:00:00 2001 -From: Brendan Heading <brendanheading@gmail.com> -Date: Sun, 30 Aug 2015 20:12:40 +0100 -Subject: [PATCH 1/1] fix musl compilation issue - -makedev(3) requires sys/types.h to be included. - -Note upstream has not issued releases since 2009. No mailing list activity -since January 2010, and even before then it seems to be mostly spam. - -Upstream-Status: dormant -Signed-off-by: Brendan Heading <brendanheading@gmail.com> ---- - raidscan.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/raidscan.c b/raidscan.c -index fab3b02..3cb1a0d 100644 ---- a/raidscan.c -+++ b/raidscan.c -@@ -22,6 +22,7 @@ - #include "config.h" - - #include <sys/stat.h> -+#include <sys/types.h> - #include <fcntl.h> - #include <sys/ioctl.h> - #include <linux/major.h> --- -2.4.3 - |