e1531466e1
This change updates grub to the 2.04 release. The new release changed how grub is built, so the bootstrap and bootstrap.conf files have to be added to the dist-git. Also, the gitignore file changed so it has to be updated. Since the patches have been forward ported to 2.04, there's no need for a logic to maintain a patch with the delta between the release and the grub master branch. So the release-to-master.patch is dropped and no longer is updated by the do-rebase script. Also since gnulib isn't part of the grub repository anymore and cloned by the boostrap tool, a gnulib tarball is included as other source file and copied before calling the bootstrap tool. That way grub can be built even in builders that only have access to the sources lookaside cache. Resolves: rhbz#1727279 Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Javier Martinez Canillas <javierm@redhat.com>
|
|
Date: Mon, 11 Feb 2019 15:14:10 +0100
|
|
Subject: [PATCH] Don't make grub_strtoull() print an error if no conversion is
|
|
performed
|
|
|
|
Callers can check if grub_errno was set to GRUB_ERR_BAD_NUMBER, so there's
|
|
no need to print an error if a conversion couldn't be performed. This just
|
|
pollutes the output with noisy error messages.
|
|
|
|
Resolves: rhbz#1674512
|
|
|
|
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
|
|
---
|
|
grub-core/kern/misc.c | 3 +--
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
diff --git a/grub-core/kern/misc.c b/grub-core/kern/misc.c
|
|
index f6eaa7b4df8..2477eb609ba 100644
|
|
--- a/grub-core/kern/misc.c
|
|
+++ b/grub-core/kern/misc.c
|
|
@@ -473,8 +473,7 @@ grub_strtoull (const char *str, const char ** const end, int base)
|
|
|
|
if (! found)
|
|
{
|
|
- grub_error (GRUB_ERR_BAD_NUMBER,
|
|
- N_("unrecognized number"));
|
|
+ grub_errno = GRUB_ERR_BAD_NUMBER;
|
|
return 0;
|
|
}
|
|
|