grub-efi doesn't understand my keyboard-layout

  • Open
  • quality assurance status badge
Details
2 participants
  • Julien Lepiller
  • Ludovic Courtès
Owner
unassigned
Submitted by
Julien Lepiller
Severity
normal

Debbugs page

Julien Lepiller wrote 6 years ago
(address . bug-guix@gnu.org)
20190608151900.01c41d2c@tachikoma.lepiller.eu
Hi!

here is a part of my config:

```
(operating-system
(keyboard-layout (keyboard-layout "fr" "bepo"))
(bootloader
(bootloader-configuration
(target "/boot/efi")
(bootloader grub-efi-bootloader)
(keyboard-layout keyboard-layout)))
...)
```

But grub's prompt uses qwerty.
Ludovic Courtès wrote 6 years ago
(name . Julien Lepiller)(address . julien@lepiller.eu)(address . 36137@debbugs.gnu.org)
87r28397yt.fsf@gnu.org
Hi,

Julien Lepiller <julien@lepiller.eu> skribis:

Toggle quote (15 lines)
> here is a part of my config:
>
> ```
> (operating-system
> (keyboard-layout (keyboard-layout "fr" "bepo"))
> (bootloader
> (bootloader-configuration
> (target "/boot/efi")
> (bootloader grub-efi-bootloader)
> (keyboard-layout keyboard-layout)))
> ...)
> ```
>
> But grub's prompt uses qwerty.

Could you do:

drv="$(guix gc -R $(guix system build -nd /etc/config.scm) | grep 'grub-keymap.*\.drv$')"
guix build --log-file $drv

and post that log?

Thanks,
Ludo’.
Julien Lepiller wrote 6 years ago
(name . Ludovic Courtès)(address . ludo@gnu.org)(address . 36137@debbugs.gnu.org)
5622D1E0-FAF0-4641-8FE7-03795562BE0E@lepiller.eu
Le 8 juin 2019 21:45:46 GMT+02:00, "Ludovic Courtès" <ludo@gnu.org> a écrit :
Toggle quote (30 lines)
>Hi,
>
>Julien Lepiller <julien@lepiller.eu> skribis:
>
>> here is a part of my config:
>>
>> ```
>> (operating-system
>> (keyboard-layout (keyboard-layout "fr" "bepo"))
>> (bootloader
>> (bootloader-configuration
>> (target "/boot/efi")
>> (bootloader grub-efi-bootloader)
>> (keyboard-layout keyboard-layout)))
>> ...)
>> ```
>>
>> But grub's prompt uses qwerty.
>
>Could you do:
>
>drv="$(guix gc -R $(guix system build -nd /etc/config.scm) | grep
>'grub-keymap.*\.drv$')"
> guix build --log-file $drv
>
>and post that log?
>
>Thanks,
>Ludo’.

guix gc -R … doesn't show any derivation with grub in its name, and the only one with keymap in the name is console-keymap.fr.drv.
Ludovic Courtès wrote 6 years ago
(name . Julien Lepiller)(address . julien@lepiller.eu)(address . 36137@debbugs.gnu.org)
87a7el352m.fsf@gnu.org
Hi,

Julien Lepiller <julien@lepiller.eu> skribis:

Toggle quote (14 lines)
> Le 8 juin 2019 21:45:46 GMT+02:00, "Ludovic Courtès" <ludo@gnu.org> a écrit :
>>Could you do:
>>
>>drv="$(guix gc -R $(guix system build -nd /etc/config.scm) | grep
>>'grub-keymap.*\.drv$')"
>> guix build --log-file $drv
>>
>>and post that log?
>>
>>Thanks,
>>Ludo’.
>
> guix gc -R … doesn't show any derivation with grub in its name, and the only one with keymap in the name is console-keymap.fr.drv.

What if you search like this:

guix gc -R $(guix gc --derivers $(readlink -f /run/current-system)) \
| grep keymap.*drv

The derivation we’re looking for is the one created by
‘keyboard-layout-file’ in (gnu bootloader grub).

Thanks,
Ludo’.
?
Your comment

Commenting via the web interface is currently disabled.

To comment on this conversation send an email to 36137@debbugs.gnu.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 36137
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch
You may also tag this issue. See list of standard tags. For example, to set the confirmed and easy tags
mumi command -t +confirmed -t +easy
Or, remove the moreinfo tag and set the help tag
mumi command -t -moreinfo -t +help