coreboot
Fast, secure and flexible BIOS firmware
Fast, secure and flexible BIOS firmware
coreboot provides a fast, reliable, secure, and predictable boot-firmware solution for numerous modern and legacy chipsets. There are millions of devices running coreboot, including Google Chromebooks and Chromeboxes, and it runs in many datacenters. In 2021, coreboot.org had over 300 active developers, and over 6000 commits.
The coreboot project believes in the principles of Open Source software. It borrows many well known concepts from other Open Source projects: Kconfig, Linux kernel coding style, git repository, and Gerrit for code reviews.
coreboot has numerous advantages over other firmware projects. It comes with SoC support available to all developers. The codebase is shared with developers and companies which are helping to improve the SoC and driver-specific implementations.
** Extremely fast **
- coreboot is designed to do the minimum amount necessary and get out of the way.
- Desktop and Notebooks boot up in 400ms - 2.5s.
- Server boot time can be as low as a quarter of the OEM BIOS boot time.
** Flexible and customizable **
- Because coreboot only does hardware init, then jumps to a payload to continue, it is very flexible.
- GPLv2 licensed core. Payloads can be proprietary and we offer a BSD licensed support library. coreboot provides ready-to-build payloads like UEFI, SeaBIOS, U-Boot, Grub2 and many more.
- Recovery Mode based on multiple copies of the firmware which can be updated independently.
- Integrity of stages and binaries in coreboot can be easily verified.
- Designed for security by default.
- Uses a minimal trusted computing base for each platform which is easily auditable, helping to guarantee security. As coreboot is Open Source, anyone can check the codebase.
** Debugging **
- There are multiple ways to extract the boot log, from classic serial to EHCI debug, even over the pc-speaker.
- GDB Stub support via serial.
- In memory console log support.
- Tracing functions and other exotic features are supported.
Contributor Guidance
Projects
Contributor
Philipp Macher
Mentor
Martin Roth
Organization
coreboot
Updating old and supporting new compression algorithms
I plan to update the existing LZ4 and LZMA compressions algorithms and as well to add support for new algorithms to compress and decompress data on...