[PATCH] INSTALL: Document that building grub-mkfont requires xfonts-unifont

2023-04-28 Thread Glenn Washburn
Signed-off-by: Glenn Washburn --- Daniel you asked for this a couple months ago and I just remembered to send it. Glenn --- INSTALL | 3 +++ 1 file changed, 3 insertions(+) diff --git a/INSTALL b/INSTALL index 1c54bd8dc99c..87947df15386 100644 --- a/INSTALL +++ b/INSTALL @@ -42,6 +42,9 @@ To

[PATCH] docs: Add debugging chapter to development documentation

2023-04-28 Thread Glenn Washburn
Debugging GRUB can be tricky and require arcane knowledge. This will help those unfamiliar with the process to get started debugging GRUB with less effort. Signed-off-by: Glenn Washburn --- docs/grub-dev.texi | 217 + 1 file changed, 217 insertions(+)

Re: [PATCH v16 10/10] tests: Add LoongArch to various test cases

2023-04-28 Thread Glenn Washburn
On Thu, 27 Apr 2023 15:46:22 +0800 Xiaotian Wu wrote: > I ran the test suite on a 3A5000 desktop, a LoongArch architecture > machine, using Archlinux for LoongArch distro, see > https://github.com/loongarchlinux. > > Some software versions are: > * linux 6.3.0-rc4 > * gcc 13.0.1 20230312 > *

Re: [PATCH v15 00/10] Add LoongArch support

2023-04-28 Thread Xiaotian Wu
在 2023-04-25星期二的 17:11 +0200,Daniel Kiper写道: > On Tue, Apr 18, 2023 at 08:04:07PM +0800, Xiaotian Wu wrote: > > LoongArch is a new Loongson 3A5000 CPU instruction set, you can > > read > > documents [1] or visit the development community [2] to get more > > information. > > > > [1]: > >

Re: GRUB 2.12 release - update

2023-04-28 Thread Daniel Kiper
Hey, Quick update... On Thu, Dec 22, 2022 at 07:53:33PM +0100, Daniel Kiper wrote: > Hi, > > Quick update below... > > On Wed, Oct 26, 2022 at 04:52:09PM +0200, Daniel Kiper wrote: > > Hi, > > > > We are getting closer to the 2.12 release. Sadly we still do not have > > many of important patch

Re: [PATCH v16 00/10] Add support for LoongArch

2023-04-28 Thread Daniel Kiper
On Thu, Apr 27, 2023 at 03:42:59PM +0800, Xiaotian Wu wrote: > LoongArch is a new Loongson 3A5000 CPU instruction set, you can read > documents [1] or visit the development community [2] to get more information. > > [1]: https://loongson.github.io/LoongArch-Documentation/README-EN.html > [2]:

Re: [PATCH v1] dns: fixed lookup error when no IPv6 is returned

2023-04-28 Thread Daniel Kiper
On Fri, Apr 28, 2023 at 01:17:44PM +0200, Renaud Métrich wrote: > When trying to resolve DNS names into IP addresses, the DNS code fails > from time to time with the following error: > 8< 8< 8< 8< > > error:

Re: [PATCH v1] dns: fixed removal of DNS server

2023-04-28 Thread Daniel Kiper
On Fri, Apr 28, 2023 at 01:05:37PM +0200, Renaud Métrich wrote: > Deleting the DNS server, weI get the following error message: > 8< 8< 8< 8< > > grub> net_del_dns 192.168.122.1 > error: ../../grub-core/net/dns.c:646:no DNS

Re: [PATCH] lib/relocator: always enforce the requested alignment in malloc_in_range()

2023-04-28 Thread Daniel Kiper
On Thu, Apr 27, 2023 at 05:06:54PM +0200, Roger Pau Monne via Grub-devel wrote: > On failure to allocate from grub_relocator_firmware_alloc_region() in > malloc_in_range() the function would stop enforcing the alignment, and > the following was returned: > > lib/relocator.c:431: trying to allocate

Re: [PATCH] font: Try opening fonts from the bundled memdisk

2023-04-28 Thread Daniel Kiper
On Wed, Apr 26, 2023 at 12:06:52PM +0200, Chris Coulson wrote: > Grub since 93a786a00163e50c29f0394df198518617e1c9a5 has enforced > verification of font files in secure boot mode. In order to continue to > be able to load some default fonts, vendors may bundle them with their > signed EFI image by

Re: [PATCH] at_keyboard.c: add timeout to fix hang on hp elitebooks

2023-04-28 Thread Daniel Kiper
On Sun, Apr 23, 2023 at 09:59:34AM +, Riku Viitanen via Grub-devel wrote: > This fixes GRUB on Coreboot on HP EliteBooks by implementing > a 200ms timeout. GRUB used to hang. See: > https://ticket.coreboot.org/issues/141 Missing Signed-off-by. May I add it on your behalf? Otherwise

[PATCH v1] dns: fixed lookup error when no IPv6 is returned

2023-04-28 Thread Renaud Métrich
When trying to resolve DNS names into IP addresses, the DNS code fails from time to time with the following error: 8< 8< 8< 8< error: ../../grub-core/net/dns.c:688:no DNS record found. 8< 8<

[PATCH v1] dns: fixed removal of DNS server

2023-04-28 Thread Renaud Métrich
Deleting the DNS server, weI get the following error message: 8< 8< 8< 8< grub> net_del_dns 192.168.122.1 error: ../../grub-core/net/dns.c:646:no DNS reply received. 8< 8< 8<