Skip to main content

I couldn't find any specific coreboot instructions for the thinkpad t400. Then I got the idea to create a rom including the vga to be able to  boot windows or any linux or bsd.  I have also included the config file. It's all posted on my github.

https://github.com/m4rc0linux

Comments

Popular posts from this blog

Coreboot on x230 - How to change the Skulls bootspash image

I assume that skulls is already installed on your x230 and you are happy with it :) however you would like to change the bootsplash image.. It seems to be simple... however it can be "tricky".. or at least it was for me..  That's because the "usable" image created by the skulls script is the "top" one only. the coreboot instructions to flash with a layout file with didn't work for me 0x00000000:0x007fffff ifdmegbe 0x00800000:0x00bfffff bios I get this error: Proceeding anyway because user forced us to. Found chipset "Intel QM77". Enabling flash write... Warning: SPI Configuration Lockdown activated. Enabling hardware sequencing due to multiple flash chips detected. OK. Found Programmer flash chip "Opaque flash chip" (12288 kB, Programmer-specific) mapped at physical address 0x0000000000000000. Error: Image size (4194304 B) doesn't match the flash chip's size (12582912 B)! So I thought it could be a good idea to flash fro...

Coreboot with Seabios and VGA on ThinkPad T400

I have a beautiful t400 running libreboot and still working amazing, however... I needed to boot windows 10 on it ;( I come across some guides on internet to recompile coreboot for this or similar models however the instructions didn't work if you aim to run windows on it.  Obviously re-flashing the stock bios is not a "reasonable" option for me.. and I couldn't find any alternative "ready to go".. so I decided to recompile coreboot and making it capable to boot windows 10 on my t400. From this personal small "project" I got the benefit to be able to boot any other linux distro and any bsd (I have tried freebsd only so far) without any complicated settings to add on the grub configuration. Also, it doesn't include any Intel ME (the same as libreboot) which is a backdoor (https://www.theregister.com/2017/11/20/intel_flags_firmware_flaws/) and I feel like that coreboot and seabios are immune to the recent grub security issues (not sure if they ca...

Coreboot Skulls Seabios how to change the boot-menu-wait time

For the purpose of this guide I assume you have flashed already your Thinkpad x230 with Coreboot skulls. How you already know to do so you have flashed externally the top and (eventually) the botton rom separately using an external hardware and the skull scripts. To set a different duration of the boot menu, we need to edit the CBFS etc/ directory and set a different waiting time which the Seabios default is 2,5 seconds. To do so we need to retrieve the full image of your current bios (the 12mb skulls rom) and we can do reading the chip from internal. As usual when performing actions on the bios you need to have linux installed and to have booted your distro with iomem=relaxed option in your grub configuration and having flashrom installed. You can run  sudo flashrom -p internal:laptop=force_I_want_a_brick -r skulls.rom as you can see the -r option will read your bios..  wait until the process ends.. it will retrieve the current image of your bios (which we have named skulls.r...