Skip to main content
Topic: Issues with Libreboot (Read 1368 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

Issues with Libreboot

I have a Lenovo Thinkpad X200 shipped with Libreboot. After installing Artix Linux runit on it and rebooted the following message appears when booting to the OS:


Code: [Select]
Booting `Load Operating System (incl. fully encrypted disks) 

error: disk `ata0' not found.
error: disk `lvm/matrix-rootvol' not found.
error: disk `lvm/matrix-boot' not found.
error: no such partition.
error: disk `ata0,1' not found.
error: no such partition.
error: disk `ata0,2' not found.
error: no such partition.
error: disk `ata0,3' not found.
error: no such partition.
error: disk `ata0,4' not found.
error: disk `ata0,5' not found.
error: disk `ahci1,1' not found.
error: disk `ata1,1' not found.
error: disk `ahci1,2' not found.
error: disk `ata1,2' not found.
error: disk `ahci1,3' not found.
error: disk `ata1,3' not found.
error: disk `ahci1,4' not found.
error: disk `ata1,4' not found.
error: disk `ahci1,5' not found.
error: disk `ata1,5' not found. 
Press any key to continue...

Also when booting from USB i get the message

Code: [Select]
error: file '/boot/grub/i386-coreboot/font.mod' not found
before I get to the normal boot menu.


I've seen a thread on the problem on reddit and it is basically the same but with Parabola but as a complete newbie I have no clue what to do and therefore this guide didn't help.

I have set up my Artix according to the Artix Installation Guide with sda1 as BOOT, sda2 SWAP, sda3 root and sda4 home and I didn't use encryption

Thanks in advance your help would be greatly appreciated.

Re: Issues with Libreboot

Reply #1
Hi, honestly I am looking for a Libreboot machine too but I can't at the moment. Related about your problem I suggest you to boot the system manually. With the information you gave, which I assume you have a GPT partition, and the grub.cfg I have I guess you should follow these steps: 

1. Press "c" and then type.

Code: [Select]

grub> set root=(hda0,gpt1)
grub> linux /vmlinuz-linux root=/dev/sda3
grub> initrd  /initramfs-linux.img
grub> boot


2. Now you have booted the system manually you should read the steps given by Libreboot.

Artix Linux Colombia

Re: Issues with Libreboot

Reply #2
You just copied grub.cfg?  Without editing it for your computer?  or what you did? please more precise explain what you did and how you configured your system (MBR vs. GPT, etc.), thank you... ;)

Re: Issues with Libreboot

Reply #3
I successfully booted a new OpenRC installation today using libreboot.

First step was to build and update the ROM to the 20210522 release (for me, it was because I want to use Luks2 for security reasons). I’ll write up how I did this one day as well.

In libreboot grub menu, press ‘c’ to enter command line, then execute following commands (you could also use these to write a grub.cfg to add to the libreboot payload)

> cryptomount (ahci0,gpt1) ## or whatever your encrypted partition is

> insmod ext2
> insmod lvm
> set root=‘lvm/matrix-rootvol’ ## or whatever your root lvm volume is

> linux /boot/vmlinuz-linux cryptdevice=/dev/sda1:lvm ##higly recommend changing to UUID for permanent grub.cfg## loglevel=3 quiet resume=/dev/matrix/swapvol root=/dev/matrix/rootvol iomem=relaxed net.ifnames=0

> initrd /boot/initramfs-linux.img
> boot