From 7fc562130dce24e241f84217438811c1393b5ff1 Mon Sep 17 00:00:00 2001 From: david Date: Wed, 23 Aug 2017 16:19:33 +0200 Subject: [PATCH] Grub: Update from version 2.00 to 2.02 fixes for new xfs version Changelog: xfs: fix possible inode corruption in directory scan grub_xfs_iterate_dir did not restore first character after inline name when match was found. Dependning on XFS format this character could be inode number and we could return to the same node later in find_file if processing cycled symlinks. xfs: accept filesystem with meta_uuid XFS V5 stores UUID in metadata and compares them with superblock UUID. To allow changing of user-visible UUID it stores original value in new superblock field (meta_uuid) and sets incompatible flag to indicate that new field must be used to verify metadata. Our driver currently does not check metadata UUID so simply accept such filesystem. --- grub.be0 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/grub.be0 b/grub.be0 index 6ecd44dfa..429e72754 100755 --- a/grub.be0 +++ b/grub.be0 @@ -1,9 +1,10 @@ #!/usr/bin/env beesh -# BEE_VERSION grub-2.00-0 +# BEE_VERSION grub-2.02-0 SRCURL[0]="ftp://ftp.gnu.org/gnu/grub/grub-${PKGVERSION}.tar.gz" -PATCHURL+=(/src/mariux/patches/grub-2.00-0001-avoid-compile-error-due-to-undeclared-gets.patch) + +#PATCHURL+=(/src/mariux/patches/grub-2.00-0001-avoid-compile-error-due-to-undeclared-gets.patch) # EXCLUDE+=()