8 October 2024
Article published by: Leah Rowe
Date of publication: 8 October 2024
This is a testing release, whereas the current stable release on this day is Libreboot 20240612.
IMPORTANT ADVICE: PLEASE READ THESE INSTRUCTIONS BEFORE INSTALLING/UPDATING LIBREBOOT.
Libreboot is a free/open source BIOS/UEFI replacement on x86 and ARM, providing boot firmware that initialises the hardware in your computer, to then load an operating system (e.g. Linux/BSD). It is specifically a coreboot distribution, in the same way that Debian is a Linux distribution. It provides an automated build system to produce coreboot ROM images with a variety of payloads such as GNU GRUB or SeaBIOS, with regular well-tested releases to make coreboot as easy to use as possible for non-technical users. From a project management perspective, this works in exactly the same way as a Linux distro, providing a source-based package manager (called lbmk) which patches sources and compiles coreboot images. It makes use of coreboot for hardware initialisation, and then a payload such as SeaBIOS or GNU GRUB to boot your operating system; on ARM(chromebooks), we provide U-Boot (as a coreboot payload).
The changes of the recent 6th build system audit are included, in this release, and several changes have been made since then; for simplicity, this page is essentially identical to the audit 6 changelog, but with the additional changes referenced.
The focus of audit6 was to reduce the code size, making the build system more efficient. The build system was 1482 source lines (of shell scripting) in the Libreboot 20240612 release. In this release, that stands at 1159 lines, which is a 21 percent reduction. This is without reducing any functionality!
Several bug fixes were also made, in addition to new board support, since the Libreboot 20240612 release.
The most interesting changes are marked in bold. “Interesting” means that the change greatly improves the usefulness/reliability of Libreboot, or that it affects the user in a profound and noticeable way.
Changes are in order per category, from newest to oldest:
The following boards have been added since the Libreboot 20240612 release:
These are yet more Ivybridge (Intel 3rd gen) and Sandybridge (Intel 2nd gen) mainboards, using the same EC as on other Latitudes supported in Libreboot, so they are all internally flashable from the factory firmware.
Installation instructions, pertaining to Dell Latitude models, can be found on the Dell Latitude page.
This is not coreboot, but it is a fully free/opensource BIOS with source code under MIT license, provided by the PCSX-Redux project. Libreboot provides a pre-build of it. More information available on Libreboot’s installation page, linked above, which also references info from PCSX Redux.
You can use this on a real PlayStation. Although the machine was originally meant for playing proprietary games, there are free/opensource SDKs available for it, such as PSn00bSDK, and with certain other modifications, it basically becomes a very hackable classic 90s computer, that also happens to play games. More info is on the Libreboot page about it, linked above.
I’m currently working on a new fork of DuckStation, a popular PlayStation emulator that recently became proprietary software, where it was previously open source / free software. I’m forking the free version, but my fork is not ready to launch on this day; it was originally planned to launch at the same time as a Libreboot release, but I expect to have the new project ready by end of October 2024 or thereabouts. I’m planning to ship the PCSX-Redux BIOS by default, in the new project, which is why Libreboot has it, because I’ll reference Libreboot from that project.
Mate Kukri’s excellent deguard utility is automatically used at build time, to modify the ME, which has a bug on that platform allowing arbitrary execution. Using this bug, Mate was able to disable the Intel Boot Guard, on this 7th gen mainboard. Without such a hack, coreboot would have previously been impossible!
I’ve made some fixes on top of it myself: adding HDA verb configuration, and a VBT file. Mate will incorporate these changes in the patchset, which is still currently under review. The verb patch is required for the headphone jack to work, and Nicholas Chin helped me with it.
This is amazing work, based on years of research by others, that Mate was able to use, to so cleverly disable the Boot Guard and finally enable coreboot. He is also working on a ThinkPad T480 port, that is not yet ready on this day (the port is on Gerrit but lacks EC support at the moment).
It may be possible to add many more Dell OptiPlex and other 7th gen (Intel Kaby Lake) mainboards to coreboot, using this hack. The Boot Guard is Intel DRM that normally checks a cryptographic signature on the bootblock in the machine, and that bootblock cannot be changed. Various other hacks have also been discovered in the past, such as Trammell Hudson’s TOCTOU hack.
For my part, I’m currently currently looking at the Dell OptiPlex 5050 SFF and also an MT model, which are likely feasible to port, using deguard and basing upon this 3050micro port.
SeaBIOS currently hangs, so you can only use the GRUb payload for now. Also, boot times were considerably slow with DRAM clear on boot, so the DRAM clear on boot option has been disabled on this board. The TPM is also disabled, though you can enable it if you want to re-build. A lot more work will be done on this board, between now and the next stable release of Libreboot (today’s release is a testing release).
Because of the SeaBIOS issue, an exception is made: this board executes GRUB first, directly from coreboot. The usual policy, since Libreboot 20240612, is to prefer SeaGRUB (SeaBIOS first, and execute GRUB from SeaBIOS).
The changes are as follows:
vendor.sh
: When handling IFD images, on 7th gen IFD (Kaby Lake), we need to specify the following ifdtool
option: -p sklkbl
. This is done via the target.cfg
files, specifying a variable named IFD_platform
. This is used on Dell Optiplex 3050 Micro, which is required for making the ./mk inject
command work correctly (without it, checksum verification would not match what was built). This is because some IFD versions have certain quirks that ifdtool can’t automatically detect, so you have to give it hints such as this.vendor.sh
: Complementing the other deguard-related change below: lbmk was modified to make a temporary copy of deguard when building for 3050 Micro. This is because the deguard utility is standalone, and did not integrate directly with lbmk, but Mate is writing another replacement utility, so deep integration with lbmk would be a waste of time. What lbmk does therefore is only remove the download feature in deguard (it downloads a vendor update and extracts ME from that, then modified it, and lbmk runs me_cleaner
). The actual ME download is handled by lbmk, using its own logic (which also provides redundancy), and the modification itself, to disable Boot Guard, is handled by deguard.vendor.sh
: Integrate Mate Kukri’s deguard
utility. This is used to modify MEv11 images for systems that have Intel Boot Guard. A bug in MEv11, on earlier revisions, enables arbitrary code execution. Mate was able to exploit this bug, to disable the Intel Boot Guard, which is handled by the Intel ME. Currently used on the Dell OptiPlex 3050 Micro, but could be expanded to support more mainboards. (yes, you could have a libre ME firmware in the future, because of this bug! Though the Intel ME is still required, albeit it with this hack and lbmk also runs me_cleaner
)lib.sh
: New mk()
function can be used as shorthand within lbmk scripts, to build multiple projects, but does not build individual trees/targets within multi-tree projects. This is used to simplify certain parts of lbmk, such as the release build script when compiling multiple projects such as coreboot, serprog firmwares and PCSX-Redux Open BIOS../mk
, instead of ./update trees
. This means that the following command (for example) ./update trees -f coreboot
can now be shortened to ./mk -f coreboot
. The old commands still work for now, as a matter of backwards compatibility. However, the documentation has also been updated everywhere, referring to ./mk
exclusively, for all commands! In a future release, the old commands will no longer work (this will be done as part of the next major Libreboot Build System Audit, after Audit 6).XBMK_CACHE
. If unset, it defaults to $PWD/cache
, where PWD is the current location that the instance of lbmk is running from, otherwise if defined, the location is used. This means that the same cached files are re-used on the lbmk copy created when running ./update release
, thus saving on a lot of internet bandwidth if the main instance already has a lot of files cached - it also means that you can re-use another cache from elsewhere, like if you have multiple clones of lbmk on your system.CONFIG_PAYLOAD_NONE
exclusively. However, advanced users may wish to use something else such as Tianocore, which Libreboot may/will not provide (with Tianocore it’s will not). Simply set build_depend=""
in the target.cfg
file for a given mainboard, and then enable a payload under coreboot’s menuconfig interface, or by direct modification of the defconfig file. When CONFIG_PAYLOAD_NONE
is not set, lbmk will skip adding a payload, because it’s a given that then coreboot’s own build system would have done it. Libreboot will always enable CONFIG_PAYLOAD_NONE
on all official targets, so this feature is only intended for power users.script/trees
: Automatically re-download and re-build a given project, when configuration changes, on any file under specific directories in config/
pertaining to it; this is done by concatenating the sha512sum hashes for each of those files, and then making a sha512sum hash from that. The hash is stored, and compared to the current one; if it differs, then you know something changed. This feature does not track modifications to the actual downloaded source code for a given project, because this change also tracks the patches/
directories; direct modification (by the user) of the source is not assumed, under the lbmk model, but checking for this may be possible. For example, run the same concatenation logic on a file containing the output of commands such as git describe
and git status
, perhaps git diff
. It was decided that the latter would be undesirable, because developers (of Libreboot, working with lbmk) may want to experiment with quick changes, before preparing patch files to go under config/
. - the user previously had to know which files and directories to manually remove, when re-running build commands after modifying a given project within lbmk. Now it’s automatic.include/git.sh
: Don’t download multi-tree projects to src/project/project
, e.g. src/coreboot/coreboot
, when downloading the upstream repository, for later copying to the actual destination e.g. src/coreboot/default
- instead, use the same cached location as alluded to in the two changes below. This avoids needing to delet those directories, when preparing release archives.include/git.sh
: Complementing the change seen below, also cache files universally, for vendor files and for submodules files (e.g. crossgcc files). This avoids wasting bandwidth when building for multiple coreboot trees, in cases where multiple trees share the same URLs for crossgcc tarballs.include/git.sh
: Cache all git downloads, reset to HEAD
, before copying to the final location; this is also done on submodules. If a cached repository exists, run git pull
on it but without an exit under fault conditions; if a fault occurs, including when trying to reset on a copy of it, fall back to the old logic where the repository is downloaded (online) directly to the destination. This change results in substantially reduced internet bandwidth usage, especially when downloading submodules for multiple coreboot trees, in cases where those trees share common revisions.script/trees
: Support -d
(flag) for custom build logic; it does the same thing as -b
, but with a variable named dry
being set to :
; this is prefixed on most build-related commands, and can be further prefixed as desired, in mkhelper functions. The result is that you can do dry runs on a given build. This is used, to provide building of coreboot utilities and downloading of vendor files, without needing specific hacks to be hardcoded in script/trees
. The ./update trees -b coreboot TREE utils
command is no longer available; instead, do ./update trees -d coreboot TREE
; if the TREE argument is instead an actual mainboard target, it also does the vendor file download, if required. The ./vendor download
command is still available, and multiple board names can now be provided as argument, because for example, ./build roms x220_8mb x230_12mb
would run ./update trees -d coreboot x220_8mb x230_12mb
, and the trees script already supports running for multiple target names, within multi-tree projects. The result of -d
, combined with use of mkhelper functions, permits very flexible use of the trees
script, essentially allowing it to be extended on a plugin-type infrastructure, in any number of ways. The reason for implementing this is precisely so that project-specific hacks can be removed; the trees
script now contains much more generalised logic, and project-specific logic was moved to mkhelper functions.script/trees
: A premake
variable is supported in mkhelper.cfg
files, defining a function to be executed before running make
, on a given project.script/trees
: A postmake
variable is supported in mkhelper.cfg
and target.cfg
files, defining a function to be executed immediately after running make
, on a given project. This is used during coreboot builds, to add payloads on a given coreboot image. It can be used for any other purpose. More specifically: postmake
is executed after handling the defconfig file entirely, rather than just after running make
; the latter is handled by mkhelper
.script/trees
: Support build dependencies, complementing the existing fetch dependencies. The build_depend
variable can define which other sources need to be built, before building the current target. This is being used on coreboot targets, to manually and surgically specify which GRUB and SeaBIOS trees should be compiled, per coreboot target. A fallback declaration is specified in config/data/coreboot/mkhelper.cfg
, for cases where a target.cfg
file does not specify it. This change means that certain hardcoded build dependency logic was then removed, instead relying on this much more generalised build_depend
logic.script/trees
: Allow global configuration on multi-tree projects, via file config/data/PROJECT/mkhelper.cfg
, e.g. config/data/coreboot/mkhelper.cfg
. This is loaded before target.cfg
. That way, global configuration can be provided and then overridden.script/trees
: If a valid flag is passed, but without argument, a loop is now executed with that flag on every defined project, both single- and multi-tree. For example, if -f
is passed, it will download every project. If -b
is passed, it will build every project. When it passes over multi-tree projects, it operates on every tree within that project. This fact enabled other parts of the build system to be simplified; for example, the logic in mkrelease()
no longer needs to implement the same kind of loop, instead simply running ./update trees -f
to download every project and tree. Similar changes have been made, on that same basis.script/trees
: Support use of a variable named mkhelper
, first defined in project target.cfg
files. This variable defines the name of a function, to be called immediately after running make
for that project, under the run_make_command()
function. This was initially implemented, so that GRUB’s grub-mkstandalone
utility could be called from the trees
script, but in a way that doesn’t hardcode such execution. This is because part of the 6th audit’s main focus is to remove project-specific hacks, generalising a lot more logic. Prior to Audit 6, the trees
script contained a lot of hacks for specific projects, notably coreboot and GRUB, to compile them properly.script/trees
: Only permit one single-tree project to be built, where an argument is provided. This script previously supported building multiple single-tree projects, defined by argument, but it was quite error prone and there’s no clean way to otherwise do it. We don’t use the script this way, anywhere in lbmk, and users are advised the same.script/roms
: Only Support SeaBIOS and SeaGRUB, on x86 mainboards. SeaGRUB is a configuration whereby SeaBIOS starts first, but immediately tries to load GRUB from the flash. This complements the other change, listed below. We will no longer provide configurations where GRUB is the primary payload, precisely to mitigate the same issue as described below (lbmk issue 216). If GRUB is enabled, on a given mainboard, SeaBIOS-only setups are not provided; only SeaGRUB is provided. You can press ESC in the SeaGRUB menu, to access other boot methods besides GRUB from flash, so you can use it in the same way; additionally, you can remove the bootorder
file from CBFS if you wish, or change the bootorder file, in such a way that GRUB does not load first. For example, you might want a BSD installation, and BSD bootloaders should be loaded from SeaBIOS directly. This can be done as follows: cbfstool libreboot.rom remove -n bootorder
- then flash it. The SeaBIOS code is much smaller and more robust than GRUB, so it’s a safe choice of primary payload, and it’s extremely unlikely that SeaBIOS would ever break.script/roms
: Removed support for grubonly
SeaBIOS. This was a feature where SeaBIOS would try to load GRUB first (from CBFS), but also disable the SeaBIOS menu. We still provide SeaGRUB, but the SeaBIOS menu is always accessible now. This is to mitigate future issues similar to lbmk issue 216. The Libreboot 20240612 already removed actual configs using grubonly
, and we will no longer provide them in Libreboot, so this feature in lbmk became legacy cruft that can simply be removed. The idea is simple: safety first. This has implications for GRUB hardening; you can insert the correct bootorder file, to once again disable SeaBIOS, but you must first verify that GRUB is stable. The GRUB hardening guide already documents how to do this.script/roms
: Don’t insert timeout.cfg
. Instead, hardcode the GRUB timeout to a reasonable default (8 seconds). You can still insert your own timeout config as before, and GRUB will honour it.script/roms
: Insert the background image in GRUB’s memdisk, instead of coreboot’s CBFS. This reduces the amount of code, because we use it as an argument on the grub-mkstandalone
command, and it means that the GRUB images can be used standalone in other build systems. The image is very small, so it’s OK to do it this way.script/roms
: Removed extra checks on grub_scan_disk
, because we no longer allow it to be overridden, instead relying only on target.cfg
files, which are carefully crafted per board. This setting configures the order of which types of devices Libreboot’s grub.cfg
scans first, between device types: PCI-E/NVMe, SATA/AHCI and IDE/ATA. Mate Kukri added NVMe SSD support no GRUB, in the Libreboot 20240612 release.script/roms
: Removed dangerous -p
, -s
and -d
options. Due to lbmk issue 216 (GRUB memory issue) in Libreboot 20240504, several safety mitigations have been made, for anti-brick purposes. These options enabled use of a custom payload and keymap, which meant that users were able to more easily create a setup affected by 216. See: https://codeberg.org/libreboot/lbmk/issues/216 - this was fully mitigated, by virtue of configuration, but the issue itself is not yet fixed as of the day of today’s announcement, the one you’re reading now, so it’s still possible to create such a broken setup. Libreboot mitigates this fact, by avoiding such configurations.This pertains to anything under config/
, for any changes that are of note, but it does not pertain to revisions for specific projects, nor does it cover specific patches applied to projects; the latter will be covered in other sections of this release announcement.
The changes are as follows:
swig
to the Fedora dependencies.postmake
in config/data/coreboot/mkhelper.cfg
, defining a function that adds payloads to the coreboot image that was just built. This mkhelper config also integrates include/rom.sh
, containing these functions. This replicates the functionality originally provided by script/roms
.build_depend
on target.cfg
files for specific mainboards. This is used to manually specify which GRUB and SeaBIOS trees should be compiled, required when compiling for a specific target, for the next stage where a payload is added to the coreboot image, because lbmk does not use coreboot’s own payload logic, instead building and adding everything itself (the coreboot configs all enable CONFIG_PAYLOAD_NONE
). For cases where a target.cfg
file does not specify mkhelper
, a fallback default entry is dictated within config/data/coreboot/mkhelper.cfg
.xhci
module from grub.cfg
; the install_modules
variable now defines xhci
, instead of modules
defining it. This means that the xHCI module is no longer automatically loaded during GRUB machine initialisation, but it’s then loaded immediately when the GRUB shell starts, and the grub.cfg
file is first parsed, then executed. This mitigates a previous issue where booting into GRUB with a USB device connected sometimes made GRUB hang; this issue affected Libreboot 20240612, on Haswell thinkpads, and revised images (and a revised source tarball) was then issued for that release, containing the very fix described here.makeargs
in config/data/coreboot/mkhelper.cfg
. It was not practical to define this, and other settings, in each target.cfg
file due to how many targets there are, but the mkhelper feature makes this much easier. To mitigate the previous issue, the trees
script hardcoded coreboot makeargs in a special variable, cbmakeargs
; this variable has since been removed, because it’s no longer used.config/data/grub/mkhelper.cfg
, instead of repeating them in target.cfg
files for each GRUB tree. The mkhelper.cfg
feature was added, defined in the Features section above, which is loaded per-project on multi-tree projects, before each target file. It allows easier configuration tree-wide on multi-tree projects.The changes are as follows:
vendor.sh
: When determining vendor file paths based on the coreboot config, don’t load the full config. Instead, selectively grep and parse the file. Some variables in the coreboot config files use different notation than sh, which caused build errors in some cases. This change fixed a build error when compiling the target image for Dell Latitude E5520. This change applies to both inject
and download
commands.lib.sh
: the x_
wrapper now provides more verbose output indicating what command was being executed, when an error occurs. This is a wrapper function that used as shorthand for error management in lbmk. You prefix it to a command and lbmk returns if the command returns with non-zero status. This wrapper exists because not all parts of lbmk can feasible set -e
or -u
in sh. The lack of verbosity is considered to have been a bug, because it stifled any debugging effort when bugs occured in lbmk.ACCESSPERMS
, which is a define in BSD libc (also available in the GNU C Library) for use with chmod when setting 777 permission on files. The musl libc doesn’t have this, so the code was modified to explicitly define it in the same way, but only if not already defined. Useful for Alpine Linux users.mkcorebootbin
when using the -d
switch on the trees
script. Dry builds in lbmk intentionally avoid running things like make
, but still process configurations provided by lbmk. This is done, because individual projects can define their own helper functions. The variable $dry
is set to :
in lbmk, and can be prefixed to a command, essentially disabling it. This is set to :
only when doing a dry build. This is used for many things, such as vendor file downloads (you can use e.g. ./mk -d coreboot x220_8mb
and it’ll just build coreboot utils and download vendorfiles for the X220, but not actually build the coreboot image). This change enables you to use ./mk -d coreboot TARGET
instead of ./vendor download
(the latter will be removed in a future release).badhash
variable is initialised to “n” by default, instead of being empty. This is a preventative bugfix, to prevent the type of bug like described below from happening again.badhash
, which was set empty by default. The check for builds needing deletion was being done based on whether the badhash
variable was not set to “n”, which it wasn’t; it was empty! Therefore, the logic was changed such that the builds are deleted (and re-built) if the badhash
variable is positively set to “y”, instead of not “n”. This prevents the coreboot utilities (such as cbfstool) from being needlessly re-built every time when performing coreboot-related operations in lbmk.coreboot.rom
build to the lbmk tmpdir first, before operating on it. This is because the coreboot build system often cleans builds when you perform other operations. This prevents build errors in lbmk.script/trees
: Hardcode makeargs
for crossgcc specifically, by using another variable (within that script) called xgccargs
. This prevents the build threads being default (one thread), ensuring that we set it to the value as defined by XBMK_THREADS
. The bug was triggered when building the U-Boot images, because U-Boot does not specify CPUS=
on makeargs.include/git.sh
: Re-try git pull
three times, when updating the cache Git repository for a given project or submodule. This mitigates possible instability in the user’s internet connection, where it’s online but may otherwise experience jitter (the same issue could also occur on the internet connection hooking up whichever server lbmk is interacting with, such as the coreboot web server).script/trees
: Don’t continue, when no argument is given. main()
used to be the only funsction that runs, in this script, but now we source a config file afterward, and run the build after that. Whan a flag is provided without OPTARG, this means that we are continuing such action in error; in practise, it meant that nothing was done because the command was set by mkhelpercfg
and cmd
, which would be empty in this situation, but it might cause issues depending on the sh
implementation, so this fix is pre-emptive.include/
: Remove +x
permissions on these files, because they must never be executed directly; they are stubbed from build
and script/trees
. This is listed as a bug fix, because having executable permission on these files is a potential security issue, depending on how lbmk might be modified in the future, so it’s a pre-emptive fix.include/rom.sh
: Only build coreboot utilities before building coreboot itself. This prevents coreboot.rom
from being wiped out, when building it, due to idiosyncrasis in coreboot’s own build system. This is a pre-emptive fix, because the issue didn’t really cause actual trouble in practise, except under certain test conditions that are unlikely in real use.include/vendor.sh
: Properly quote the filename, in a check for ec.bin
, on the extract_kbc1126ec()
function - in practise, this caused no issue, so this is a pre-emptive bug fix, but quotes are now used to prevent globbing. Overlooked in a previous audit, where anti-globbing was actually a priority in that audit.include/vendor.sh
: Skip serprog targets, if defined, because these are not coreboot and they are built using separate logic, but they are placed in the same directory within release archives. This prevents an exit under fault conditions, instead causing a regular exit (zero status). This was never triggered during regular builds, because of other conditions checked throughout, but some users may run the inject
command, which this fix is for. The issue was previously fixed for download
, but overlooked for inject
.include/vendor.sh
: Don’t inject /dev/null
into an image. In some cases, a given board may define empty option ROMs which refer to /dev/null
. This is used during the coreboot build process, in cases where we want such images inserted, but not handled by vendor scripts. Specifically: PIKE2008 images were inserted empty, for KGPE-D16, by re-using the VGA ROM options in the coreboot build system. The vendor.sh
logic also uses that same config item, which was tripping up on these boards. Simply skip insertion (in vendor.sh
) file location is /dev/null
. This prevents errors during the build process, in some limited cases.include/lib.sh
: Much stricter checks in chkvars()
; the variable string may have been set, but otherwise empty. This function was only checking +x
via variable expansion, which only yields negative if the variable was never declared. The intention is to check both unitialised and empty strings, per variable. This is a pre-emptive bug fix, because this bug did not seemingly cause any issues in practise, but a bug is still a bug.include/vendor.sh
: Re-added the modify_gbe()
function, seldom used but nonetheless required; it’s called when the user specifies a MAC address, during vendorfile insertion on release images. Direct use of nvmutil
is still recommended, simply to gain an understanding of how it works; the MAC address feature in vendor.sh
simply runs nvmutil
.script/roms
: Made U-Boot be built before checking ubootelf
, instead of after. The check was flawed, because if U-Boot didn’t exist, but a given build would be vzerified by the first check, the check would still fail after build, because the check works by first checking the existence of a given U-Boot build file, deferring to another and then exiting if that doesn’t exist, with error status. This is a pre-emptive bug fix, because this bug wasn’t triggered in practise since actual targets already used the fallback build, not the first one. Therefore, this fix is pre-emptive for future U-Boot targets in lbmk.include/lib.sh
: Do not exceed 80 characters on the line that checks the versiondate
variable. Such excess is considered a bug.include/vendor.sh
: Rename variable release
to vrelease
. Also remove the inject_vendorfiles()
function and merge into vendor_download()
. The release
variable is included now in some target.cfg
files, so we want to avoid conflicting with it. This is a pre-emptive bug fix, because the bug described had not been triggered in practise, but was theoretically possible.script/trees
: Exit with error status if target.cfg
not provided, on multi-tree projejcts. It was already by design that this should occur, but we previously did not support target.cfg
files on single-tree projects. Single-tree target.cfg
support was later added, done by making target.cfg
optional there, but the change accidentally made it optional on multi-tree projects. In practise, all multi-tree projects included this file per target, so this is a pre-emptive bug fix on the theory that future maintainers might accidentally exclude target.cfg
on a given tree, within a multi-tree project.build
: Don’t delete TMPDIR
if it’s /tmp
. We set it to a subdirectory under /tmp
, and subsequent mktemp
calls create resources under it, but it’s possible in the future that this functionality might be broken; therefore, this is a pre-emptive bug fix, on the (correct) theory that code equals bugs, and that regressions can and will occur in the future. One could say that this is a safety feature; it could just as easily be listed on Feature changes. This is more strongly a pre-emptive bug fix, as opposed to an actual feature. Upon exit from the main parent instance of lbmk, TMPDIR
is deleted. It is set to a subdirectory of /tmp
, precisely so that we have a unified directory location for all temporary files, which then get deleted in bulk (upon exit).script/trees
: Explicitly err if OPTARG
is not set, for a given flag. We otherwise rely on -e
, but different sh
implementations may behave differently. Therefore, this is a emp-emptive bug fix, on the theory that execution may otherwise continue erroneously (depending on the implementation). NOTE: this is only listed for documentary reasons, but the script was later modified to allow a lack of argument, whereby the script would be re-called recursively on all projects with the exact same flag, while defining an argument throughout.script/trees
: Call err if multiple flags are provided. The script is only designed for one flag. Exit with error status if multiple flags are provided.script/trees
: Explicitly set mode
for flag -b
, rather than leaving it at the default state (empty). This is to mitigate the possibility (from later code changes) where other flags might set the string. We need the string to be empty, when the -b
flag is used; this is a pre-emptive bug fix, fixing a bug that doesn’t actually exist, but rather, preventing such a bug later on.include/lib.sh
: Make the presence of a projectname
file mandatory, with the project name inside. This prevents the theoretical issue where a project is nameless, because this file is used during the build process when naming release tarballs; theoreticaly, because in practise, lbmk would never remove this file, but the build system is designed to be as adaptable as possible.script/trees
: If the crossgcc build fails, run it again first, before returning with error status. If the second build passes, don’t yield an error. Sometimes the crossgcc build can fail for whatever reason, but a second run will succeed. This avoids having to re-run the rest of lbmk, just to re-run the crossgcc build. In most cases, the first attempt passes. Coreboot’s own buildgcc
script is quite complex, and error-prone.script/trees
: Don’t check if crossgcc is already built. The check was done based on whether the xgcc
directory exists, but coreboot’s build system may have exited with error status before, having not completed all builds. The result was that subsequent runs would result in a permanently broken crossgcc build, unless the user manually intervened. Instead, lbmk always runs the crossgcc build script from coreboot; coreboot itself has a much more thorough set of checks, skipping a given build that was already performed, but the check is a bit slower, adding a few additional seconds to the build time per target. The bug that this fixes was in fact triggered, during random testing, leading to the fix.include/lib.sh
: Fixed error when running ./build dependencies
. The e()
and setvars()
functions were declared after the dependencies function, but are now declared before. Also: after calling install_packages
, it was doing a return when it should have done an exit. All of this lead to certain temporary files being created; the context here was that the user would be running ./build dependencies
as root, which lead to some of those files being created as root, but lbmk exits with not-zero status when you run it as root, except when running the dependencies command. Therefore, this could create situations where the user can longer run lbmk without intervention such as changing permission on certain files. Avoid the issue entirely.Extensive code cleanup has been performed, as was one of the main focuses in this release (in addition to newer hardware support):
The changes are as follows:
util/autoport
, because the Haswell support that we merged for it is now included in upstream(coreboot), so it will be included in future coreboot revisions for lbmk.script/trees
: Move dependency building (based on build_depend
) to a new function, called from configure_project()
, instead of including the logic directly within the latter.script/trees
: Merge build_targets()
into handle_targets()
.script/trees
: Use :
as a prefix on certain build commands, when doing try runs (dry builds); the -d
flag was initially implemented with a lot of if/else chains, but :
does nothing in sh (that’s what it’s for, to do nothing), including if arguments are provided to it. This change enables much more granually disablement of certain commands, which would otherwise require many more if/else chains. This change reduced the amount of code.script/trees
: Remove all project-specific hacks. The coreboot-specific includes were moved to coreboot’s mkhelper.cfg
file. Serprog and coreboot images are handled by mkhelper functions now.include/rom.sh
: It also provides building of serprog images. The mkhelper configuration is provided for pico-serprog
and stm32-vserprog
. The old ./build roms serprog
commands still work, but you are now advised to run ./update trees -b stm32-vserprog
or ./update trees -b pico-serprog
, which will now result in the same builds being provided under bin/
.include/rom.sh
: New file, replacing script/roms
. It contains the same functions, more or less, for building coreboot images. The trees
script already produces coreboot images, and payloads were added by script/roms
; now, those same functions (for adding payloads) are stubbed via mkhelper configuration in config/data/coreboot/mkhelper.cfg
. The command ./update trees -b coreboot
(whether specifying additional targets, or specifying none and thus building all of them), now builds coreboot images with payloads inserted, and never leaves them on-disk without payloads; this removes an existing issue where the user might accidentally use the no-payload images, mitigated by provided a warning but still an issue regardless (for example, what if the user doesn’t understand English very well?). The old ./build roms
command is now deprecated, but still provided for backward compatibility, but you are now advised to run the trees command. The bin/
directory is still the place where coreboot images go, but they no longer appear(without payloads) under elf/
- only the bin/
images are provided.script/roms
: Removed unnecessary calls to ./update trees -b
for payloads, because coreboot targets now specify build_depend
which is used generically per tree, per multi-tree project, to provide such build dependencies.script/trees
: Rename function load_target_config()
to configure_project()
, because the function also now handles building to some extent (based on build_depend
), not just mere loading of config files.include/vendor.sh
: Removed mkdirs()
and merged its logic into the only calling function, fetch()
.include/git.sh
: Simplified git_am_patches()
by condensing several for
loops together, into a single for
loop performing each task.include/git.sh
and script/trees
: Tidy up the use of global variables. Some of them were only initialised in git.sh
but also used in the trees
script, which means they should be initialised in the trees
script.include/git.sh
: Simplified initialisation of loc
(single code line)script/trees
: Simplified distclean
directory check, by reducing the nesting of if/else statements.include/git.sh
: Condensed a few code lines in fetch_targets()
.include/git.sh
: Shorter git_prep
command in fetch_targets()
.script/trees
: Simplified multi-tree bare repository cloning. The git_prep
function already creates a given directory where source code goes, so we don’t need to handle it from the trees
script.script/trees
: Merged prepare_new_tree()
with fetch_targets()
.script/trees
: Simplified distclean
handling; condensed a few code lines.script/trees
: Further simplified copy_elf()
; condensed a few code lines.script/trees
: Added explicit return to the end of handle_defconfig()
.script/trees
: Renamed check_config()
to check_defconfig()
, for clarity.script/trees
: Removed variable config_name
, because it’s only used once, so its value was instead hardcoded, without declaring a variable.script/trees
: Renamed variable config
to defconfig
, for clarity.include/git.sh
: Removed redundant xtree
variable, already defined in trees
.script/trees
: Removed various comments that were redundant, because the code that they covered was already simple enough that what they did was obvious.script/trees
: Cleaned up handle_makefile()
a bit; condensed a few lines.script/trees
: Renamed load_project_config()
to load_target_config()
, for clarity.script/trees
: Download multi-tree bare repositories before given trees. When downloading multi-tree projects, revisions can be reset to HEAD
instead of the actual revision for a given target. This occurs when the bare repository (e.g. src/coreboot/coreboot
) does not exist and has to be fetched first. Bare repository downloading does not rely on target.cfg
, only pkg.cfg
, but uses the same variables, e.g. rev
. So: instead of using a separate variable name, do the bare repository download first. This means that the git.sh
logic can be much cleaner, in that it only copies the bare repository and then runs git_prep
. The bare repository is closed directly by calling the relevant function from trees
, which is therefore the same behaviour as when cloning single-tree projects.script/trees
: The _setcfgarg
variable was removed, in function load_project_config()
because it became disused and thus redundant.script/trees
: Unified multi-tree and single-tree configuration handling. The same functions that load configurations for single- and multi-tree have been merged with the one in git.sh
, and then that was moved back into the trees
script. Now git.sh
only handles the actual downloading and patching of sources, but not configuration of them; the latter is handled directly within the trees
script. The benefit of this change is that it generally allows far more flexibility; many functions that use such configuration logic can now be unified under this script, for instance using the mkhelper
feature mentioned elsewhere on this page - and that is precisely what was later done, in further changes that are detailed above.script/trees
: Unified handling of source downloads. Run it from function load_project_config()
. The logic used to be split, between single- and multi-tree projects, but now it is consistent throughout.include/git.sh
: Rename fetch_project_trees()
to fetch_targets()
.include/git.sh
: Rename fetch_project_repo()
to fetch_project()
.script/trees
: Add explicit return at the end of check_coreboot_utils()
.include/vendor.sh
: Remove unnecessary check; we don’t need to check whether the grub_install_modules
and grub_modules
variables are set, because they always are, and we may want to have a setup in the future where no such modules are defined anyway, for testing purposes. Remove this check entirely. This pertains to mkpayload_grub()
, which produces the grub.elf
payload builds.include/vendor.sh
: Remove unnecessary check; we don’t need to check the existence of the option ROM in extract_e6400vga()
, because a command comes right after it that copies it. If the file doesn’t exist, cp
will yield error status, causing the same kind of error returned from lbmk.include/vendor.sh
: Condensed inject()
a bit, by simplifying some of the if/else chains and especially the way in which they return.include/vendor.sh
: Simplified checks for E6400 VGA config; it was being done in a complicated for loop running eval
, but similar functionality is already implemented in chkvars()
, which is now used instead.include/vendor.sh
: Simplified the otherwise over-engineered path checks, when reading vendor paths from inside coreboot configuration files.include/vendor.sh
: Simplified handling of the kbc1126 utility in coreboot. We were checking whether the binary exists, but make
already does this. We still check whether the directory exists, because not all coreboot trees contain this utility; where they don’t, but it is needed, we can always add it with a patch, but this is currently not required.include/vendor.sh
: Simplified utils handling in bootstrap()
; a single for loop is now used, for all utilities, when running the trees
script.include/vendor.sh
: Simplified initialisatino of the _7ztest
variable; it is included now in the main call to setvars
, under global variables.include/vendor.sh
: Condensed a few code lines in detect_board()
.include/vendor.sh
: Condensed a few code lines in patch_rom()
.include/vendor.sh
: Add explicit return at the end of bootstrap()
.include/vendor.sh
: Renamed getcfg()
to readkconfig()
.include/vendor.sh
: Merged cfgutils()
into readcfg()
.include/vendor.sh
: Merged build_dependencies_inject()
into vendor_inject()
.include/vendor.sh
: Tidied up a few variable initialisations, and the handling of cbutils
(coreboot utilities) in this context.include/vendor.sh
: Clean up GbE region handling; there were actually two separate sets of logic for handling the MAC address. It was unified, so that only modify_gbe()
is used throughout.include/vendor.sh
: General code simplification. Many variables were declared separately, instead of being declared with setvars
, and a lot of for loops were condensed.include/vendor.sh
: Simplified the modify_gbe()
function. It was re-added, and the function was still using a much older coding style from before all the various lbmk audits. The function is now about half the size, while performing the same task.setvars
calls, condensing them them so that they used fewer code lines, while still observing the 80-character rule.script/roms
: Explicitly shift by 1 for all targets. The way this script worked, it would go through all arguments populating each one inside a single string containing them, shifting until no arguments were left. We want to make sure it is shiftedh by one, and make this intention clear.script/roms
: Add return value for the list
command, because we want a specific return value but return
passes the value of the previous return, if a given return
call does not specify an argument, and there’s no way to predict what the previous value would have been. However, this is not a bug fix, pre-emptive or otherwsise, because nothing actually using this command relied in any way on its return value.include/vendor.sh
: Remove unnecessary checks. The trees script already checks the existing of binaries and sources, so it didn’t need to be done here.include/vendor.sh
: Remove unnecessary coreboot tree check. We didn’t need to download a coreboot tree, because this script also handled coreboot utilities, which in turn would download the necessary coreboot tree in the same way.include/vendor.sh
: Remove unnecessary cbutils
variable check; the same check (of coreboot utilities) was already performed in script/trees
.include/vendor.sh
: Remove unnecessary check; mktemp
will never return empty output, and it was used just prior to an mkdir
command on that output, which would subsequently return an error if the argument is empty.include/vendor.sh
: Condensed a few code lines in check_board()
.include/vendor.sh
: Condensed some code lines handling variable initialisation.include/vendor.sh
: Remove unnecessary cbfstool
variable check; the same check is also performed in script/trees
.include/vendor.sh
: Simplified the cbfstoolref
variable check; condense a few code lines. This variable refers to cbfstool from coreboot 4.13, used for extraction of the refcode file on HP EliteBook 820 G2, at build time.include/lib.sh
: Tidy up err_()
; condense a few code lines.include/lib.sh
: Add explicit return to the end of chkvars()
.include/vendor.sh
: Unified reading of board configs. The inject
and download
functions had separate logic for this, which is now implemented in a single function throughout.include/vendor.sh
: Simplify variable check in getcfg()
; use chkvars()
to check the vcfg
and tree
variables (exit with error status if they were not initialised).include/vendor.sh
: Removed unnecessary cbdir
check. We don’t need to check it, because the trees
script already checks it._xm
in the build system, which was a variable containing a given prefix as set throughout, for each function. It was included in error messages, when returning from a function under fault conditions, but it was no longer used; a relic of lbmk from several audits ago.script/trees
: Simplify single- and multi-tree handling in main()
. Use shorthand notation on a single line, initialising it based on single-tree and then checking that the given project is multi-tree.script/trees
: Rename build_projects()
to build_project()
. The script used to support building multiple single-tree projects, but this behaviour was buggy and unused, so it was removed. Rename the function accordingly.script/trees
: Set btype
if target.cfg
doesn’t exist; set to auto
. The build system assumes multi-tree, if Kconfig files are used. Single-tree projects will not typically define btype
, so just default it to auto
.include/lib.sh
: Removed unused cbdir
variable.script/roms
: Don’t assign cbdir
, because it wasn’t even used here.script/trees
: Don’t hardcode skipping kconfig files based on whether the project is GRUB. Instead, define btype
in project target.cfg
files, and define this in GRUB. Some projects are multi-tree but do not use Kconfig files, and GRUB is one of them; we must avoid commands such as make menuconfig
, doing nothing and returning with zero status explicitly, otherwise it would yield an error, which is a problem if you ran the trees script with a flag but no argument (which, as documented elsewhere in this report, was later made to operate that flag on every project in succession).include/git.sh
: Don’t check that a given source directory exists, because the main trees
script already does this before running fetch commands, which are implemented in git.sh
.build
: Move git_err()
here, from include/lib.sh
, because it’s only used in the main build
script.include/lib.sh
: Simplify singletree()
; condense a few code lines.include/lib.sh
: Add an explicit return to the end of check_defconfig()
.include/lib.sh
: condense the e()
function a bit (was already done before, and done again).include/lib.sh
: Simplified TMPDIR
handling; remove the tmpdir
variable and use TMPDIR
directly. Use a new variable xbmk_parent
, which is set to y
only on the main instance; child instances of lbmk do not set it, signalling that TMPDIR
should not be removed upon exit (it should only be removed upon exit from the main parent instance of lbmk, not child instances executed by it).include/lib.sh
: Condense if/else logic in setcfg()
. Use shorthand notation instead, on conditional statements.include/lib.sh
: Condensed setvars()
a bit.include/lib.sh
: Simplified lock message, when a lock file exists while trying to run lbmk.include/lib.sh
: Simplified reading of version files. A single for loop now initialises all of these variables with a single eval
command inside.include/git.sh
, include/lib.sh
, script/roms
and script/trees
: Simplify use of environmental variables. The variables themselves were being copied to other variables, of lowercase naming, but this was unnecessary. The environmental variables are now used, directly, while being properly set per each running instance of lbmk.script/roms
: Remove the t
variable, which was used for temporary ROM images. The script now operates on images more directly, and this variable is no longer used (previously used for storing paths to temporary images).script/roms
: Simplified logic for checking U-Boot builds.script/roms
: Simplify initmode/displaymode loop, when building multiple coreboot images per target.script/roms
: Renamed a few functions and variables for code clarity.script/roms
: Build coreboot images earlier on in the process, to avoid duplicate work. It was built per coreboot configuration, but the logic builds all images per target, so it doesn’t make sense to run the build twice. The subsequent runs would just skip, because the images already existed.script/roms
: Generalised more logic, merging a lot of functions and reducing a lot of code repetition.include/lib.sh
: Remove badcmd()
, because it’s bloat. This function simply write “bad command”, followed by a call to the err function. Instead, simply call err with the same string, when required.include/lib.sh
, include/git.sh
and include/vendor.sh
, script/trees
and script/roms
: More unified handling of project configurations. Remove the function scan_config()
, which worked with a specially crafted format that we had for vendor files and project (source repo) configs. Instead, use flat config files. Individual target.cfg
files for coreboot now contain a vcfg
variable pointing to a directory, containing vendorfile config. This change resulted in a sloccount reduction of about 20, in the build system, and the new config handling is much more robust.script/trees
: More robust check for make fetch
, when handling source downloads. Don’t use shorthand form; instead, use if/else chains to determine whether to skip a target after download.include/vendor.sh
: Minor code cleanup (condense a few code lines).include/git.sh
: General code cleanup in fetch_submodules()
. Several code lines have been condensed.script/roms
: Merge mkserprog()
into main()
, because it was essentially performing the same functions, but for checking serprog targets. Unify the logic, for handling coreboot, stm32 serprog and rp2040 serprog targets.script/roms
: Reduced code indentation in build_grub_roms()
.script/roms
: Remove build_payloads()
and split it into smaller functions.script/roms
: Condense lines together that check for various payloads.script/roms
: Removed the mt86bin
variable, because it’s only used once. Instead, hardcode the path to memtest86plus when building it.script/roms
: Merge build_uboot_payload()
into build_payloads()
, because both functions are very simple and do essentially the same thing.script/roms
: Simplified check for u-boot payload; we only need to know whether it’s enabled, not whether it’s also disabled. If set to enable other than y
, set it to n
blindly.script/roms
: Simplify the check for serprog source directories. Instead of an if/else chain, re-use variables and use a single eval
command between the two types; serprog rp2040 and serprog stm32.script/roms
: Simplify the loop for building serprog images, by re-using variables more aggressively and removing the if/else chain for serprog type.script/roms
: Shorter variable names for serprog build logic.script/roms
: Simplified serprog image copy, by using a single eval
call referencing stm32src
or rp2040src
, thus unifying this logic between both types of serprog build.script/roms
: Rename picosrc
to rp2040src
; this is in preparation for the next change, mentioned above.script/roms
: Remove confirmation dialog at the end of a serprog build, because the message was overly pedantic and something the user already knows.script/roms
: Merge the serprog handling into a single helper function.script/roms
: Renamed the x
variable to it
in a for loop, to avoid possible conflict with another same-named variable elsewhere in this script.script/roms
: Don’t call x_
when using cproms()
, since it never returns with non-zero status anyway.script/roms
: Move the U-Boot images, instead of copying. This way, we don’t have to clean up the temporary file that was used for it.script/roms
: Allow flexible use of mv
or cp
in cproms()
.script/roms
, include/lib.sh
and script/trees
: Use a common string for setting elfdir
, which is where builds are copied to upon completion.script/roms
: Merge mkUbootRom()
into build_uboot_roms()
.script/roms
: Remove unused variables in mkSeabiosRom()
.script/roms
: Remove unused variables in mkUbootRom()
.script/roms
: Remove unnecessary variable assignment; cbcfg
was already properly initialised as a global variable, so this was re-used instead.script/roms
: Removed unnecessary check for payload_uboot
; the uboot_config
variable, if set, clearly indicates use of U-Boot.build
: Remove unused linkpath
and linkname
variables.script/roms
: Make tmpcfg
a variable, re-used elsewhere when a temporary file needs to be written. Simply overwrite the file as required, instead of always calling mktemp
.script/roms
: Simplified timeout/scandisk insertion. We don’t need to call mktemp
every time. Just use a static temporary file and keep overwriting it, when we need to make a new configuration file inside CBFS.script/roms
: Simplified SeaGRUB check in build_grub_roms()
; condensed a few code lines.script/roms
: Simplify mkserprog()
; condensed several code lines and removed unused variables!script/roms
: Simplify the Serprog build functions; condensed several code lines and removed unused variables.script/roms
: Simplify U-Boot payload check (same change as below).script/roms
: Simplify GRUB-only check on SeaGRUB (same change as below).script/roms
: Simplify SeaGRUB check in configure_target()
; condensed the if/else checks based on which payloads are configured.script/roms
: don’t use x_()
to call build_grub_roms()
, since that function never returns non-zero status anyway.script/trees
: Simplify copy_elf()
; condense the while
loop handling file copies, for copying builds to their destination paths once complete.script/trees
: Remove unnecessary check in copy_elf()
; we don’t need to check whether the listfile
string is empty, because a check comes after it as to whether the file it defines exists, and checking an empty string there will always yield a negative result, as intended.include/lib.sh
: Add generic cbfs()
function, which is now used throughout lbmk when adding files to CBFS on coreboot images. This simplifies handling of CBFS in lbmk.script/roms
: merged handling of build targets into the main script, simplifying the loop going through them all; each helper function returns with non-zero status if the build is to cease, and the target is skipped.script/roms
: Simplified handling of multiple coreboot build targets, when looping through them all during the build process.include/lib.sh
: added a unified function chkvars()
, now used for checking variable initialisation; if a variable is not initialised, it causes an exit with non-zero status.script/roms
: shorter variable names, condensed several functions.The default
tree was updated to commit ID 97bc693ab
from 29 July 2024. Several patches were merged upstream and therefore no longer needed in lbmk.
The dell
tree (containing Dell Latitude E6400) was merged into default
, with the DDR2-specific changes now only applying conditionally (RCOMP replay patch written by Angel Pons).
Nicholas Chin’s timing fix for LVDS displays (on Latitude E6400) was also moved to the default
tree, patching the libgfxinit submodule.
The haswell
tree (containing native raminit patches written by Angel Pons) has been rebased, and merged into the default
coreboot tree, within lbmk.
The fam15h_udimm
and fam15h_rdimm
trees have been consolidated into a single fam15h
tree. This contains the ASUS KGPE-D16 and KCMA-D8 ports, based on coreboot’s 4.11_branch
tree, with Libreboot’s special build fixes that make it compile on modern distros, such as Debian Sid or Arch Linux.
Alper Nebi Yasak is the maintainer of U-Boot, within Libreboot, and submitted a patch updating U-Boot to v2024.07, on the gru_bob
and gru_kevin
Chromebooks. Several improvements have been merged upstream, like Alper’s patches for Qemu, so these patches have been dropped in lbmk because they’re now included by default, in the new U-Boot revision.
Updated the revision to commit ID b53ec06a1 from 17 June 2024. This fixes several bugs in the LUKS implementation. Several virtual memory fixes, and numerous fixes to file system drivers in the GRUB kernel.
Updated the revision to commit ID ec0bc256
from 24 June 2024. This brings in only a single change:
commit ec0bc256ae0ea08a32d3e854e329cfbc141f07ad
Author: Gerd Hoffmann <kraxel@redhat.com>
Date: Mon Jun 24 10:44:09 2024 +0200
limit address space used for pci devices, part two
This fixes buggy handling for 32-bit (i686) hosts, when allocating memory for the PCI devices.
Updated the revision to commit ID 639d563
from 2 August 2024.
This was added git commit ID 6ec5348058413619b290b069adbdae68180ce8c0
. It is a Sony PlayStation emulator, but we only need one part of it: the BIOS.
PCSX Redux provides their own fully free/opensource BIOS for playstation, mentioned elsewhere on this page. Libreboot’s build system was modified to compile just the BIOS part of PCSX Redux. This is used then, to provide the open BIOS image, which is compatible with every PlayStation emulator and also real PlayStations (soldering required).
This git log covers all changes in this audit, relative to Libreboot 20240612.
* 6b40616a4 build: actually build pcsx-redux bios on release
* d845791d6 rom.sh: support making pcsx-redux bios release
* 09a8f2ea8 coreboot/dell3050micro: Add data.vbt file
* 217aa1735 Add verb patch for Dell OptiPlex 3050 Micro
* f4de640e4 rom.sh: disable seabios-as-primary if grub is main
* c99dced5b dell3050micro: make GRUB the primary payload
* ed8178e83 disable dram clear on dell 3050 micro
* d2939231a 3050micro: disable TPM to mitagate seabios hanging
* 809e1d97a fix 3050 config (./mk -u coreboot)
* 44473d683 git.sh: fix error with cache re-download
* c3ef0a863 Add config for Dell OptiPlex 3050 Micro
* 23e64192e Add Dell OptiPlex 7010/9010 SFF support
* 02e76d09c add swig to fedora dependencies
* a42fe72c9 Merge pull request 'config/coreboot: Add Dell Latitude E4300' (#236) from nic3-14159/lbmk:e4300 into master
|\
| * e0e9c6ab3 config/coreboot: Add Dell Latitude E4300
|/
* ff9c250a3 Add Sony PlayStation support to Libreboot
* 2b0fe39ac config/git: Import pcsx-redux
* c723ce56d coreboot/default: Import mkukri's 3050 micro port
* e7c0109f5 Add deguard logic for Dell OptiPlex 3050 Micro
* 0266a4891 Add Mate Kukri's deguard utility
* 242b79aa2 Revert "vendor.sh: print extract errors to /dev/null"
* 72fa467cb vendor.sh: print extract errors to /dev/null
* 66755f73c Merge pull request 'Add remaining SNB/IVB Latitude ports' (#217) from nic3-14159/lbmk:latitude-ports into master
|\
| * 4702e568c config/coreboot: Fix INTEL_GMA_VBT_FILE in Latitude configs
| * 73484d98a config/coreboot: Add config for Dell Latitude E6230
| * f51a9dee9 config/coreboot: Add config for Dell Latitude E6330
| * 0240be183 config/coreboot: Add config for Dell Latitude E6320
| * 875e9cb25 config/coreboot: Add config for Dell Latitude E6220
|/
* 3f9d575ce coreboot/x4x: fix build error
* 8ca56f96c coreboot/default: fix build issue with DDR2 fix
* 3ee4cc9dd fix typo in dell latitude coreboot coreboot config
* 7ab22503a vendor.sh: use readkconfig on inject too
* d66f6e0d5 vendor.sh: don't load entire coreboot configs
* aae8cabe7 lib.sh: more verbose error in x_
* 3a5a17937 flashprog: bump to 639d563 (2024-08-02)
* c3f6dd03c seabios/default: bump to ec0bc256 (2024-06-24)
* 5b353a229 grub/*: Bump to rev b53ec06a1 (2024-06-17)
* 80c3f9395 coreboot/fam15h: only use this, for amd boards
* 0f7c0aa1c coreboot/default: re-merge coreboot/i945
* 877f5d6ae coreboot/default: merge coreboot/haswell
* a15347ef1 coreboot/dell: merge into coreboot/default
* dbe24b039 coreboot/default: Update to 97bc693ab (2024-07-29)
* 1b55fc790 fix hp8200sff_4mb ifd file (pd region)
* 490a94d7b uefitool: Only define ACCESSPERMS on *nix
* a78eaac88 uefitool: Add patch working around musl libc issue
* 59894ed55 lib.sh: new function mk() to handle trees in bulk
* 7fa6052de general code cleanup in the build system
* 3bd290f6a rom.sh: don't dry-run mkcoreboottar
* a91751a86 rom.sh: don't run mkcorebootbin on trees -d
* 38b65af5b support ./mk in place of ./update trees
* f5ba40200 trees: initialise badhash no n, not empty string
* faefcdf3d rom.sh: fix buggy deletion of cbutils
* 40dd0a7cf rom.sh: also add grub to seabios images
* d070eb1fe rom.sh: copy tmprom to TMPDIR for modification
* f85cb69ce rom.sh: re-add seabios-only roms and grub keymaps
* 490e0186a emphasis on readme that lbmk isn't a coreboot fork
* ba4278e0c include/rom.sh: use ccache when building coreboot
* 31f1e4dad vendor.sh: don't use XBMK_CACHE for appdir
* 2b50b3ea9 put cachedir in environmental variable
* 0e0b12a63 git.sh: warn when a cached clone fails
* 9b1b95576 git.sh: fix typo in git command
* 82bdf2707 git.sh: fix lack of error exits on fault
* 64283a1fb build: remove tmp/ on release archives
* bf85246c4 trees: hardcode makeargs for xgcc
* c6e6d96ce allow using coreboot's build system to add payload
* 78cdc56ae trees: remove unnecessary command
* e69903789 build: remove cache/ on making releases
* 79f50b379 unify caching of files into cache/
* a9f9de885 unified cache file handling for vendorfile/subfile
* ef867eccc git.sh: remove previous tmprepo if args>5
* 4d5385a14 git.sh: try direct clone if cached git fails
* 0cd52fc7f git.sh: re-try git pull three times
* 0b9cd77fe trees: auto-delete+auto-rebuild if project changes
* 4438368c0 trees: also remove single-tree repo/p/
* 570e3abb2 trees: remove repo/p, not src/p/p
* 583502027 git.sh: don't download to src/project/project/
* 9f09728ac git.sh: cache git downloads to repo/
* f367afabc remove util/autoport
* 373c2eb23 trees: move dependency building to new function
* 12c3956f5 Merge pull request 'Update U-Boot to v2024.07' (#225) from alpernebbi/lbmk:uboot-v2024.07 into master
|\
| * 708fc14c6 u-boot: Fix display initialization on gru boards
| * 0cc7736b4 u-boot: Avoid breaking build for U-Boot-only binman images
| * 2ecec55af u-boot: Update to v2024.07
|/
* 090cf7ad5 trees: fix bad comparison in configure_project()
* e37779c11 trees: don't continue if no argument given
* 3263eeb6b trees: general code cleanup
* 17f3e61a0 trees: merge build_targets() with handle_targets()
* c0a4df688 trees: use wrapper for dry-running make commands
* 459db1cc2 trees: remove project-specific hacks
* e9f66ec4a remove executable permission on include/
* 91994b785 rom.sh: actually say if a cbutil exists
* 97b777715 rom.sh: avoid re-building cbutils if built
* 494b94799 rom.sh: only before cbutils before coreboot
* 469cc64f9 trees: fix bad comparison
* 5a1d2401c minor cleanup
* 964617214 trees: support -d (dry run) for custom build logic
* e850c06bd rom.sh: only make rom tarball if release=y
* 2f3cc5d37 rom.sh: new file, to replace script/roms
* 889afe168 roms: remove unnecessary trees checks
* c241a3ef4 coreboot: set build_depend on target.cfg files
* 6d4fb200a trees: rename load_target_config()
* 87df6ae36 trees: support build dependencies, not just fetch
* 23ca49bee GRUB: only load xhci from grub.cfg
* 065453b72 trees: just do makeargs on coreboot, not cbmakearg
* 2ab1d9949 trees: fix bad rm -Rf command (-Rf, not Rf)
* d6ff009e2 roms: fix bad comparison in configure_target()
* 3ee045f9a GRUB: use mkhelper.cfg for common variables
* 3ef84af9f trees: allow global config on multi-tree projects
* 2b49714a6 trees: handle all projects if project undefined
* b7f12ade0 vendor.sh: remove mkdirs()
* 0018600d6 git.sh: simpler for loop in git_am_patches()
* 5882056a2 git.sh: merge for loops in git_am_patches()
* 67421a21f trees and git.sh: tidy up global variables
* 55dbd72aa git.sh: simplified initialisation of "loc"
* 0cb84a8dd trees: simplified distclean directory check
* 5ba0433b5 git.sh: condense fetch_targets() a bit
* 4772186b1 git.sh: short git_prep command in fetch_targets()
* c62dbdbe8 trees: only do bare multi-tree clone on git
* 89a81a291 trees: simplified multi-tree bare repo clone
* 017fd8259 git.sh: merge prepare_new_tree with fetch_targets
* f937a1142 trees run_make_command: simpler distclean handling
* 88f741db9 trees: condense copy_elf() a bit
* d5928c9ba trees: add return to handle_defconfig()
* 1a7c8acb0 trees: rename check_config to check_defconfig
* ba7b3a3b2 trees: remove variable "config_name"
* 030f1afd8 trees: rename variable "config" to defconfig
* 739496061 git.sh: remove duplicate "xtree" variable
* 0c4ad24b0 trees: remove unnecessary commonts
* eacc41e82 trees: condense run_make_command() a bit
* 563948141 trees: condense handle_makefile() a bit
* 1ec9fc336 trees: mv load_project_config load_target_config
* 789631ccb trees, multi: download bare project *before* trees
* a5e724e51 trees: unified multi-tree configuration handling
* cfc9f62ff trees: unified handling of source downloads
* 7bf283520 git.sh: rename Fetch_project_trees fetch_targets
* e0c244f37 git.sh: rename fetch_project_repo to fetch_project
* 02f741795 trees: better skip-clean string in handle_src_tree
* f7ec42d37 trees: add return to check_coreboot_utils()
* 8d02adfbb trees: simplify "utilmode" variable initialisation
* d1b7882c5 vendor.sh readcfg: split the -b coreboot command
* fbe36b01a trees mkpayload_grub: remove unnecessary check
* 088a79918 vendor.sh: remove unnecessary check
* 8c5f78d3d vendor.sh: condense inject() a bit
* 42925ce79 vendor.sh extract_kbc1126: use quote on file check
* ddcc74777 vendor.sh extract_kbc1126ec: simplify build check
* 7a12cd770 vendor.sh: simplify e6400 vga rom file check
* 163bcfcdf vendor.sh: simplify variable checks for e6400vga
* cbac2087c vendor.sh: condense fetch() a bit more
* 675d2c037 vendor.sh: remove unnecessary check
* 5e46b9f43 vendor.sh: simplify kbc1126 util handling
* 7086b6868 vendor.sh: simplify bootstrap() utils handling
* 6a05487ef vendor.sh: simplified initialisation of _7ztest
* 972e61070 vendor.sh: condense detect_board() a bit
* bf5acedb1 vendor.sh: condense patch_rom() a bit
* 8b8cf070d vendor.sh: add return to end of bootstrap()
* d85b9de2d vendor.sh: rename getcfg() to readkconfig()
* 53b69f673 vendor.sh: merge cfgutils() into readcfg()
* 55677d821 vendor.sh: remove build_dependencies_inject()
* c76419861 vendor.sh: simplify initialisation of variables
* d63da943c vendor.sh inject: skip serprog targets
* c6df9666a vendor.sh: don't inject /dev/null
* f7ab70f60 vendor.sh: simplify inject()
* ee5bab2c9 vendor.sh: clean up GbE handling
* f2d53eb84 vendor.sh: condense fetch() a bit
* 85c2eb0f7 vendor.sh: general code cleanup
* a8f272536 lib.sh: stricter check in chkvars()
* fa5af956c vendor.sh: simplified modify_gbe handling
* 155ce49b1 vendor.sh: simplify modify_gbe()
* 08bce7ad3 vendor.sh: minor code cleanup
* 636b86237 vendor.sh: re-add modify_gbe()
* 2eb0163cc Revert "vendor.sh: remove unnecessary check"
* 3f37c3788 tidy up some setvars lists
* ed3cce84b roms: explicitly shift by 1 on the "all" target
* 359d00bd5 roms: add return value for the list command
* 3f540e756 roms: build u-boot *before* checking ubootelf
* afc003068 remove more unnecessary checks on trees commands
* 35c487106 vendor.sh: remove unnecessary checks
* ce03786f6 vendor.sh: remove unnecessary command
* e01b5c974 vendor.sh: remove unnecesessary cbutils check
* 8196ce6dd vendor.sh: remove unnecessary check
* 8f50131e1 vendor.sh: condense check_board() a bit
* d12a68601 vendor fetch(): condense variable initialisation
* 708e306e5 vendor.sh: remove unnecessary cbfstool check
* 75951c469 vendor.sh: simplified cbfstoolref check
* d36c07847 lib.sh: keep versiondate check to 80 characters
* 40d3bb19b lib.sh: condense for loop
* 5725e3c4e lib.sh: condense err_() a bit
* e3546f77b lib.sh: add a return to the end of chkvars()
* d0f68a0fb vendor.sh: rename release to vrelease
* 473f27784 vendor.sh: unified reading of board configs
* a2f4eba58 vendor.sh: simplify variable check in getcfg()
* 4afcbcb64 vendor.sh: remove unnecessary cbdir check
* fd037722a remove use of _xm variable in the build system
* 136787185 trees: don't hardcode use of mkpayload_grub
* c59fbb365 trees: simplify single/multi handling in main()
* 902b98d1a trees: rename build_projects to build_project
* e1e04aa80 trees: err if target.cfg not given if multi-tree
* 93ff80d96 trees: set btype if target.cfg doesn't exist
* 732c5908d lib.sh: remove unused cbdir variable
* 119cebc4d roms: remove unnecessary assignment to cbdir
* 7a15ba18c trees: avoid kconfig make commands generically
* eb9c1872b git.sh: remove unnecessary check
* 9aec992ff lib.sh: move git_err() to build
* 6fc7cd3c1 lib.sh: condense singletree() a bit
* 35d09e426 lib.sh: add a return to the end of check_defconfig
* 144b3c93a trees: condense elfcheck() a bit
* 7b8c2bd41 lib.sh: condense e() a bit
* ffdecb0ce trees: shorten the final confirmation message
* ed6acfee8 lib.sh: make elf/coreboot* a dot directory
* 44fb98736 build: don't rm TMPDIR if it's /tmp
* fac74cd60 lib.sh: simplified TMPDIR handling
* 671893a80 lib.sh: condense setcfg() if/else logic
* 19bc5845a trees: remove redundant space in printf
* 9154ba5b8 trees: explicitly err if OPTARG is not set
* f383b1ad7 trees: only permit one single-tree project
* a64e2db58 trees: call err if multiple flags are provided
* 0e97e98fe trees: explicitly set mode for -b
* 7f7b640d3 roms: re-add compression of coreboot images
* 1ab9189cb roms: build coreboot *after* checking variables
* 2b4c6ee5c lib.sh: introduce mandatory check of projectname
* c79fb125e lib.sh: condense setvars() a bit
* 1387dc0ae simplified lock message
* 20ac7ec67 lib.sh: simplify reading of version files
* 4e48fa808 lib.sh: simplify use of environment variables
* b4fb25100 roms main(): confirm what serprog images are built
* 5e2308ce0 roms: remove unused variable name
* 2960abd00 roms: remove redundant printf
* c661eca6b roms: optimise u-boot elf check
* 8af9f904c roms: simplify build_roms()
* c9f26dbc9 roms: make the bin/elf message more polite
* 9484eda5a roms: re-add final confirmation of targets
* 2b7df7ab2 roms: rename functions for extra clarity
* 6753222d0 roms: build coreboot early to avoid duplicate work
* 19e7c1eab trees: try xgcc build twice if first attempt fails
* 6468bdb3a trees: don't check if xgcc is already built
* d5baaff0e lib.sh: fix error running ./build dependencies
* 0158a0811 roms: general code cleanup
* e67cd1716 roms: only support SeaBIOS/SeaGRUB on x86
* 71137b12b roms: remove support for "grubonly" seabios
* d4d5d2902 use backticks on eval commands, not subshells
* c1527b611 lib.sh: remove badcmd()
* fc7ae3e59 lib.sh: more unified config handling
* ad1602569 trees: more robust check to avoid "make fetch"
* a6b1a6bdd roms: fix lack of backslash on multi-line command
* 8c4a91850 vendor.sh: more cleanup
* 471129684 Revert "roms: remove build_payloads() and split it up"
* 5a4fc97c6 vendor.sh: correction (s/scancfg/scan_config)
* d65e4fac1 git.sh: revert modification to for loop
* bc61c39ec vendor.sh: minor code cleanup
* 808458ced minor code cleanup in the build system
* 4ab99d546 git.sh: general code cleanup in fetch_submodule()
* cd1d84789 git.sh: reduced indentation on repo/file check
* 4f6dda136 git.sh: simplified repo/backup check
* 185d76f57 roms: merge mkserprog() into main()
* 893e88bc8 roms: don't insert timeout.cfg
* abfc799fd correction
* a0da8fdef roms: reduce indentation in build_grub_roms()
* 383433d4f roms: re-introduce accidentally disabled check
* 3610667e3 roms: remove build_payloads() and split it up
* 29a7123c0 roms: group some commands that are similar
* 2d6946775 roms: remove mt86bin variable
* 920e5ba2d roms: merge build_uboot_payload to build_payloads
* a96c4b59f roms: simplify payload_uboot y/n check
* 28682b1a4 roms: simplify the check for serprog srcdir
* b61dd4c25 roms: simplify the loop for building serprog roms
* 6df17860e roms: shorten variable serprog_boards_dir
* ea5b5b072 roms: simplified serprog image copy
* ea9bdfce4 roms: rename picosrc variable to rp2040src
* 1a4f97ffd roms: remove useless confirmation in mkserprogfw
* 1881d34db roms: merge serprog build into one function
* f7e28964a roms: remind the user about gkb files
* f928ac5c7 roms: rename x variable to it in for loop
* 58a451865 roms: don't use x_ to call cproms()
* bc853fbb8 roms build_uboot_roms(): move rom, don't copy
* 12b26f207 roms cproms(): allow other commands besides cp
* e67628c6a unify coreboot elfdir (DO_NOT_FLASH)
* 8b58c1eac roms: merge mkUbootRom() into build_uboot_roms()
* c3f0a109c roms: simplify mkSeabiosRom()
* c8944f1ca roms: simplify mkUbootRom()
* 92aa83a23 roms: simplify build_roms()
* d3e788645 roms: remove unnecessary check
* ef411c596 build: remove unused variables
* 6dc051558 roms: further clean up build_grub_roms()
* 0e9b36c58 roms: simplify timeout/scandisk insertion
* 3a7b3660f roms: simplify seagrub check in build_grub_roms
* 4b764d26f roms: simplify mkserprog()
* 167e7447a roms: simplify the serprog build functions
* 7bc9fcc34 script/roms: fix serprog build commands
* 0dfe3aed9 roms: simplified ubootelf check
* a9166898d roms: simplify grubonly check in configure_target
* 90017cdc5 roms: simplify seagrub check in configure_target
* 817004e15 roms: don't use x_ to call build_grub_roms
* 0812d5321 trees: simplify copy_elf()
* 331c4097f trees: remove unnecessary check in copy_elf
* 340eea0b1 grub: insert background in memdisk instead
* ed9c90e59 roms: unify all add-payload commands
* 26451775d roms: don't add grub keymaps at all
* af8296ce6 roms: merge handle_coreboot_target into main()
* d1c0c3464 roms: simplify target check (whether roms built)
* f626b25db roms: simplify main() again
* eb9a688ee roms: remove redundant check on grub_scan_disk
* a4328cb11 roms: remove dangerous runtime p/s/d options
* 167e1a0fb unified checks for variable initialisation
* 98724d701 lib.sh: remove the items() function
* baea03c67 roms: simplify main()
This is roughly 300 changes since the last release.
Markdown file for this page: https://libreboot.org/news/libreboot20241008.md
Subscribe to RSS for this site
This HTML page was generated by the Untitled Static Site Generator.