diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-09-30 16:02:06 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-09-30 20:16:53 +0200 |
commit | 2c3c7c4f930ec595301a45df72f9969931129f5e (patch) | |
tree | 996e7022c4ebccf004c3bd998fb1496ca8965530 /package/bootutils/0001-fix-build-with-glibc-2.28.patch | |
parent | fbb7c269dcbef5249e460034a84b82c6233c8b38 (diff) | |
download | buildroot-2c3c7c4f930ec595301a45df72f9969931129f5e.tar.gz buildroot-2c3c7c4f930ec595301a45df72f9969931129f5e.zip |
bootutils: drop package
As suggested by Romain Naour during review of patch 976582
(https://patchwork.ozlabs.org/patch/976582), drop bootutils as "upstream
is dead since 2009" and "BootUtils is a collection of utilities to
facilitate booting of modern Kernel 2.6 based systems"
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/bootutils/0001-fix-build-with-glibc-2.28.patch')
-rw-r--r-- | package/bootutils/0001-fix-build-with-glibc-2.28.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/package/bootutils/0001-fix-build-with-glibc-2.28.patch b/package/bootutils/0001-fix-build-with-glibc-2.28.patch deleted file mode 100644 index fced93d4a6..0000000000 --- a/package/bootutils/0001-fix-build-with-glibc-2.28.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 00773e89893e4aaed721269eee0dbf844edd291c Mon Sep 17 00:00:00 2001 -From: Fabrice Fontaine <fontaine.fabrice@gmail.com> -Date: Sat, 29 Sep 2018 12:56:14 +0200 -Subject: [PATCH] fix build with glibc 2.28 - -Include to sys/sysmacros.h is needed to use makedev since glibc 2.28 so -add this include to devname.c and raidscan.c - -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> ---- - libblkid/devname.c | 1 + - raidscan.c | 1 + - 2 files changed, 2 insertions(+) - -diff --git a/libblkid/devname.c b/libblkid/devname.c -index d11bddd..12b63db 100644 ---- a/libblkid/devname.c -+++ b/libblkid/devname.c -@@ -37,6 +37,7 @@ - #if HAVE_SYS_MKDEV_H - #include <sys/mkdev.h> - #endif -+#include <sys/sysmacros.h> - #include <time.h> - - #include "blkidP.h" -diff --git a/raidscan.c b/raidscan.c -index fab3b02..6e07b3d 100644 ---- a/raidscan.c -+++ b/raidscan.c -@@ -22,6 +22,7 @@ - #include "config.h" - - #include <sys/stat.h> -+#include <sys/sysmacros.h> - #include <fcntl.h> - #include <sys/ioctl.h> - #include <linux/major.h> --- -2.17.1 - |