mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-17 18:34:57 +02:00
NEW BOARD: Dell Precision T1650
Very nice ivybridge board that supports ECC RAM. NOTE: I couldn't get onboard graphics working yet, but this was confirmed working with a graphics card (in my case nvidia quadra k420) booted in text mode on the SeaBIOS payload. The GRUB payload also works, when loaded from SeaBIOS. Therefore, this is a SeaBIOS-only board (as far as first payload is concerned), but you can pick GRUB from the menu. You could make it "GRUB-only" in practise by setting SeaBIOS boot order to only load GRUB, and disable the SeaBIOS menu. We refer to this as "SeaGRUB". I've made lbmk use biosutilities and uefiextract, to get at the SMSC SCH5545 Environmental Control (EC) firmware. This firmware is needed for fan control. This is automatically downloaded and extracted, from Dell UEFI firmware updates. As with other blobs such as Intel ME, this firmware is then scrubbed by the release build scripts. The blobutil "inject" script can be used to re-insert it. Of note: there is no fixed offset, but no other blobs to be inserted in CBFS either, so the offset when re-inserting on release ROMs should still be the same, and thus the ROM checksums should match, when running blobutil inject. Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -94,6 +94,11 @@ pacman -S --needed --noconfirm libpciaccess pciutils zlib libftdi \
|
||||
|
||||
pacman -S --needed --noconfirm innoextract p7zip unar
|
||||
|
||||
# UEFIExtract
|
||||
# ------------
|
||||
|
||||
pacman -S --needed --noconfirm cmake
|
||||
|
||||
# U-Boot build dependencies
|
||||
# ------------------------------------------------------------
|
||||
pacman -S --needed --noconfirm swig dtc
|
||||
|
||||
@@ -127,6 +127,10 @@ apt-get -y install libpci-dev pciutils zlib1g-dev libftdi-dev \
|
||||
# For cross-compiling i686 target on x86_64 host.
|
||||
[ "${arch}" -eq 0 ] && apt-get -y install lib32z1-dev
|
||||
|
||||
# UEFIExtract
|
||||
# ------------
|
||||
|
||||
apt-get -y install cmake
|
||||
|
||||
# Blobs building dependencies (for me)
|
||||
# ------------------------------------------------------------
|
||||
|
||||
@@ -93,6 +93,11 @@ dnf -y install gcc
|
||||
|
||||
dnf -y install pciutils-devel zlib-devel libftdi-devel gcc libusb-devel
|
||||
|
||||
# UEFIExtract
|
||||
# ------------
|
||||
|
||||
dnf -y install cmake
|
||||
|
||||
# For extracting IntelME from lenovo updates (X230 etc)
|
||||
|
||||
dnf -y install innoextract p7zip p7zip-plugins unar
|
||||
|
||||
@@ -101,6 +101,11 @@ pacman -S --needed --noconfirm innoextract p7zip unar
|
||||
# ------------------------------------------------------------
|
||||
pacman -S --needed --noconfirm swig dtc
|
||||
|
||||
# UEFIExtract
|
||||
# ------------
|
||||
|
||||
pacman -S --needed --noconfirm cmake
|
||||
|
||||
# Unifont, for GRUB
|
||||
# ------------------------------------------------------------
|
||||
|
||||
|
||||
@@ -109,6 +109,10 @@ apt-get -y install libpci-dev pciutils zlib1g-dev libftdi-dev \
|
||||
# For cross-compiling i686 target on x86_64 host.
|
||||
[ "${arch}" -eq 0 ] && apt-get -y install lib32z1-dev
|
||||
|
||||
# UEFIExtract
|
||||
# ------------
|
||||
|
||||
apt-get -y install cmake
|
||||
|
||||
# Blobs building dependencies (for me)
|
||||
# ------------------------------------------------------------
|
||||
|
||||
@@ -85,6 +85,11 @@ xbps-install -y base-devel
|
||||
|
||||
xbps-install -y libpciaccess pciutils zlib libftdi1 base-devel libusb
|
||||
|
||||
# UEFIExtract
|
||||
# ------------
|
||||
|
||||
xbps-install -y cmake
|
||||
|
||||
# Management engine extraction dependencies
|
||||
# ------------------------------------------------------------
|
||||
|
||||
|
||||
Reference in New Issue
Block a user