diff options
author | Alexandru Ardelean <ardeleanalex@gmail.com> | 2016-11-21 15:54:26 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-12-20 16:24:21 +0100 |
commit | 65c8f2890ca4f41f5b933b5bc1e43de86cc1bd54 (patch) | |
tree | b24f2d1b6c9056a5038a8a6ed76571302b745bd8 /package/boot/grub2/patches/100-musl-compat.patch | |
parent | 77812cdfec6258c3a4db9256419e9dbdcaf8d7ec (diff) | |
download | mtk-20170518-65c8f2890ca4f41f5b933b5bc1e43de86cc1bd54.zip mtk-20170518-65c8f2890ca4f41f5b933b5bc1e43de86cc1bd54.tar.gz mtk-20170518-65c8f2890ca4f41f5b933b5bc1e43de86cc1bd54.tar.bz2 |
grub2: upgrade to 2.02-beta3 (3 years newer than previous)
'100-musl-compat.patch' does not seem to be required anymore.
'210-fix_serial_rtscts.patchi' is superseeded by:
http://git.savannah.gnu.org/cgit/grub.git/commit/?id=bac5d1a64ab4191058a8fd4c05f6b3b339e249e7
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
Diffstat (limited to 'package/boot/grub2/patches/100-musl-compat.patch')
-rw-r--r-- | package/boot/grub2/patches/100-musl-compat.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/package/boot/grub2/patches/100-musl-compat.patch b/package/boot/grub2/patches/100-musl-compat.patch deleted file mode 100644 index e3b12be..0000000 --- a/package/boot/grub2/patches/100-musl-compat.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- a/grub-core/osdep/unix/hostdisk.c -+++ b/grub-core/osdep/unix/hostdisk.c -@@ -48,11 +48,10 @@ - #ifdef __linux__ - # include <sys/ioctl.h> /* ioctl */ - # include <sys/mount.h> --# if !defined(__GLIBC__) || \ -- ((__GLIBC__ < 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ < 1))) -+# if defined(__UCLIBC__) - /* Maybe libc doesn't have large file support. */ - # include <linux/unistd.h> /* _llseek */ --# endif /* (GLIBC < 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR < 1)) */ -+# endif /* __UCLIBC__ */ - #endif /* __linux__ */ - - grub_uint64_t -@@ -79,8 +78,7 @@ grub_util_get_fd_size (grub_util_fd_t fd - return st.st_size; - } - --#if defined(__linux__) && (!defined(__GLIBC__) || \ -- ((__GLIBC__ < 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ < 1)))) -+#if defined(__linux__) && defined(__UCLIBC__) - /* Maybe libc doesn't have large file support. */ - int - grub_util_fd_seek (grub_util_fd_t fd, grub_uint64_t off) |