Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
fs unknown in uefi boot [solved]
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo
View previous topic :: View next topic  
Author Message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sat Oct 10, 2020 10:00 pm    Post subject: fs unknown in uefi boot [solved] Reply with quote

Greetings,

I have an server booting uefi gentoo from usb stick, it was running on a asus mb,
the mb sent itself to the next life and instead I have an asrock mb.
I've disabled CSM and tried to boot the os. the boot mgr labels two partitions (our of 4), 1 and 2.
if I select part1, I get to grub rescue.
if I select part2 I get a blinking screen and back to the boot manager.
in grub rescue, I can see all the partitions, only the last one has a known fs.

if I look at the hdd from another system everything looks fine.
fdisk shows all ok:
Code:

Disk /dev/sdf: 14.33 GiB, 15376000000 bytes, 30031250 sectors
Disk model: Ultra Fit       
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 5BB600F4-79E6-41F4-B86B-8A478A4927B1

Device       Start      End  Sectors  Size Type
/dev/sdf1     2048     6143     4096    2M BIOS boot
/dev/sdf2     6144   268287   262144  128M EFI System
/dev/sdf3   268288  5511167  5242880  2.5G Linux swap
/dev/sdf4  5511168 30029201 24518034 11.7G Linux filesystem


and chroot + ls of the boot folder works ok, see:
Code:

chroot) NCC-5001D /boot/grub # ls -l
total 34
drwxr-xr-x 2 root root  2048 Aug 22 13:27 fonts
-rwxr-xr-x 1 root root  8113 Oct 10 22:48 grub.cfg
-rwxr-xr-x 1 root root  1024 Aug 22 13:27 grubenv
drwxr-xr-x 3 root root  2048 Aug 22 13:27 themes
drwxr-xr-x 2 root root 20480 Aug 22 13:27 x86_64-efi
(chroot) NCC-5001D /boot/grub # cat grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod ext2
set root='hd2,gpt4'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt4 --hint-efi=hd2,gpt4 --hint-baremetal=ahci2,gpt4  25c167e3-8c85-4ad9-98d5-117676d1095e
else
  search --no-floppy --fs-uuid --set=root 25c167e3-8c85-4ad9-98d5-117676d1095e
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=C
  insmod gettext
fi
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Gentoo GNU/Linux' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-25c167e3-8c85-4ad9-98d5-117676d1095e' {
        load_video
        insmod gzio
        insmod part_gpt
        insmod fat
        set root='hd2,gpt2'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt2 --hint-efi=hd2,gpt2 --hint-baremetal=ahci2,gpt2  7857-B3C4
        else
          search --no-floppy --fs-uuid --set=root 7857-B3C4
        fi
        echo    'Loading Linux 5.4.66-gentoo ...'
        linux   /kernel-5.4.66-gentoo root=PARTUUID=37636e1b-b9af-48b3-83ee-eea62354797b ro intel_iommu=on iommu=pt pcie_acs_override=id:8086:a170 rootwait modprobe.blacklist=vfio
        # video=efifb:off,vesafb:off,simplefb=off
}
submenu 'Advanced options for Gentoo GNU/Linux' $menuentry_id_option 'gnulinux-advanced-25c167e3-8c85-4ad9-98d5-117676d1095e' {
        menuentry 'Gentoo GNU/Linux, with Linux 5.4.66-gentoo' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.4.66-gentoo-advanced-25c167e3-8c85-4ad9-98d5-117676d1095e' {
                load_video
                insmod gzio
                insmod part_gpt
                insmod fat
                set root='hd2,gpt2'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt2 --hint-efi=hd2,gpt2 --hint-baremetal=ahci2,gpt2  7857-B3C4
                else
                  search --no-floppy --fs-uuid --set=root 7857-B3C4
                fi
                echo    'Loading Linux 5.4.66-gentoo ...'
                linux   /kernel-5.4.66-gentoo root=PARTUUID=37636e1b-b9af-48b3-83ee-eea62354797b ro intel_iommu=on iommu=pt pcie_acs_override=id:8086:a170 rootwait video=efifb:off,vesafb:off,simplefb=off
        }
        menuentry 'Gentoo GNU/Linux, with Linux 5.4.66-gentoo (recovery mode)' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.4.66-gentoo-recovery-25c167e3-8c85-4ad9-98d5-117676d1095e' {
                load_video
                insmod gzio
                insmod part_gpt
                insmod fat
                set root='hd2,gpt2'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt2 --hint-efi=hd2,gpt2 --hint-baremetal=ahci2,gpt2  7857-B3C4
                else
                  search --no-floppy --fs-uuid --set=root 7857-B3C4
                fi
                echo    'Loading Linux 5.4.66-gentoo ...'
                linux   /kernel-5.4.66-gentoo root=PARTUUID=37636e1b-b9af-48b3-83ee-eea62354797b ro single intel_iommu=on iommu=pt pcie_acs_override=id:8086:a170 rootwait video=efifb:off,vesafb:off,simplefb=off
        }
        menuentry 'Gentoo GNU/Linux, with Linux 5.4.60-gentoo' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.4.60-gentoo-advanced-25c167e3-8c85-4ad9-98d5-117676d1095e' {
                load_video
                insmod gzio
                insmod part_gpt
                insmod fat
                set root='hd2,gpt2'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt2 --hint-efi=hd2,gpt2 --hint-baremetal=ahci2,gpt2  7857-B3C4
                else
                  search --no-floppy --fs-uuid --set=root 7857-B3C4
                fi
                echo    'Loading Linux 5.4.60-gentoo ...'
                linux   /kernel-5.4.60-gentoo root=PARTUUID=37636e1b-b9af-48b3-83ee-eea62354797b ro intel_iommu=on iommu=pt pcie_acs_override=id:8086:a170 rootwait video=efifb:off,vesafb:off,simplefb=off
        }
        menuentry 'Gentoo GNU/Linux, with Linux 5.4.60-gentoo (recovery mode)' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.4.60-gentoo-recovery-25c167e3-8c85-4ad9-98d5-117676d1095e' {
                load_video
                insmod gzio
                insmod part_gpt
                insmod fat
                set root='hd2,gpt2'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt2 --hint-efi=hd2,gpt2 --hint-baremetal=ahci2,gpt2  7857-B3C4
                else
                  search --no-floppy --fs-uuid --set=root 7857-B3C4
                fi
                echo    'Loading Linux 5.4.60-gentoo ...'
                linux   /kernel-5.4.60-gentoo root=PARTUUID=37636e1b-b9af-48b3-83ee-eea62354797b ro single intel_iommu=on iommu=pt pcie_acs_override=id:8086:a170 rootwait video=efifb:off,vesafb:off,simplefb=off
        }
        menuentry 'Gentoo GNU/Linux, with Linux 5.4.48-gentoo' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.4.48-gentoo-advanced-25c167e3-8c85-4ad9-98d5-117676d1095e' {
                load_video
                insmod gzio
                insmod part_gpt
                insmod fat
                set root='hd2,gpt2'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt2 --hint-efi=hd2,gpt2 --hint-baremetal=ahci2,gpt2  7857-B3C4
                else
                  search --no-floppy --fs-uuid --set=root 7857-B3C4
                fi
                echo    'Loading Linux 5.4.48-gentoo ...'
                linux   /kernel-5.4.48-gentoo root=PARTUUID=37636e1b-b9af-48b3-83ee-eea62354797b ro intel_iommu=on iommu=pt pcie_acs_override=id:8086:a170 rootwait video=efifb:off,vesafb:off,simplefb=off
        }
        menuentry 'Gentoo GNU/Linux, with Linux 5.4.48-gentoo (recovery mode)' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.4.48-gentoo-recovery-25c167e3-8c85-4ad9-98d5-117676d1095e' {
                load_video
                insmod gzio
                insmod part_gpt
                insmod fat
                set root='hd2,gpt2'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt2 --hint-efi=hd2,gpt2 --hint-baremetal=ahci2,gpt2  7857-B3C4
                else
                  search --no-floppy --fs-uuid --set=root 7857-B3C4
                fi
                echo    'Loading Linux 5.4.48-gentoo ...'
                linux   /kernel-5.4.48-gentoo root=PARTUUID=37636e1b-b9af-48b3-83ee-eea62354797b ro single intel_iommu=on iommu=pt pcie_acs_override=id:8086:a170 rootwait video=efifb:off,vesafb:off,simplefb=off
        }
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###


any idea what I can do to fix it?
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein


Last edited by DaggyStyle on Sun Oct 11, 2020 9:11 pm; edited 1 time in total
Back to top
View user's profile Send private message
alamahant
Advocate
Advocate


Joined: 23 Mar 2019
Posts: 3879

PostPosted: Sat Oct 10, 2020 10:14 pm    Post subject: Reply with quote

Hi
You can disable CSM for pure uefi boot
BUT in BIOS I think you need to find the USB settings menu and keep enabled the USB legacy compatibility option.
:D
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 4:22 am    Post subject: Reply with quote

alamahant wrote:
Hi
You can disable CSM for pure uefi boot
BUT in BIOS I think you need to find the USB settings menu and keep enabled the USB legacy compatibility option.
:D

did both of them already, still no go but I'll verify it.
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 5:34 am    Post subject: Reply with quote

I've verified both, as said, they are ok.
I think there is an issue with the installation, I've installed the gentoo netinst image on an usb and it boots uefi without an issue.
I wonder if running grub-install --efi-directory=/boot/efi in chroot will fix it?
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
nick_gentoo
Tux's lil' helper
Tux's lil' helper


Joined: 07 Jan 2019
Posts: 140

PostPosted: Sun Oct 11, 2020 10:05 am    Post subject: Reply with quote

DaggyStyle, I have a few ideas of where to look at, maybe something will help
  • If option 1 in your boot manager gets you to a Grub rescue prompt, it means that it can find Grub. Is there another Grub installation besides the one you have on the USB stick?
    If the one it finds is the one on the stick, it will look for the partitions marked there as 'hd2,gpt4' - I don't know if their naming might change as a results of the motherboard change
  • Where is the boot folder that you mention: within the EFI System partition (/dev/sdf2) or the root filesystem (/dev/sdf4)?
  • You can use Efibootmgr to see what UEFI knows about installed bootloaders:
    Code:
    efibootmgr -v
    I do not know what it could return on a fresh motherboard
  • Maybe re-running grub-install --efi-directory=/boot/efi can fix it, as your listing shows a different location: /boot/grub/x86_64-efi (where Grub could be installed). But the handbook shows an additional option:
    Code:
    grub-install --target=x86_64-efi --efi-directory=/boot
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 11:23 am    Post subject: Reply with quote

nick_gentoo wrote:
DaggyStyle, I have a few ideas of where to look at, maybe something will help
  • If option 1 in your boot manager gets you to a Grub rescue prompt, it means that it can find Grub. Is there another Grub installation besides the one you have on the USB stick?
    If the one it finds is the one on the stick, it will look for the partitions marked there as 'hd2,gpt4' - I don't know if their naming might change as a results of the motherboard change
  • Where is the boot folder that you mention: within the EFI System partition (/dev/sdf2) or the root filesystem (/dev/sdf4)?
  • You can use Efibootmgr to see what UEFI knows about installed bootloaders:
    Code:
    efibootmgr -v
    I do not know what it could return on a fresh motherboard
  • Maybe re-running grub-install --efi-directory=/boot/efi can fix it, as your listing shows a different location: /boot/grub/x86_64-efi (where Grub could be installed). But the handbook shows an additional option:
    Code:
    grub-install --target=x86_64-efi --efi-directory=/boot



  • there is only one os on the usb, I've dded the gentoo netinst cd onto another device and I'm using it to boot the netinst cd in order to chroot into the existing os.
  • the EFI partition sits on an dedicated partition (sdf2),. the table can be seen at the first post of this topic.
  • will look at the output of efibootmgr, thing is, as the os never booted on this mb, I"m not sure what the bootloader will have.
  • I think this is the only course left. I really don't want to reinstall the os. seems illogical.

_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
nick_gentoo
Tux's lil' helper
Tux's lil' helper


Joined: 07 Jan 2019
Posts: 140

PostPosted: Sun Oct 11, 2020 12:15 pm    Post subject: Reply with quote

DaggyStyle wrote:


  • the EFI partition sits on an dedicated partition (sdf2),. the table can be seen at the first post of this topic.
  • I think this is the only course left. I really don't want to reinstall the os. seems illogical.


I am also pretty sure that a reinstall is not needed.

I meant something different with the question about the EFI partition. You showed a listing of /boot/grub - are those files on /dev/sdf2, or /dev/sdf4? It shows that the files do not have the Write permission, so they are probably not on the EFI partition (that should have a FAT filesystem). But then that x86_64-efi directory in there does not make so much sense. What are the filesystem types of those 4 partitions?
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 2:09 pm    Post subject: Reply with quote

quoting from the first code tag in the first post:
Code:

Disk /dev/sdf: 14.33 GiB, 15376000000 bytes, 30031250 sectors
Disk model: Ultra Fit       
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 5BB600F4-79E6-41F4-B86B-8A478A4927B1

Device       Start      End  Sectors  Size Type
/dev/sdf1     2048     6143     4096    2M BIOS boot
/dev/sdf2     6144   268287   262144  128M EFI System
/dev/sdf3   268288  5511167  5242880  2.5G Linux swap
/dev/sdf4  5511168 30029201 24518034 11.7G Linux filesystem


/boot is mounted on /dev/sdf2
the last partition is ext4

again, this was a working installation which had it's mb changed.
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 3:00 pm    Post subject: Reply with quote

from the chroot:
Code:
(chroot) livecd / # efibootmgr -v
BootCurrent: 0009
Timeout: 1 seconds
BootOrder: 0007,0009,0008
Boot0007* UEFI: SanDisk, Partition 1    PciRoot(0x0)/Pci(0x14,0x0)/USB(16,0)/HD(1,GPT,420cbeb9-e6e4-4a01-95f7-f9c68d5d19c0,0x800,0x1000)..BO
Boot0008  UEFI: SanDisk, Partition 2    PciRoot(0x0)/Pci(0x14,0x0)/USB(16,0)/HD(2,GPT,91b70f81-1584-445e-b6fc-a40784146ea7,0x1800,0x40000)..BO
Boot0009* UEFI: SanDisk Cruzer 8.02, Partition 1        PciRoot(0x0)/Pci(0x14,0x0)/USB(3,0)/HD(1,MBR,0x6b8b4567,0xc0,0x331c)..BO


I've looked into the diff between the netinst and the os, the os has this path:
Code:

(chroot) livecd / # ll /boot/EFI/gentoo/grubx64.efi
-rwxr-xr-x 1 root root 126976 Aug 22 16:27 /boot/EFI/gentoo/grubx64.efi

the netinst has this path:
Code:

livecd /mnt/livecd # ll /mnt/cdrom/EFI/BOOT/grubx64.efi
-rw-r--r-- 1 root root 1212416 Oct  1 13:58 /mnt/cdrom/EFI/BOOT/grubx64.efi


maybe the mb doesn't supports the gentoo sub folder, only the boot subfolder, question is, how to instruct grub to use BOOT instead of gentoo?
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
Anon-E-moose
Watchman
Watchman


Joined: 23 May 2008
Posts: 6103
Location: Dallas area

PostPosted: Sun Oct 11, 2020 3:06 pm    Post subject: Reply with quote

I don't think it's grub dealing with grubx64, that straight UEFI

$ dir /mnt/iso/EFI/BOOT/
total 6.3M
drwxr-xr-x 2 root root 2.0K Apr 2 2020 .
drwxr-xr-x 3 root root 2.0K Apr 2 2020 ..
-rw-r--r-- 1 root root 953K Apr 2 2020 BOOTIA32.EFI
-rw-r--r-- 1 root root 1.2M Apr 2 2020 BOOTX64.EFI
-rw-r--r-- 1 root root 1.1M Apr 2 2020 grubia32.efi
-rw-r--r-- 1 root root 1.1M Apr 2 2020 grubx64.efi
-rw-r--r-- 1 root root 907K Apr 2 2020 mmia32.efi
-rw-r--r-- 1 root root 1.2M Apr 2 2020 mmx64.efi
_________________
PRIME x570-pro, 3700x, 6.1 zen kernel
gcc 13, profile 17.0 (custom bare multilib), openrc, wayland
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 3:11 pm    Post subject: Reply with quote

based on this: https://wiki.gentoo.org/wiki/GRUB2#Motherboard_firmware_not_finding_the_.EFI_file
I've ran grub-install --efi-directory=/boot --removable, here is the output:
Code:

Installing for x86_64-efi platform.
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
calling: info
Installation finished. No error reported.


content matching:
Code:

(chroot) livecd / # md5sum /boot/EFI/BOOT/BOOTX64.EFI /boot/EFI/gentoo/grubx64.efi
378b1ee03e13c3980b13ff4baeeb9240  /boot/EFI/BOOT/BOOTX64.EFI
378b1ee03e13c3980b13ff4baeeb9240  /boot/EFI/gentoo/grubx64.efi


but unfortunately, it still fails to rescue :-/
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
Anon-E-moose
Watchman
Watchman


Joined: 23 May 2008
Posts: 6103
Location: Dallas area

PostPosted: Sun Oct 11, 2020 3:15 pm    Post subject: Reply with quote

I boot the admin cd occasionall, and it's set up like this

Code:
$ find /mnt/iso/EFI /mnt/iso/boot -ls
     2048      2 drwxr-xr-x   3 root     root         2048 Apr  2  2020 /mnt/iso/EFI
     2112      2 drwxr-xr-x   2 root     root         2048 Apr  2  2020 /mnt/iso/EFI/BOOT
     2118    953 -rw-r--r--   1 root     root       975536 Apr  2  2020 /mnt/iso/EFI/BOOT/BOOTIA32.EFI
     2123   1183 -rw-r--r--   1 root     root      1210776 Apr  2  2020 /mnt/iso/EFI/BOOT/BOOTX64.EFI
     2127   1054 -rw-r--r--   1 root     root      1079296 Apr  2  2020 /mnt/iso/EFI/BOOT/grubia32.efi
     2131   1124 -rw-r--r--   1 root     root      1150976 Apr  2  2020 /mnt/iso/EFI/BOOT/grubx64.efi
     2136    907 -rw-r--r--   1 root     root       927824 Apr  2  2020 /mnt/iso/EFI/BOOT/mmia32.efi
     2140   1133 -rw-r--r--   1 root     root      1159560 Apr  2  2020 /mnt/iso/EFI/BOOT/mmx64.efi
     2176      2 drwxr-xr-x   3 root     root         2048 Apr  2  2020 /mnt/iso/boot
     2240      2 drwxr-xr-x   3 root     root         2048 Apr  2  2020 /mnt/iso/boot/EFI
     2304      2 drwxr-xr-x   2 root     root         2048 Apr  2  2020 /mnt/iso/boot/EFI/BOOT
     2310    953 -rw-r--r--   1 root     root       975536 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/BOOTIA32.EFI
     2315   1183 -rw-r--r--   1 root     root      1210776 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/BOOTX64.EFI
     2319   1054 -rw-r--r--   1 root     root      1079296 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/grubia32.efi
     2323   1124 -rw-r--r--   1 root     root      1150976 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/grubx64.efi
     2328    907 -rw-r--r--   1 root     root       927824 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/mmia32.efi
     2332   1133 -rw-r--r--   1 root     root      1159560 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/mmx64.efi
     2186   4266 -rw-r--r--   1 root     root      4367744 Apr  2  2020 /mnt/iso/boot/gentoo
     2190   6051 -rw-r--r--   1 root     root      6195288 Apr  2  2020 /mnt/iso/boot/gentoo.igz
     2194    138 -rw-r--r--   1 root     root       141083 Apr  2  2020 /mnt/iso/boot/gentoo-config
     2199   3446 -rw-r--r--   1 root     root      3527723 Apr  2  2020 /mnt/iso/boot/System-gentoo.map


The files under boot/EFI/ are the same as EFI/ (I think the dirs are hardlinked), but your *efi files should go under EFI/BOOT

Edit to add: Since you did a grub install pointing to the efi partition(2), did it put any files there, or did it put them in boot partition(1).
_________________
PRIME x570-pro, 3700x, 6.1 zen kernel
gcc 13, profile 17.0 (custom bare multilib), openrc, wayland
Back to top
View user's profile Send private message
nick_gentoo
Tux's lil' helper
Tux's lil' helper


Joined: 07 Jan 2019
Posts: 140

PostPosted: Sun Oct 11, 2020 3:48 pm    Post subject: Reply with quote

I admit that I dont't fully understand all the details, but: the original grub.cfg mentions hd2, while the bootable entries listed by efibootmgr contain hd1.
Maybe the grub config file needs to be re-generated?
Code:
grub-mkconfig -o /boot/grub/grub.cfg
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 4:15 pm    Post subject: Reply with quote

using efibootmgr to create an entry didn't worked, the entry boots the same.

what strikes me odd is that when in grub rescue, if I try to do ls (hd1,gpt#) where #:1->4, I get unknown fs for all partitions expect the last one which is detected as ext4.
I think the main issue is that (hd1,gpt2) is marked as unknown fs when mount and fdisk shows it as working efi/vfat partition.

maybe I need to recreate the efi partition?
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 4:24 pm    Post subject: Reply with quote

Anon-E-moose wrote:
I boot the admin cd occasionall, and it's set up like this

Code:
$ find /mnt/iso/EFI /mnt/iso/boot -ls
     2048      2 drwxr-xr-x   3 root     root         2048 Apr  2  2020 /mnt/iso/EFI
     2112      2 drwxr-xr-x   2 root     root         2048 Apr  2  2020 /mnt/iso/EFI/BOOT
     2118    953 -rw-r--r--   1 root     root       975536 Apr  2  2020 /mnt/iso/EFI/BOOT/BOOTIA32.EFI
     2123   1183 -rw-r--r--   1 root     root      1210776 Apr  2  2020 /mnt/iso/EFI/BOOT/BOOTX64.EFI
     2127   1054 -rw-r--r--   1 root     root      1079296 Apr  2  2020 /mnt/iso/EFI/BOOT/grubia32.efi
     2131   1124 -rw-r--r--   1 root     root      1150976 Apr  2  2020 /mnt/iso/EFI/BOOT/grubx64.efi
     2136    907 -rw-r--r--   1 root     root       927824 Apr  2  2020 /mnt/iso/EFI/BOOT/mmia32.efi
     2140   1133 -rw-r--r--   1 root     root      1159560 Apr  2  2020 /mnt/iso/EFI/BOOT/mmx64.efi
     2176      2 drwxr-xr-x   3 root     root         2048 Apr  2  2020 /mnt/iso/boot
     2240      2 drwxr-xr-x   3 root     root         2048 Apr  2  2020 /mnt/iso/boot/EFI
     2304      2 drwxr-xr-x   2 root     root         2048 Apr  2  2020 /mnt/iso/boot/EFI/BOOT
     2310    953 -rw-r--r--   1 root     root       975536 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/BOOTIA32.EFI
     2315   1183 -rw-r--r--   1 root     root      1210776 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/BOOTX64.EFI
     2319   1054 -rw-r--r--   1 root     root      1079296 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/grubia32.efi
     2323   1124 -rw-r--r--   1 root     root      1150976 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/grubx64.efi
     2328    907 -rw-r--r--   1 root     root       927824 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/mmia32.efi
     2332   1133 -rw-r--r--   1 root     root      1159560 Apr  2  2020 /mnt/iso/boot/EFI/BOOT/mmx64.efi
     2186   4266 -rw-r--r--   1 root     root      4367744 Apr  2  2020 /mnt/iso/boot/gentoo
     2190   6051 -rw-r--r--   1 root     root      6195288 Apr  2  2020 /mnt/iso/boot/gentoo.igz
     2194    138 -rw-r--r--   1 root     root       141083 Apr  2  2020 /mnt/iso/boot/gentoo-config
     2199   3446 -rw-r--r--   1 root     root      3527723 Apr  2  2020 /mnt/iso/boot/System-gentoo.map


The files under boot/EFI/ are the same as EFI/ (I think the dirs are hardlinked), but your *efi files should go under EFI/BOOT

Edit to add: Since you did a grub install pointing to the efi partition(2), did it put any files there, or did it put them in boot partition(1).


here is what I see from the system:
Code:

(chroot) livecd / # find /boot/ -ls
        1     16 drwxr-xr-x   4 root     root        16384 Jan  1  1970 /boot/
        8   5294 -rwxr-xr-x   1 root     root      5419904 Sep 11 20:50 /boot/kernel-5.4.60-gentoo
        9      2 drwxr-xr-x   5 root     root         2048 Oct 11 01:49 /boot/grub
       15     20 drwxr-xr-x   2 root     root        20480 Oct 11 19:57 /boot/grub/x86_64-efi
      290     24 -rwxr-xr-x   1 root     root        22936 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_whirlpool.mod
      291      6 -rwxr-xr-x   1 root     root         4616 Oct 11 19:57 /boot/grub/x86_64-efi/loadbios.mod
      292      6 -rwxr-xr-x   1 root     root         4336 Oct 11 19:57 /boot/grub/x86_64-efi/probe.mod
      293      4 -rwxr-xr-x   1 root     root         2744 Oct 11 19:57 /boot/grub/x86_64-efi/dm_nv.mod
      294     16 -rwxr-xr-x   1 root     root        14640 Oct 11 19:57 /boot/grub/x86_64-efi/serial.mod
      295      4 -rwxr-xr-x   1 root     root         2488 Oct 11 19:57 /boot/grub/x86_64-efi/part_plan.mod
      296      2 -rwxr-xr-x   1 root     root         1032 Oct 11 19:57 /boot/grub/x86_64-efi/setjmp.mod
      297     10 -rwxr-xr-x   1 root     root         8384 Oct 11 19:57 /boot/grub/x86_64-efi/setpci.mod
      298      6 -rwxr-xr-x   1 root     root         5616 Oct 11 19:57 /boot/grub/x86_64-efi/minix_be.mod
      299      4 -rwxr-xr-x   1 root     root         2280 Oct 11 19:57 /boot/grub/x86_64-efi/exfctest.mod
      300      4 -rwxr-xr-x   1 root     root         3008 Oct 11 19:57 /boot/grub/x86_64-efi/echo.mod
      301     10 -rwxr-xr-x   1 root     root         9360 Oct 11 19:57 /boot/grub/x86_64-efi/mmap.mod
      302     76 -rwxr-xr-x   1 root     root        76488 Oct 11 19:57 /boot/grub/x86_64-efi/net.mod
      303      4 -rwxr-xr-x   1 root     root         2864 Oct 11 19:57 /boot/grub/x86_64-efi/cmp.mod
      304      8 -rwxr-xr-x   1 root     root         7480 Oct 11 19:57 /boot/grub/x86_64-efi/test.mod
      305      6 -rwxr-xr-x   1 root     root         5304 Oct 11 19:57 /boot/grub/x86_64-efi/gptsync.mod
      306     12 -rwxr-xr-x   1 root     root        10352 Oct 11 19:57 /boot/grub/x86_64-efi/xfs.mod
      307     10 -rwxr-xr-x   1 root     root         8480 Oct 11 19:57 /boot/grub/x86_64-efi/zfscrypt.mod
      308      8 -rwxr-xr-x   1 root     root         8184 Oct 11 19:57 /boot/grub/x86_64-efi/div_test.mod
      309     18 -rwxr-xr-x   1 root     root        16640 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_serpent.mod
      310      8 -rwxr-xr-x   1 root     root         6968 Oct 11 19:57 /boot/grub/x86_64-efi/tga.mod
      311     26 -rwxr-xr-x   1 root     root        25688 Oct 11 19:57 /boot/grub/x86_64-efi/ehci.mod
      312      8 -rwxr-xr-x   1 root     root         7104 Oct 11 19:57 /boot/grub/x86_64-efi/lsacpi.mod
      313      6 -rwxr-xr-x   1 root     root         4688 Oct 11 19:57 /boot/grub/x86_64-efi/cmdline_cat_test.mod
      314      4 -rwxr-xr-x   1 root     root         3264 Oct 11 19:57 /boot/grub/x86_64-efi/sleep.mod
      315      4 -rwxr-xr-x   1 root     root         3320 Oct 11 19:57 /boot/grub/x86_64-efi/morse.mod
      316      4 -rwxr-xr-x   1 root     root         2168 Oct 11 19:57 /boot/grub/x86_64-efi/part_dvh.mod
      317      8 -rwxr-xr-x   1 root     root         7784 Oct 11 19:57 /boot/grub/x86_64-efi/gfxterm_menu.mod
      318     10 -rwxr-xr-x   1 root     root         8840 Oct 11 19:57 /boot/grub/x86_64-efi/video.mod
      319     10 -rwxr-xr-x   1 root     root         9488 Oct 11 19:57 /boot/grub/x86_64-efi/lvm.mod
      320      8 -rwxr-xr-x   1 root     root         6264 Oct 11 19:57 /boot/grub/x86_64-efi/elf.mod
      321      4 -rwxr-xr-x   1 root     root         3416 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_dsa.mod
      322      6 -rwxr-xr-x   1 root     root         5640 Oct 11 19:57 /boot/grub/x86_64-efi/minix2.mod
      323      8 -rwxr-xr-x   1 root     root         7336 Oct 11 19:57 /boot/grub/x86_64-efi/lzopio.mod
      324    174 -rwxr-xr-x   1 root     root       176976 Oct 11 19:57 /boot/grub/x86_64-efi/normal.mod
      325     26 -rwxr-xr-x   1 root     root        24872 Oct 11 19:57 /boot/grub/x86_64-efi/btrfs.mod
      326      6 -rwxr-xr-x   1 root     root         4504 Oct 11 19:57 /boot/grub/x86_64-efi/iorw.mod
      327      4 -rwxr-xr-x   1 root     root         2232 Oct 11 19:57 /boot/grub/x86_64-efi/part_sun.mod
      328      4 -rwxr-xr-x   1 root     root         3816 Oct 11 19:57 /boot/grub/x86_64-efi/testload.mod
      329      8 -rwxr-xr-x   1 root     root         6776 Oct 11 19:57 /boot/grub/x86_64-efi/at_keyboard.mod
      330     16 -rwxr-xr-x   1 root     root        15912 Oct 11 19:57 /boot/grub/x86_64-efi/legacy_password_test.mod
      331      6 -rwxr-xr-x   1 root     root         4512 Oct 11 19:57 /boot/grub/x86_64-efi/cbtime.mod
      332      4 -rwxr-xr-x   1 root     root         3928 Oct 11 19:57 /boot/grub/x86_64-efi/help.mod
      333      4 -rwxr-xr-x   1 root     root         3512 Oct 11 19:57 /boot/grub/x86_64-efi/configfile.mod
      334      2 -rwxr-xr-x   1 root     root         1480 Oct 11 19:57 /boot/grub/x86_64-efi/aout.mod
      335     12 -rwxr-xr-x   1 root     root        11928 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_crc.mod
      336     10 -rwxr-xr-x   1 root     root         9416 Oct 11 19:57 /boot/grub/x86_64-efi/bfs.mod
      337     16 -rwxr-xr-x   1 root     root        15648 Oct 11 19:57 /boot/grub/x86_64-efi/cryptodisk.mod
      338      8 -rwxr-xr-x   1 root     root         7328 Oct 11 19:57 /boot/grub/x86_64-efi/pata.mod
      339     10 -rwxr-xr-x   1 root     root         8480 Oct 11 19:57 /boot/grub/x86_64-efi/linux16.mod
      340      8 -rwxr-xr-x   1 root     root         7792 Oct 11 19:57 /boot/grub/x86_64-efi/ufs1.mod
      341      4 -rwxr-xr-x   1 root     root         2504 Oct 11 19:57 /boot/grub/x86_64-efi/backtrace.mod
      342     10 -rwxr-xr-x   1 root     root         9152 Oct 11 19:57 /boot/grub/x86_64-efi/loadenv.mod
      343     10 -rwxr-xr-x   1 root     root         8768 Oct 11 19:57 /boot/grub/x86_64-efi/http.mod
      344      4 -rwxr-xr-x   1 root     root         2928 Oct 11 19:57 /boot/grub/x86_64-efi/lsmmap.mod
      345      4 -rwxr-xr-x   1 root     root         2576 Oct 11 19:57 /boot/grub/x86_64-efi/cpuid.mod
      346     12 -rwxr-xr-x   1 root     root        11808 Oct 11 19:57 /boot/grub/x86_64-efi/gzio.mod
      347      4 -rwxr-xr-x   1 root     root         2488 Oct 11 19:57 /boot/grub/x86_64-efi/part_sunpc.mod
      348      6 -rwxr-xr-x   1 root     root         4184 Oct 11 19:57 /boot/grub/x86_64-efi/part_bsd.mod
      349      4 -rwxr-xr-x   1 root     root         4056 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_idea.mod
      350      4 -rwxr-xr-x   1 root     root         2792 Oct 11 19:57 /boot/grub/x86_64-efi/mdraid09.mod
      351      4 -rwxr-xr-x   1 root     root         3784 Oct 11 19:57 /boot/grub/x86_64-efi/usbserial_pl2303.mod
      352     20 -rwxr-xr-x   1 root     root        20472 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_rijndael.mod
      353      4 -rwxr-xr-x   1 root     root         3552 Oct 11 19:57 /boot/grub/x86_64-efi/pcidump.mod
      354     10 -rwxr-xr-x   1 root     root         9752 Oct 11 19:57 /boot/grub/x86_64-efi/f2fs.mod
      355      6 -rwxr-xr-x   1 root     root         4304 Oct 11 19:57 /boot/grub/x86_64-efi/hfspluscomp.mod
      356      6 -rwxr-xr-x   1 root     root         5456 Oct 11 19:57 /boot/grub/x86_64-efi/search.mod
      357      2 -rwxr-xr-x   1 root     root         1992 Oct 11 19:57 /boot/grub/x86_64-efi/raid5rec.mod
      358      4 -rwxr-xr-x   1 root     root         3216 Oct 11 19:57 /boot/grub/x86_64-efi/xnu_uuid_test.mod
      359     44 -rwxr-xr-x   1 root     root        43432 Oct 11 19:57 /boot/grub/x86_64-efi/mpi.mod
      360     20 -rwxr-xr-x   1 root     root        19744 Oct 11 19:57 /boot/grub/x86_64-efi/xzio.mod
      361      2 -rwxr-xr-x   1 root     root         1872 Oct 11 19:57 /boot/grub/x86_64-efi/datetime.mod
      362      6 -rwxr-xr-x   1 root     root         5352 Oct 11 19:57 /boot/grub/x86_64-efi/bitmap_scale.mod
      363      6 -rwxr-xr-x   1 root     root         5752 Oct 11 19:57 /boot/grub/x86_64-efi/romfs.mod
      364     10 -rwxr-xr-x   1 root     root         8416 Oct 11 19:57 /boot/grub/x86_64-efi/hashsum.mod
      365      4 -rwxr-xr-x   1 root     root         3776 Oct 11 19:57 /boot/grub/x86_64-efi/lssal.mod
      366      4 -rwxr-xr-x   1 root     root         3280 Oct 11 19:57 /boot/grub/x86_64-efi/strtoull_test.mod
      367      8 -rwxr-xr-x   1 root     root         7960 Oct 11 19:57 /boot/grub/x86_64-efi/affs.mod
      368      8 -rwxr-xr-x   1 root     root         7880 Oct 11 19:57 /boot/grub/x86_64-efi/ufs1_be.mod
      369      6 -rwxr-xr-x   1 root     root         4784 Oct 11 19:57 /boot/grub/x86_64-efi/search_label.mod
      370      4 -rwxr-xr-x   1 root     root         2624 Oct 11 19:57 /boot/grub/x86_64-efi/mdraid1x.mod
      371      4 -rwxr-xr-x   1 root     root         3008 Oct 11 19:57 /boot/grub/x86_64-efi/datehook.mod
      372     10 -rwxr-xr-x   1 root     root         8560 Oct 11 19:57 /boot/grub/x86_64-efi/gettext.mod
      373      8 -rwxr-xr-x   1 root     root         6568 Oct 11 19:57 /boot/grub/x86_64-efi/cmp_test.mod
      374      4 -rwxr-xr-x   1 root     root         3456 Oct 11 19:57 /boot/grub/x86_64-efi/testspeed.mod
      375      2 -rwxr-xr-x   1 root     root         1384 Oct 11 19:57 /boot/grub/x86_64-efi/div.mod
      376     10 -rwxr-xr-x   1 root     root         8640 Oct 11 19:57 /boot/grub/x86_64-efi/chain.mod
      377      8 -rwxr-xr-x   1 root     root         7888 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_rmd160.mod
      378     22 -rwxr-xr-x   1 root     root        20576 Oct 11 19:57 /boot/grub/x86_64-efi/multiboot.mod
      379      6 -rwxr-xr-x   1 root     root         5168 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_sha256.mod
      380     58 -rwxr-xr-x   1 root     root        57352 Oct 11 19:57 /boot/grub/x86_64-efi/zfs.mod
      381     20 -rwxr-xr-x   1 root     root        18864 Oct 11 19:57 /boot/grub/x86_64-efi/font.mod
      382     10 -rwxr-xr-x   1 root     root         8888 Oct 11 19:57 /boot/grub/x86_64-efi/ata.mod
      383      4 -rwxr-xr-x   1 root     root         3168 Oct 11 19:57 /boot/grub/x86_64-efi/shift_test.mod
      384      4 -rwxr-xr-x   1 root     root         2968 Oct 11 19:57 /boot/grub/x86_64-efi/rdmsr.mod
      385      6 -rwxr-xr-x   1 root     root         5624 Oct 11 19:57 /boot/grub/x86_64-efi/videotest.mod
      386      4 -rwxr-xr-x   1 root     root         3256 Oct 11 19:57 /boot/grub/x86_64-efi/xnu_uuid.mod
      387     10 -rwxr-xr-x   1 root     root         8336 Oct 11 19:57 /boot/grub/x86_64-efi/tftp.mod
      388     12 -rwxr-xr-x   1 root     root        12104 Oct 11 19:57 /boot/grub/x86_64-efi/udf.mod
      389      4 -rwxr-xr-x   1 root     root         3312 Oct 11 19:57 /boot/grub/x86_64-efi/bswap_test.mod
      390      4 -rwxr-xr-x   1 root     root         3768 Oct 11 19:57 /boot/grub/x86_64-efi/videotest_checksum.mod
      391      4 -rwxr-xr-x   1 root     root         3544 Oct 11 19:57 /boot/grub/x86_64-efi/verifiers.mod
      392      4 -rwxr-xr-x   1 root     root         3000 Oct 11 19:57 /boot/grub/x86_64-efi/fixvideo.mod
      393      4 -rwxr-xr-x   1 root     root         2200 Oct 11 19:57 /boot/grub/x86_64-efi/priority_queue.mod
      394      8 -rwxr-xr-x   1 root     root         7208 Oct 11 19:57 /boot/grub/x86_64-efi/nativedisk.mod
      395     10 -rwxr-xr-x   1 root     root         9600 Oct 11 19:57 /boot/grub/x86_64-efi/nilfs2.mod
      396     12 -rwxr-xr-x   1 root     root        10904 Oct 11 19:57 /boot/grub/x86_64-efi/hfsplus.mod
      397      4 -rwxr-xr-x   1 root     root         3664 Oct 11 19:57 /boot/grub/x86_64-efi/tr.mod
      398      6 -rwxr-xr-x   1 root     root         4328 Oct 11 19:57 /boot/grub/x86_64-efi/odc.mod
      399      8 -rwxr-xr-x   1 root     root         7080 Oct 11 19:57 /boot/grub/x86_64-efi/efi_uga.mod
      400      8 -rwxr-xr-x   1 root     root         7648 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_sha1.mod
      401      4 -rwxr-xr-x   1 root     root         3832 Oct 11 19:57 /boot/grub/x86_64-efi/cs5536.mod
      402      4 -rwxr-xr-x   1 root     root         2640 Oct 11 19:57 /boot/grub/x86_64-efi/part_dfly.mod
      403     10 -rwxr-xr-x   1 root     root         9048 Oct 11 19:57 /boot/grub/x86_64-efi/video_cirrus.mod
      404     10 -rwxr-xr-x   1 root     root        10016 Oct 11 19:57 /boot/grub/x86_64-efi/video_colors.mod
      405      4 -rwxr-xr-x   1 root     root         3424 Oct 11 19:57 /boot/grub/x86_64-efi/usbserial_ftdi.mod
      406     10 -rwxr-xr-x   1 root     root         8440 Oct 11 19:57 /boot/grub/x86_64-efi/video_bochs.mod
      407      6 -rwxr-xr-x   1 root     root         4168 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_md4.mod
      408      8 -rwxr-xr-x   1 root     root         6944 Oct 11 19:57 /boot/grub/x86_64-efi/efinet.mod
      409     28 -rwxr-xr-x   1 root     root        28048 Oct 11 19:57 /boot/grub/x86_64-efi/video_fb.mod
      410     10 -rwxr-xr-x   1 root     root         8616 Oct 11 19:57 /boot/grub/x86_64-efi/jfs.mod
      411      6 -rwxr-xr-x   1 root     root         4896 Oct 11 19:57 /boot/grub/x86_64-efi/macbless.mod
      412      4 -rwxr-xr-x   1 root     root         2344 Oct 11 19:57 /boot/grub/x86_64-efi/time.mod
      413      6 -rwxr-xr-x   1 root     root         4456 Oct 11 19:57 /boot/grub/x86_64-efi/gfxterm_background.mod
      414     58 -rwxr-xr-x   1 root     root        59024 Oct 11 19:57 /boot/grub/x86_64-efi/gfxmenu.mod
      415      6 -rwxr-xr-x   1 root     root         4416 Oct 11 19:57 /boot/grub/x86_64-efi/password_pbkdf2.mod
      416     76 -rwxr-xr-x   1 root     root        77496 Oct 11 19:57 /boot/grub/x86_64-efi/regexp.mod
      417      6 -rwxr-xr-x   1 root     root         5224 Oct 11 19:57 /boot/grub/x86_64-efi/lsefi.mod
      418      4 -rwxr-xr-x   1 root     root         3136 Oct 11 19:57 /boot/grub/x86_64-efi/bitmap.mod
      419      4 -rwxr-xr-x   1 root     root         2592 Oct 11 19:57 /boot/grub/x86_64-efi/part_amiga.mod
      420      4 -rwxr-xr-x   1 root     root         2456 Oct 11 19:57 /boot/grub/x86_64-efi/mul_test.mod
      421      2 -rwxr-xr-x   1 root     root         1968 Oct 11 19:57 /boot/grub/x86_64-efi/pbkdf2.mod
      422      8 -rwxr-xr-x   1 root     root         7824 Oct 11 19:57 /boot/grub/x86_64-efi/ufs2.mod
      423     10 -rwxr-xr-x   1 root     root        10016 Oct 11 19:57 /boot/grub/x86_64-efi/hfs.mod
      424      6 -rwxr-xr-x   1 root     root         4712 Oct 11 19:57 /boot/grub/x86_64-efi/search_fs_file.mod
      425     12 -rwxr-xr-x   1 root     root        10360 Oct 11 19:57 /boot/grub/x86_64-efi/png.mod
      426      4 -rwxr-xr-x   1 root     root         3248 Oct 11 19:57 /boot/grub/x86_64-efi/boot.mod
      427     18 -rwxr-xr-x   1 root     root        16832 Oct 11 19:57 /boot/grub/x86_64-efi/gfxterm.mod
      428      8 -rwxr-xr-x   1 root     root         8120 Oct 11 19:57 /boot/grub/x86_64-efi/fat.mod
      429      4 -rwxr-xr-x   1 root     root         2336 Oct 11 19:57 /boot/grub/x86_64-efi/usbserial_usbdebug.mod
      430      4 -rwxr-xr-x   1 root     root         3928 Oct 11 19:57 /boot/grub/x86_64-efi/cbmemc.mod
      431     10 -rwxr-xr-x   1 root     root         9936 Oct 11 19:57 /boot/grub/x86_64-efi/squash4.mod
      432      8 -rwxr-xr-x   1 root     root         6376 Oct 11 19:57 /boot/grub/x86_64-efi/keylayouts.mod
      433     10 -rwxr-xr-x   1 root     root         9344 Oct 11 19:57 /boot/grub/x86_64-efi/geli.mod
      434     20 -rwxr-xr-x   1 root     root        19264 Oct 11 19:57 /boot/grub/x86_64-efi/pgp.mod
      435     34 -rwxr-xr-x   1 root     root        33512 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_twofish.mod
      436     16 -rwxr-xr-x   1 root     root        15792 Oct 11 19:57 /boot/grub/x86_64-efi/ohci.mod
      437     12 -rwxr-xr-x   1 root     root        10720 Oct 11 19:57 /boot/grub/x86_64-efi/zfsinfo.mod
      438      4 -rwxr-xr-x   1 root     root         3048 Oct 11 19:57 /boot/grub/x86_64-efi/keystatus.mod
      439      6 -rwxr-xr-x   1 root     root         4560 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_md5.mod
      440     24 -rwxr-xr-x   1 root     root        22808 Oct 11 19:57 /boot/grub/x86_64-efi/ahci.mod
      441      6 -rwxr-xr-x   1 root     root         4416 Oct 11 19:57 /boot/grub/x86_64-efi/cat.mod
      442      4 -rwxr-xr-x   1 root     root         2976 Oct 11 19:57 /boot/grub/x86_64-efi/blocklist.mod
      443      4 -rwxr-xr-x   1 root     root         3248 Oct 11 19:57 /boot/grub/x86_64-efi/part_gpt.mod
      444      8 -rwxr-xr-x   1 root     root         6272 Oct 11 19:57 /boot/grub/x86_64-efi/tpm.mod
      445      8 -rwxr-xr-x   1 root     root         6392 Oct 11 19:57 /boot/grub/x86_64-efi/ls.mod
      446      6 -rwxr-xr-x   1 root     root         4520 Oct 11 19:57 /boot/grub/x86_64-efi/memrw.mod
      447      8 -rwxr-xr-x   1 root     root         8048 Oct 11 19:57 /boot/grub/x86_64-efi/ldm.mod
      448      8 -rwxr-xr-x   1 root     root         7600 Oct 11 19:57 /boot/grub/x86_64-efi/sfs.mod
      449      4 -rwxr-xr-x   1 root     root         2688 Oct 11 19:57 /boot/grub/x86_64-efi/ctz_test.mod
      450      6 -rwxr-xr-x   1 root     root         4448 Oct 11 19:57 /boot/grub/x86_64-efi/hexdump.mod
      451      6 -rwxr-xr-x   1 root     root         5704 Oct 11 19:57 /boot/grub/x86_64-efi/cbfs.mod
      452     26 -rwxr-xr-x   1 root     root        25952 Oct 11 19:57 /boot/grub/x86_64-efi/file.mod
      453     28 -rwxr-xr-x   1 root     root        28352 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_camellia.mod
      454     26 -rwxr-xr-x   1 root     root        26224 Oct 11 19:57 /boot/grub/x86_64-efi/relocator.mod
      455      6 -rwxr-xr-x   1 root     root         4200 Oct 11 19:57 /boot/grub/x86_64-efi/lsefisystab.mod
      456      6 -rwxr-xr-x   1 root     root         5648 Oct 11 19:57 /boot/grub/x86_64-efi/cbls.mod
      457      6 -rwxr-xr-x   1 root     root         5688 Oct 11 19:57 /boot/grub/x86_64-efi/ntfscomp.mod
      458      4 -rwxr-xr-x   1 root     root         2080 Oct 11 19:57 /boot/grub/x86_64-efi/trig.mod
      459      4 -rwxr-xr-x   1 root     root         3080 Oct 11 19:57 /boot/grub/x86_64-efi/disk.mod
      460      4 -rwxr-xr-x   1 root     root         2960 Oct 11 19:57 /boot/grub/x86_64-efi/part_apple.mod
      461      4 -rwxr-xr-x   1 root     root         2616 Oct 11 19:57 /boot/grub/x86_64-efi/setjmp_test.mod
      462      4 -rwxr-xr-x   1 root     root         4008 Oct 11 19:57 /boot/grub/x86_64-efi/play.mod
      463      8 -rwxr-xr-x   1 root     root         7192 Oct 11 19:57 /boot/grub/x86_64-efi/lspci.mod
      464      4 -rwxr-xr-x   1 root     root         2192 Oct 11 19:57 /boot/grub/x86_64-efi/eval.mod
      465      2 -rwxr-xr-x   1 root     root         2048 Oct 11 19:57 /boot/grub/x86_64-efi/test_blockarg.mod
      466     12 -rwxr-xr-x   1 root     root        10952 Oct 11 19:57 /boot/grub/x86_64-efi/usbms.mod
      467      6 -rwxr-xr-x   1 root     root         5720 Oct 11 19:57 /boot/grub/x86_64-efi/minix3.mod
      468      6 -rwxr-xr-x   1 root     root         4728 Oct 11 19:57 /boot/grub/x86_64-efi/loopback.mod
      469     12 -rwxr-xr-x   1 root     root        10368 Oct 11 19:57 /boot/grub/x86_64-efi/hdparm.mod
      470      4 -rwxr-xr-x   1 root     root         3144 Oct 11 19:57 /boot/grub/x86_64-efi/progress.mod
      471     24 -rwxr-xr-x   1 root     root        23728 Oct 11 19:57 /boot/grub/x86_64-efi/multiboot2.mod
      472     20 -rwxr-xr-x   1 root     root        20440 Oct 11 19:57 /boot/grub/x86_64-efi/terminfo.mod
      473      2 -rwxr-xr-x   1 root     root         1856 Oct 11 19:57 /boot/grub/x86_64-efi/hello.mod
      474      6 -rwxr-xr-x   1 root     root         5312 Oct 11 19:57 /boot/grub/x86_64-efi/videoinfo.mod
      475     12 -rwxr-xr-x   1 root     root        10768 Oct 11 19:57 /boot/grub/x86_64-efi/macho.mod
      476      4 -rwxr-xr-x   1 root     root         2888 Oct 11 19:57 /boot/grub/x86_64-efi/usbserial_common.mod
      477      2 -rwxr-xr-x   1 root     root          704 Oct 11 19:57 /boot/grub/x86_64-efi/all_video.mod
      478      6 -rwxr-xr-x   1 root     root         5520 Oct 11 19:57 /boot/grub/x86_64-efi/minix.mod
      479      4 -rwxr-xr-x   1 root     root         3208 Oct 11 19:57 /boot/grub/x86_64-efi/date.mod
      480      4 -rwxr-xr-x   1 root     root         3160 Oct 11 19:57 /boot/grub/x86_64-efi/memdisk.mod
      481      8 -rwxr-xr-x   1 root     root         6872 Oct 11 19:57 /boot/grub/x86_64-efi/crypto.mod
      482      8 -rwxr-xr-x   1 root     root         7032 Oct 11 19:57 /boot/grub/x86_64-efi/scsi.mod
      483     10 -rwxr-xr-x   1 root     root         8848 Oct 11 19:57 /boot/grub/x86_64-efi/ext2.mod
      484     78 -rwxr-xr-x   1 root     root        79704 Oct 11 19:57 /boot/grub/x86_64-efi/zstd.mod
      485     20 -rwxr-xr-x   1 root     root        18600 Oct 11 19:57 /boot/grub/x86_64-efi/linux.mod
      486      6 -rwxr-xr-x   1 root     root         4536 Oct 11 19:57 /boot/grub/x86_64-efi/archelp.mod
      487      4 -rwxr-xr-x   1 root     root         3336 Oct 11 19:57 /boot/grub/x86_64-efi/sleep_test.mod
      488     10 -rwxr-xr-x   1 root     root         9384 Oct 11 19:57 /boot/grub/x86_64-efi/jpeg.mod
      489      6 -rwxr-xr-x   1 root     root         5824 Oct 11 19:57 /boot/grub/x86_64-efi/minix3_be.mod
      490      6 -rwxr-xr-x   1 root     root         5712 Oct 11 19:57 /boot/grub/x86_64-efi/minix2_be.mod
      491     16 -rwxr-xr-x   1 root     root        14808 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_cast5.mod
      492      8 -rwxr-xr-x   1 root     root         8024 Oct 11 19:57 /boot/grub/x86_64-efi/exfat.mod
      493      4 -rwxr-xr-x   1 root     root         2232 Oct 11 19:57 /boot/grub/x86_64-efi/offsetio.mod
      494      6 -rwxr-xr-x   1 root     root         4824 Oct 11 19:57 /boot/grub/x86_64-efi/search_fs_uuid.mod
      495     10 -rwxr-xr-x   1 root     root         8200 Oct 11 19:57 /boot/grub/x86_64-efi/afs.mod
      496     16 -rwxr-xr-x   1 root     root        15424 Oct 11 19:57 /boot/grub/x86_64-efi/acpi.mod
      497      4 -rwxr-xr-x   1 root     root         2288 Oct 11 19:57 /boot/grub/x86_64-efi/wrmsr.mod
      498     14 -rwxr-xr-x   1 root     root        13336 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_seed.mod
      499     48 -rwxr-xr-x   1 root     root        48376 Oct 11 19:57 /boot/grub/x86_64-efi/bsd.mod
      500      2 -rwxr-xr-x   1 root     root         1592 Oct 11 19:57 /boot/grub/x86_64-efi/reboot.mod
      501     10 -rwxr-xr-x   1 root     root         9800 Oct 11 19:57 /boot/grub/x86_64-efi/luks.mod
      502      8 -rwxr-xr-x   1 root     root         6936 Oct 11 19:57 /boot/grub/x86_64-efi/extcmd.mod
      503      2 -rwxr-xr-x   1 root     root         1896 Oct 11 19:57 /boot/grub/x86_64-efi/adler32.mod
      504      6 -rwxr-xr-x   1 root     root         4920 Oct 11 19:57 /boot/grub/x86_64-efi/tar.mod
      505      4 -rwxr-xr-x   1 root     root         3712 Oct 11 19:57 /boot/grub/x86_64-efi/msdospart.mod
      506      4 -rwxr-xr-x   1 root     root         3296 Oct 11 19:57 /boot/grub/x86_64-efi/raid6rec.mod
      507      4 -rwxr-xr-x   1 root     root         3200 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_rfc2268.mod
      508      4 -rwxr-xr-x   1 root     root         2824 Oct 11 19:57 /boot/grub/x86_64-efi/mdraid09_be.mod
      509     14 -rwxr-xr-x   1 root     root        13112 Oct 11 19:57 /boot/grub/x86_64-efi/diskfilter.mod
      510      2 -rwxr-xr-x   1 root     root         1632 Oct 11 19:57 /boot/grub/x86_64-efi/cbtable.mod
      511     16 -rwxr-xr-x   1 root     root        15152 Oct 11 19:57 /boot/grub/x86_64-efi/ntfs.mod
      512      4 -rwxr-xr-x   1 root     root         3640 Oct 11 19:57 /boot/grub/x86_64-efi/lsefimmap.mod
      513      4 -rwxr-xr-x   1 root     root         2112 Oct 11 19:57 /boot/grub/x86_64-efi/efifwsetup.mod
      514     16 -rwxr-xr-x   1 root     root        15616 Oct 11 19:57 /boot/grub/x86_64-efi/usb.mod
      515     14 -rwxr-xr-x   1 root     root        13152 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_tiger.mod
      516      6 -rwxr-xr-x   1 root     root         4328 Oct 11 19:57 /boot/grub/x86_64-efi/cpio.mod
      517      8 -rwxr-xr-x   1 root     root         6760 Oct 11 19:57 /boot/grub/x86_64-efi/terminal.mod
      518      6 -rwxr-xr-x   1 root     root         4416 Oct 11 19:57 /boot/grub/x86_64-efi/fshelp.mod
      519      4 -rwxr-xr-x   1 root     root         3424 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_rsa.mod
      520     46 -rwxr-xr-x   1 root     root        46664 Oct 11 19:57 /boot/grub/x86_64-efi/functional_test.mod
      521      4 -rwxr-xr-x   1 root     root         3616 Oct 11 19:57 /boot/grub/x86_64-efi/random.mod
      522      2 -rwxr-xr-x   1 root     root         1864 Oct 11 19:57 /boot/grub/x86_64-efi/true.mod
      523      4 -rwxr-xr-x   1 root     root         2376 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_arcfour.mod
      524      6 -rwxr-xr-x   1 root     root         5976 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_sha512.mod
      525      8 -rwxr-xr-x   1 root     root         7480 Oct 11 19:57 /boot/grub/x86_64-efi/halt.mod
      526      4 -rwxr-xr-x   1 root     root         2944 Oct 11 19:57 /boot/grub/x86_64-efi/password.mod
      527      4 -rwxr-xr-x   1 root     root         3192 Oct 11 19:57 /boot/grub/x86_64-efi/spkmodem.mod
      528     18 -rwxr-xr-x   1 root     root        16424 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_des.mod
      529     10 -rwxr-xr-x   1 root     root         8768 Oct 11 19:57 /boot/grub/x86_64-efi/signature_test.mod
      530     14 -rwxr-xr-x   1 root     root        13840 Oct 11 19:57 /boot/grub/x86_64-efi/reiserfs.mod
      531      4 -rwxr-xr-x   1 root     root         3440 Oct 11 19:57 /boot/grub/x86_64-efi/pbkdf2_test.mod
      532      4 -rwxr-xr-x   1 root     root         2952 Oct 11 19:57 /boot/grub/x86_64-efi/part_msdos.mod
      533     10 -rwxr-xr-x   1 root     root         9200 Oct 11 19:57 /boot/grub/x86_64-efi/gcry_blowfish.mod
      534      4 -rwxr-xr-x   1 root     root         2264 Oct 11 19:57 /boot/grub/x86_64-efi/read.mod
      535      4 -rwxr-xr-x   1 root     root         2848 Oct 11 19:57 /boot/grub/x86_64-efi/bufio.mod
      536      6 -rwxr-xr-x   1 root     root         4528 Oct 11 19:57 /boot/grub/x86_64-efi/newc.mod
      537      8 -rwxr-xr-x   1 root     root         7208 Oct 11 19:57 /boot/grub/x86_64-efi/parttool.mod
      538      4 -rwxr-xr-x   1 root     root         2160 Oct 11 19:57 /boot/grub/x86_64-efi/crc64.mod
      539      4 -rwxr-xr-x   1 root     root         3536 Oct 11 19:57 /boot/grub/x86_64-efi/shim_lock.mod
      540     30 -rwxr-xr-x   1 root     root        29760 Oct 11 19:57 /boot/grub/x86_64-efi/syslinuxcfg.mod
      541      6 -rwxr-xr-x   1 root     root         5544 Oct 11 19:57 /boot/grub/x86_64-efi/usbtest.mod
      542     10 -rwxr-xr-x   1 root     root        10168 Oct 11 19:57 /boot/grub/x86_64-efi/uhci.mod
      543      6 -rwxr-xr-x   1 root     root         5176 Oct 11 19:57 /boot/grub/x86_64-efi/appleldr.mod
      544     12 -rwxr-xr-x   1 root     root        11936 Oct 11 19:57 /boot/grub/x86_64-efi/iso9660.mod
      545     44 -rwxr-xr-x   1 root     root        44952 Oct 11 19:57 /boot/grub/x86_64-efi/legacycfg.mod
      546      4 -rwxr-xr-x   1 root     root         3808 Oct 11 19:57 /boot/grub/x86_64-efi/procfs.mod
      547      4 -rwxr-xr-x   1 root     root         2312 Oct 11 19:57 /boot/grub/x86_64-efi/part_acorn.mod
      548      6 -rwxr-xr-x   1 root     root         4360 Oct 11 19:57 /boot/grub/x86_64-efi/cpio_be.mod
      549     42 -rwxr-xr-x   1 root     root        41848 Oct 11 19:57 /boot/grub/x86_64-efi/xnu.mod
      550      6 -rwxr-xr-x   1 root     root         5816 Oct 11 19:57 /boot/grub/x86_64-efi/usb_keyboard.mod
      551      6 -rwxr-xr-x   1 root     root         5664 Oct 11 19:57 /boot/grub/x86_64-efi/minicmd.mod
      552     14 -rwxr-xr-x   1 root     root        12496 Oct 11 19:57 /boot/grub/x86_64-efi/efi_gop.mod
      553      6 -rwxr-xr-x   1 root     root         5216 Oct 11 19:57 /boot/grub/x86_64-efi/moddep.lst
      554      4 -rwxr-xr-x   1 root     root         3606 Oct 11 19:57 /boot/grub/x86_64-efi/command.lst
      555      2 -rwxr-xr-x   1 root     root          219 Oct 11 19:57 /boot/grub/x86_64-efi/fs.lst
      556      2 -rwxr-xr-x   1 root     root          111 Oct 11 19:57 /boot/grub/x86_64-efi/partmap.lst
      557      2 -rwxr-xr-x   1 root     root           17 Oct 11 19:57 /boot/grub/x86_64-efi/parttool.lst
      558      2 -rwxr-xr-x   1 root     root           41 Oct 11 19:57 /boot/grub/x86_64-efi/video.lst
      559      2 -rwxr-xr-x   1 root     root          936 Oct 11 19:57 /boot/grub/x86_64-efi/crypto.lst
      560      2 -rwxr-xr-x   1 root     root          162 Oct 11 19:57 /boot/grub/x86_64-efi/terminal.lst
      561      4 -rwxr-xr-x   1 root     root         2501 Oct 11 19:57 /boot/grub/x86_64-efi/modinfo.sh
      562    124 -rwxr-xr-x   1 root     root       126976 Oct 11 19:57 /boot/grub/x86_64-efi/core.efi
      563    124 -rwxr-xr-x   1 root     root       126976 Oct 11 19:57 /boot/grub/x86_64-efi/grub.efi
      564      2 drwxr-xr-x   3 root     root         2048 Aug 22 16:27 /boot/grub/themes
      566      4 drwxr-xr-x   2 root     root         4096 Aug 22 16:27 /boot/grub/themes/starfield
      598      2 -rwxr-xr-x   1 root     root          198 Oct 11 19:57 /boot/grub/themes/starfield/boot_menu_se.png
      599      2 -rwxr-xr-x   1 root     root           97 Oct 11 19:57 /boot/grub/themes/starfield/terminal_box_w.png
      600      2 -rwxr-xr-x   1 root     root          193 Oct 11 19:57 /boot/grub/themes/starfield/boot_menu_ne.png
      601      2 -rwxr-xr-x   1 root     root          184 Oct 11 19:57 /boot/grub/themes/starfield/boot_menu_nw.png
      602      2 -rwxr-xr-x   1 root     root          101 Oct 11 19:57 /boot/grub/themes/starfield/terminal_box_s.png
      603      2 -rwxr-xr-x   1 root     root          102 Oct 11 19:57 /boot/grub/themes/starfield/boot_menu_s.png
      604    182 -rwxr-xr-x   1 root     root       185545 Oct 11 19:57 /boot/grub/themes/starfield/dejavu_14.pf2
      605      2 -rwxr-xr-x   1 root     root          196 Oct 11 19:57 /boot/grub/themes/starfield/boot_menu_sw.png
      606      2 -rwxr-xr-x   1 root     root          265 Oct 11 19:57 /boot/grub/themes/starfield/slider_n.png
      607     20 -rwxr-xr-x   1 root     root        19890 Oct 11 19:57 /boot/grub/themes/starfield/COPYING.CC-BY-SA-3.0
      608      2 -rwxr-xr-x   1 root     root          269 Oct 11 19:57 /boot/grub/themes/starfield/slider_s.png
      609      2 -rwxr-xr-x   1 root     root          103 Oct 11 19:57 /boot/grub/themes/starfield/boot_menu_n.png
      610      2 -rwxr-xr-x   1 root     root           94 Oct 11 19:57 /boot/grub/themes/starfield/terminal_box_e.png
      611      2 -rwxr-xr-x   1 root     root         1191 Oct 11 19:57 /boot/grub/themes/starfield/README
      612      2 -rwxr-xr-x   1 root     root          123 Oct 11 19:57 /boot/grub/themes/starfield/terminal_box_sw.png
      613    190 -rwxr-xr-x   1 root     root       193137 Oct 11 19:57 /boot/grub/themes/starfield/dejavu_bold_14.pf2
      614      4 -rwxr-xr-x   1 root     root         2249 Oct 11 19:57 /boot/grub/themes/starfield/theme.txt
      615    150 -rwxr-xr-x   1 root     root       153207 Oct 11 19:57 /boot/grub/themes/starfield/dejavu_10.pf2
      616    166 -rwxr-xr-x   1 root     root       169031 Oct 11 19:57 /boot/grub/themes/starfield/dejavu_12.pf2
      617      2 -rwxr-xr-x   1 root     root          197 Oct 11 19:57 /boot/grub/themes/starfield/slider_c.png
      618      2 -rwxr-xr-x   1 root     root          126 Oct 11 19:57 /boot/grub/themes/starfield/terminal_box_se.png
      619      2 -rwxr-xr-x   1 root     root          178 Oct 11 19:57 /boot/grub/themes/starfield/terminal_box_c.png
      620   1854 -rwxr-xr-x   1 root     root      1897028 Oct 11 19:57 /boot/grub/themes/starfield/starfield.png
      621      2 -rwxr-xr-x   1 root     root          210 Oct 11 19:57 /boot/grub/themes/starfield/terminal_box_nw.png
      622      2 -rwxr-xr-x   1 root     root          836 Oct 11 19:57 /boot/grub/themes/starfield/blob_w.png
      623      2 -rwxr-xr-x   1 root     root          193 Oct 11 19:57 /boot/grub/themes/starfield/boot_menu_e.png
      624      2 -rwxr-xr-x   1 root     root          194 Oct 11 19:57 /boot/grub/themes/starfield/terminal_box_n.png
      625    200 -rwxr-xr-x   1 root     root       204012 Oct 11 19:57 /boot/grub/themes/starfield/dejavu_16.pf2
      626      2 -rwxr-xr-x   1 root     root          128 Oct 11 19:57 /boot/grub/themes/starfield/terminal_box_ne.png
      627      2 -rwxr-xr-x   1 root     root           96 Oct 11 19:57 /boot/grub/themes/starfield/boot_menu_w.png
      628      2 -rwxr-xr-x   1 root     root          178 Oct 11 19:57 /boot/grub/themes/starfield/boot_menu_c.png
      629      2 drwxr-xr-x   2 root     root         2048 Aug 22 16:27 /boot/grub/fonts
      631   2340 -rwxr-xr-x   1 root     root      2394618 Oct 11 19:57 /boot/grub/fonts/unicode.pf2
      632      2 -rwxr-xr-x   1 root     root         1024 Aug 22 16:27 /boot/grub/grubenv
      633      8 -rwxr-xr-x   1 root     root         8113 Oct 11 01:48 /boot/grub/grub.cfg
      634      2 drwxr-xr-x   4 root     root         2048 Oct 11 19:57 /boot/EFI
      637      2 drwxr-xr-x   2 root     root         2048 Aug 22 16:27 /boot/EFI/gentoo
      639    124 -rwxr-xr-x   1 root     root       126976 Aug 22 16:27 /boot/EFI/gentoo/grubx64.efi
      640      2 drwxr-xr-x   2 root     root         2048 Oct 11 19:57 /boot/EFI/BOOT
      642    124 -rwxr-xr-x   1 root     root       126976 Oct 11 19:57 /boot/EFI/BOOT/BOOTX64.EFI
      643   5130 -rwxr-xr-x   1 root     root      5251968 Aug 23 03:09 /boot/kernel-5.4.48-gentoo
      644   5298 -rwxr-xr-x   1 root     root      5424000 Oct 10 22:29 /boot/kernel-5.4.66-gentoo

_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
Anon-E-moose
Watchman
Watchman


Joined: 23 May 2008
Posts: 6103
Location: Dallas area

PostPosted: Sun Oct 11, 2020 5:03 pm    Post subject: Reply with quote

I'm a little confused about what you're doing now ....

Have you booted ANYTHING (usb, hd, ssd, cdrom) on the new mb w/UEFI only?
_________________
PRIME x570-pro, 3700x, 6.1 zen kernel
gcc 13, profile 17.0 (custom bare multilib), openrc, wayland
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 5:49 pm    Post subject: Reply with quote

Anon-E-moose wrote:
I'm a little confused about what you're doing now ....

Have you booted ANYTHING (usb, hd, ssd, cdrom) on the new mb w/UEFI only?

as said above, I took the gentoo netinst, dded onto a usb and it booted in uefi mode
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
Anon-E-moose
Watchman
Watchman


Joined: 23 May 2008
Posts: 6103
Location: Dallas area

PostPosted: Sun Oct 11, 2020 5:58 pm    Post subject: Reply with quote

DaggyStyle wrote:
Anon-E-moose wrote:
I'm a little confused about what you're doing now ....

Have you booted ANYTHING (usb, hd, ssd, cdrom) on the new mb w/UEFI only?

as said above, I took the gentoo netinst, dded onto a usb and it booted in uefi mode


So just the HD not booting?
If you mount the second partition (efi partition), what does it have in it? (which files, if any)
_________________
PRIME x570-pro, 3700x, 6.1 zen kernel
gcc 13, profile 17.0 (custom bare multilib), openrc, wayland
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 6:02 pm    Post subject: Reply with quote

Anon-E-moose wrote:
DaggyStyle wrote:
Anon-E-moose wrote:
I'm a little confused about what you're doing now ....

Have you booted ANYTHING (usb, hd, ssd, cdrom) on the new mb w/UEFI only?

as said above, I took the gentoo netinst, dded onto a usb and it booted in uefi mode


So just the HD not booting?
If you mount the second partition (efi partition), what does it have in it? (which files, if any)

if I mount the boot partition from the ush which has the os I want to boot and list it, I get the output seen 4 post before this one
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
Anon-E-moose
Watchman
Watchman


Joined: 23 May 2008
Posts: 6103
Location: Dallas area

PostPosted: Sun Oct 11, 2020 6:13 pm    Post subject: Reply with quote

If you copy grubx64.efi to BOOT where BOOTX64.efi is what does it do?

Edit to add: OR don't copy grubx64.efi to BOOT and move the BOOT dir up one level (move it out from under EFI partition completely)
_________________
PRIME x570-pro, 3700x, 6.1 zen kernel
gcc 13, profile 17.0 (custom bare multilib), openrc, wayland
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 6:19 pm    Post subject: Reply with quote

Anon-E-moose wrote:
If you copy grubx64.efi to BOOT where BOOTX64.efi is what does it do?

Edit to add: OR don't copy grubx64.efi to BOOT and move the BOOT dir up one level (move it out from under EFI partition completely)


I've installed /boot/EFI/gentoo/grubx64.efi into /boot/EFI/BOOT/BOOTX64.EFI, got the same behavior
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
Anon-E-moose
Watchman
Watchman


Joined: 23 May 2008
Posts: 6103
Location: Dallas area

PostPosted: Sun Oct 11, 2020 8:12 pm    Post subject: Reply with quote

When you reload grub/efi, what are you executing the commands from, is the system you're using a booted efi
In other words, when you uefi boot the usb, are you doing the grub/efi reload from that?

Edit to add: does this do anything grub-install --target=x86_64-efi --efi-directory=/boot/efi
_________________
PRIME x570-pro, 3700x, 6.1 zen kernel
gcc 13, profile 17.0 (custom bare multilib), openrc, wayland
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 8:57 pm    Post subject: Reply with quote

Anon-E-moose wrote:
When you reload grub/efi, what are you executing the commands from, is the system you're using a booted efi
In other words, when you uefi boot the usb, are you doing the grub/efi reload from that?

Edit to add: does this do anything grub-install --target=x86_64-efi --efi-directory=/boot/efi


I don't follow, sorry
will try the last option
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sun Oct 11, 2020 9:10 pm    Post subject: Reply with quote

fook me, it worked!

Anon, thanks for the help an patience!
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
Anon-E-moose
Watchman
Watchman


Joined: 23 May 2008
Posts: 6103
Location: Dallas area

PostPosted: Sun Oct 11, 2020 9:25 pm    Post subject: Reply with quote

Glad it worked.
_________________
PRIME x570-pro, 3700x, 6.1 zen kernel
gcc 13, profile 17.0 (custom bare multilib), openrc, wayland
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum