lbwww/site/docs/maintain/index.md

1020 lines
39 KiB
Markdown
Raw Normal View History

2022-01-03 22:29:31 +00:00
---
2022-11-13 21:12:15 +00:00
title: osbmk maintenance manual
2022-01-03 22:29:31 +00:00
x-toc-enable: true
...
2022-11-13 21:12:15 +00:00
Automated pragmatism
====================
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
This manual describes the nature of `osbmk` (OSBoot MaKe), the automated
build system used to produce osboot releases. It is intended as a reference
for *osboot development*.
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
If you simply wish to compile osboot from source, you should instead refer
2022-01-03 22:29:31 +00:00
to the [build instructions](../build/)
2022-11-13 21:12:15 +00:00
Generally speaking, *testing* releases of osboot will not come with
documentation; if you're later using *old* testing releases, it is prudent to
check the `osbwww.git` repository on a revision from around the same time as
those releases. Future stable releases of osboot will come with a snapshot of
the `osbwww.git` repository, for documentation pertaining to such releases. One
way to do this, all testing releases of osboot, will be to simply run `git log`
on the `news/` section of `osbwww.git` and find the revision that added
the *announcement* for a given release (when available), and then you can
2022-01-03 22:29:31 +00:00
just reset to that revision.
As such, you should always refer to the *live* version of this page, on
2022-11-13 21:12:15 +00:00
osboot.org, when working on the `osbmk.git` repository; the live version is
2022-01-03 22:29:31 +00:00
intended for development on the Git repository!
2022-11-13 21:12:15 +00:00
osboot blob reduction policy
============================
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
The coreboot software is nominally free, but it requires additional binary
blobs on many supported systems. These *blobs* lack source code, and the
coreboot project does not control them, but they can be used to perform
specific initialization tasks.
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
The osboot project *allows* binary blobs from coreboot, but there is *still* a
lot of nuance to precisely what is allowed. It is important that you understand
these nuances, when working on *osboot*.
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
[Please read the blob reduction guidelines](../../news/policy.md)
lbmk
====
Libreboot *bans* binary blobs outright, in its build system. This is in stark
contrast to osboot's more pragmatic policies.
Libreboot's own build system is named `lbmk`. The `osbmk` build system is a
direct fork of `lbmk`. For your reference:
* [Libreboot's lbmk maintenance manual](https://libreboot.org/docs/maintain/)
* [Libreboot's blob deletion policy](https://libreboot.org/news/policy.html)
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
These should have no bearing on osboot development, but you may wish to
educate yourself about the differences. Any changes that you submit to osboot
may in fact be used in Libreboot aswell, and vice versa, if those changes are
either not board-specific (such as build system changes), or they are changes
made to hardware supported by both osboot and libreboot.
The reason is simple: Libreboot and osboot both have the same fundamental
design in their build system. They differ in only very minor aspects, but the
core logic is identical. Documentation is also shared between both projects,
lead by Leah Rowe who founded *both* projects.
What is osbmk?
==============
In the same way that Trisquel and Debian are GNU+Linux distributions, OSboot
is a **coreboot distribution**. The `osbmk` build system *is* that distro,
2022-01-03 22:29:31 +00:00
providing the glue necessary to integrate coreboot plus anything else that's
needed, unifying everything in a completely automated and pre-configured
fashion, so as to provide a distribution that is ease to install and use by
non-technical users.
In the past, installation of coreboot **required** extensive amounts of
configuration by the user, because there was no automation available. It was a
2022-11-13 21:12:15 +00:00
problem, and one that `osbmk` has *solved*; it is a problem, because most users
simply want to *install* coreboot without giving it much thought. The `osbmk`
2022-01-03 22:29:31 +00:00
build system is written for *those* people, while also providing some
flexibility for those who do want to tinker and get their hands dirty.
2022-11-13 21:12:15 +00:00
The `osbmk` build system is designed to be simple. Each part of it is its own
2022-01-03 22:29:31 +00:00
separate program, which is to run independently. *Write one program that does
one thing well*.
2022-11-13 21:12:15 +00:00
Technically, `osbmk` isn't necessarily a build system, but rather, a handful of
2022-01-03 22:29:31 +00:00
small scripts that run other scripts, or even C programs if you wish. What
2022-11-13 21:12:15 +00:00
makes `osbmk` *be* `osbmk` is what each individual script does, and how scripts
2022-01-03 22:29:31 +00:00
interact with or call each other to produce working ROM images. It takes
a *light touch* approach, providing only the most minimal glue necessary to
build working ROM images that the user can install, with sane defaults, while
also providing some ability to customize the firmware, with documentation
describing how to do just that. User-friendly documentation is provided, with
simple installation steps, automating as much of it as possible.
*This* document is different. The document you're reading right now is written
2022-11-13 21:12:15 +00:00
for *technical* users who want to know how osboot is put together.
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
The osbmk design also helps to ease copyright licensing and compliance, because
each part of osbmk is literally its own separate program. With this design, it
2022-01-03 22:29:31 +00:00
means that most scripts do not directly link/embed/include each other. Because
of this, it's much easier to have different licenses in use for different
2022-11-13 21:12:15 +00:00
files. Generally speaking, osbmk is GNU GPLv3+, but it's perfectly OK, for
2022-01-03 22:29:31 +00:00
example, to add files that are GPLv2 or other licenses. By comparison, if you
were to have a C program under GPLv3, you could not \#include C libraries that
are GPLv2, at least not directly, or there would be many pitfalls to avoid at
2022-11-13 21:12:15 +00:00
the very least. With osbmk's design, you can think of it as like when you have
2022-01-03 22:29:31 +00:00
many programs running in your operating system, and not all of those programs
are under the same license, and most of those different licenses are not
compatible with each other; this is perfectly OK there, and it's OK here too.
The purpose of this document is to (hopefully) cause you to understand the
2022-11-13 21:12:15 +00:00
entire build system in osboot, so that you can contribute patches or
2022-01-03 22:29:31 +00:00
otherwise make whatever changes you like. As such, this is a reference guide
2022-11-13 21:12:15 +00:00
for osboot development.
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
OSboot is a *coreboot distro*, focusing on integration. As such, direct
2022-01-03 22:29:31 +00:00
development on software such as coreboot, GNU GRUB, SeaBIOS etc should ideally
2022-11-13 21:12:15 +00:00
be done upstream, or if it's a project hosted by osboot (such as ich9utils)
2022-01-03 22:29:31 +00:00
developed in the corresponding separate repository.
This document is written for developers and power users alike, or otherwise for
2022-11-13 21:12:15 +00:00
anyone who is curious enough to learn more about what *makes* osboot!
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
A major planned addition to osbmk in the future is: use it to implement a small
2022-01-03 22:29:31 +00:00
busybox+linux distribution, with musl libc, plus u-root, and implement a
2022-11-13 21:12:15 +00:00
linux-based bootloader setup similar to Heads, but do it *osbmk-style*. The
osbmk build system is designed for absolute simplicity and modularity, making
2022-01-03 22:29:31 +00:00
it easy to understand and maintain. It intentionally avoids use of rather
2022-11-13 21:12:15 +00:00
complicated programs such as GNU Autoconf; the Makefile in osbmk is just bolted
on but it not required. The `osbmk` build system is a *non-design*; it evolved
2022-01-03 22:29:31 +00:00
over time, into what it is today. Its modularity and simplicity of non-design
allows you to easily rewrite large parts of it, whenever you want to do so.
2022-11-13 21:12:15 +00:00
osbmk is largely written in GNU BASH, and this is unlikely to change in the
future. However, osbmk integrates several projects such as coreboot, GNU GRUB
or SeaBIOS, and these all have *their* own build systems aswell. The `osbmk`
2022-01-03 22:29:31 +00:00
build system is the glue that puts all of these together to produce ROM images
2022-11-13 21:12:15 +00:00
for users, in a completely automated fashion. The purpose of `osbmk` is to
2022-01-03 22:29:31 +00:00
provide an *unattended* build process, with as little user interaction as
2022-11-13 21:12:15 +00:00
possible. Thus, `osbmk` is an *automated build system*. It says on the osboot
home page that osboot is a *coreboot distribution* in much the same way that
Trisquel is a *GNU+Linux distribution*, and `osbmk` is what implements that!
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
Continue reading, and you will learn of each file contained in `osbmk`. This
document largely pertains to the version of `osbmk` as hosted in `osbmk.git`,
but this manual also covers source code archives containing the full downloaded
2022-01-03 22:29:31 +00:00
set of modules such as coreboot and GRUB.
2022-11-13 21:12:15 +00:00
In general, it is advisable to open *every* file in osbmk, after you downloaded
2022-01-03 22:29:31 +00:00
it (from the Git repository), and study the logic in great detail. This manual
attempts to explain all of it, and provide a general idea, but nothing beats
simply *studying* the logic directly.
AUTOMATED automation
====================
2022-11-13 21:12:15 +00:00
Every part of osbmk checks if the prerequisite steps are done, and does them
2022-01-03 22:29:31 +00:00
automatically if not. The `roms_helper` script is no different; for example, it
automatically downloads coreboot if not present, aswell as GRUB and everything
2022-11-13 21:12:15 +00:00
else. You can run each and every part of osbmk without having to worry about
2022-01-03 22:29:31 +00:00
running something before it, because it is handled automatically; if that is
ever not the case, it's a bug that should be fixed immediately (in Libreboot
20160907, such fine tuned automation did not exist and you did have to run
specific parts of the build system manually, in a precise order, but this is
2022-11-13 21:12:15 +00:00
no longer the case in modern `lbmk` or `osbmk`).
2022-01-03 22:29:31 +00:00
Another example: if you run `./build payload grub` but `./build module grub` is
not completed, it will automatically run that first, to produce
the `grub-mkstandalone` binary which is then used by `./build payload grub`
Another example: if you run `./build boot roms` and crossgcc isn't yet built
for the revision used on each given board, it will automatically compile that
version of it, using *that* coreboot tree's own build system to do it.
2022-11-13 21:12:15 +00:00
This level of automation means that modern `lbmk` and `osbmk` are both much
easier to use, compared to the build system present in Libreboot 20160907.
Massive improvements to that build system were made, during most of 2021, when
2022-01-03 22:29:31 +00:00
implementing both the `osbmk` *and* `lbmk` build systems.
2022-11-13 21:12:15 +00:00
All sections below pertain to actual files in osbmk:
2022-01-03 22:29:31 +00:00
COPYING
=======
This file contains a copy of the GNU General Public License, version 3.0. It is
2022-11-13 21:12:15 +00:00
the license that most parts of `osbmk` are released under.
2022-01-03 22:29:31 +00:00
Makefile
========
2022-11-13 21:12:15 +00:00
For use with GNU Make, this is a frontend to `osbmk`, which can be used to run
various commands in `osbmk`.
2022-01-03 22:29:31 +00:00
Use of this file is purely optional, and largely beneficial if you simply want
2022-11-13 21:12:15 +00:00
to build all of `osbmk` (just run `make` when the current work directory is the
root directory of `osbmk`).
2022-01-03 22:29:31 +00:00
README.md
=========
2022-11-13 21:12:15 +00:00
This file contains a brief description of osboot, along with information
2022-01-03 22:29:31 +00:00
about the project
build
=====
2022-11-13 21:12:15 +00:00
This is the main BASH script, part of `osbmk`, used for running most `osbmk`
commands. You could say that this file *is* `osbmk`. Run `./build help` for
2022-01-03 22:29:31 +00:00
usage instructions.
It calls scripts in `resources/scripts/build/`. For example, the
command `./build boot roms` will execute `resources/scripts/build/boot/roms`.
When running such commands, additional parameters can be given, which will
be passed along to the corresponding script. For example, try:
./build boot roms x60 x200_8mb w500_16mb
This will run:
./resources/scripts/build/boot/roms x60 x200_8mb w500_16mB
The `list` function is very helpful. For example:
./build boot list
At the time of writing this section, this would have outputted:
Available options for mode 'boot':
roms
roms_helper
Another use of `list` would be:
./build boot roms list
However, the `roms` script merely happens to implement a `list` command. For
example, `./build payload grub list` does nothing differently
than `./build payload grub`.
You may also refer to the [build instructions](../build)
download
========
2022-11-13 21:12:15 +00:00
This is the main BASH script for downloading various components used by `osbmk`.
2022-01-03 22:29:31 +00:00
For example, this script downloads coreboot. Scripts called by `download` may
also apply patches and such, to the corresponding project; for example, it will
apply custom patches to GNU GRUB.
This runs scripts in `resources/scripts/download`. For example:
./download coreboot
This would run:
./resources/scripts/download/coreboot
Additional parameters can be given, for example:
./download coreboot default
This would run:
./resources/scripts/download/coreboot default
For a full list of all `download` commands, run:
./download help
modify
======
This can be used to modify SeaBIOS and coreboot configs. It calls scripts
in `resources/scripts/modify/`, for example:
./modify coreboot configs
This runs:
./resources/scripts/modify/coreboot/configs
Additional parameters can be given, for example:
./modify coreboot configs x200_8mb x60
This would run:
./resources/scripts/modify/coreboot/configs x200_8mb x60
projectname
===========
2022-11-13 21:12:15 +00:00
This file contains a single line of text, with the string "osboot".
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
If you were to fork osboot, you could very easily just modify this file, so
as to rename your fork in a largely automated way. Many parts of osbmk use this
file.
2022-01-03 22:29:31 +00:00
resources/coreboot/
===================
This directory contains configuration, patches and so on, for each mainboard
2022-11-13 21:12:15 +00:00
supported in the `osbmk` build system. These directories contain such
configuration, so that `osbmk` can build working ROM images.
2022-01-03 22:29:31 +00:00
The scripts in `resources/scripts/build/boot/` make heavy use of this
directory.
resources/coreboot/BOARDNAME/
=============================
Each `BOARDNAME` directory defines configuration for a corresponding mainboard.
It doesn't actually have to be for a board; it can also be used to just define
a coreboot revision, with patches and so on.
resources/coreboot/BOARDNAME/board.cfg
======================================
This file can contain several configuration lines, each being a string, such
as:
* `cbtree="default"` (example entry)
* `romtype="normal"` (example entry)
* `cbrevision="ad983eeec76ecdb2aff4fb47baeee95ade012225"` (example entry)
* `arch="x86_64"` (example entry)
* `payload_grub="y"` (example entry)
* `payload_grub_withseabios="y"` (example entry)
* `payload_seabios="y"` (example entry)
* `payload_memtest="y"` (example entry)
* `payload_seabios_withgrub="y"` (example entry)
* `grub_scan_disk="ata"`
More information about these and other variables will be provided throughout
this document.
The `cbtree` entry is actually a link, where its value is a directory name
under `resources/coreboot`. For example, `cbtree="default"` would refer
to `resources/coreboot/default` and the corresponding coreboot source tree
created (when running `./download coreboot`, which makes use of `board.cfg`)
would be `coreboot/default/`. In other words: a `board.cfg` file
in `resources/coreboot/foo` might refer to `resources/coreboot/bar` by
specifying `cbtree="bar"`, and the created coreboot source tree would
be `coreboot/bar/`. ALSO:
FUN FACT: such references are infinitely checked until resolved. For
example, `foo` can refer to `bar` and `bar` can refer to `baz` but if there is
2022-11-13 21:12:15 +00:00
an infinite loop, this is detected and handled by `osbmk`. For example,
2022-01-03 22:29:31 +00:00
if `bar` refers to `foo` which refers back to `bar`, this is not permitted
2022-11-13 21:12:15 +00:00
and will throw an error in `osbmk`.
2022-01-03 22:29:31 +00:00
The `romtype` entry largely defines what `./build boot roms` does once the ROM
is built; for example, `romtype="4MiB ICH9 IFD NOR flash"` would specify that
an Intel Flash Descriptor for ICH9M, generated by `ich9gen`, would have to be
inserted.
The `cbrevision` entry defines which coreboot revision to use, from the
2022-11-13 21:12:15 +00:00
coreboot Git repository. *At present, osbmk only supports use of the official
2022-01-03 22:29:31 +00:00
repository from the upstream coreboot project*.
The `arch` entry specifies which CPU architecture is to be used: currently
recognized entries are `x86_32`, `x86_64` and `ARMv7`. *At present, setting it
to ARMv7 only means that crossgcc-arm will be compiled, but no support for
2022-11-13 21:12:15 +00:00
actually building ROMs exists in osbmk exists yet, except for 32-bit and 64-bit
2022-01-03 22:29:31 +00:00
x86 machines.*
The `payload_grub` entry specifies whether or not GNU GRUB is to be included in
ROM images.
The `payload_grub_withseabios` entry specifies whether or not SeaBIOS is to
be included *with* GRUB, in ROM images. Turning this on also turns
on `payload_seabios_withgrub`, unless that option is explicitly turned off.
The `payload_seabios` entry specifies whether or not SeaBIOS is to be included
in ROM images. This option is *automatically* enabled
if `payload_grub_withseabios` and/or `payload_seabios_withgrub` are also turned
on.
The `payload_memtest` entry specifies whether or not MemTest86+ is to be
included in ROM images; it will only be included in ROM images for *text mode*
startup, on x86 machines.
The `grub_scan_disk` option specifies can be `ahci`, `ata` or `both`, and it
determines which types of disks are to be scanned, when the `grub.cfg` file in
GRUB payloads tries to automatically find other `grub.cfg` files supplied by
your GNU+Linux distribution. On some machines, setting it to `ata` or `ahci`
can improve boot speed by reducing delays; for example, trying to scan `ata0`
on a ThinkPad X60 with the optical drive may cause GRUB to hang, so on that
machine it is advisable to set this option to `ahci` (becuse the default HDD
slot is AHCI).
resources/coreboot/BOARDNAME/config/\*
======================================
Files in this directory are *coreboot* configuration files.
Configuration file names can be as follows:
* `libgfxinit_corebootfb`
* `libgfxinit_txtmode`
* `vgarom_vesafb`
* `vgarom_txtmode`
* `normal`
Information pertaining to this can be found on
the [installation manual](../install/)
2022-11-13 21:12:15 +00:00
In `osbmk`, a board-specific directory under `resources/coreboot/` should never
2022-01-03 22:29:31 +00:00
specify a coreboot revision. Rather, a directory *without* coreboot configs
should be created, specifying a coreboot revision. For example, the
directory `resources/coreboot/default/` specifies a coreboot revision. In the
board-specific directory, your `board.cfg` could then
specify `cbtree="default"` but without specifying a coreboot revision (this
is specified by `resources/coreboot/default/board.cfg`).
When you create a coreboot configuration, you should set the payload to *none*
2022-11-13 21:12:15 +00:00
because `osbmk` itself will assume that is the case, and insert payloads itself.
2022-01-03 22:29:31 +00:00
Configurations with `libgfxinit` will use coreboot's native graphics init code
if available on that board. If the file name has `txtmode` in it, coreboot
will be configured to start in *text mode*, when setting up the display. If
the file name has `corebootfb` in it, coreboot will be configured to set up a
high resolution *frame buffer*, when initializing the display.
NOTE: If the configuration file is `libgfxinit_txtmode`, the SeaBIOS payload
can still run *external* VGA option ROMs on graphics cards, and this is the
recommended setup (SeaBIOS in text mode) if you have a board with both onboard
and an add-on graphics card (e.g. PCI express slot) installed.
Configuration files with `vgarom` in the name have coreboot itself configured
to run VGA option ROMs (and perhaps other option ROMs). *This* setup is not
strictly recommended for *SeaBIOS*, and it is recommended that you only run
GRUB in this setup. As such, if you wish for a board to have coreboot initialize
the VGA ROM (on an add-on graphics card, as opposed to onboard chipset), you
should have a *separate* directory just for that, under `resources/coreboot/`;
another directory for that board will have configs with `libgfxinit`. HOWEVER:
2022-11-13 21:12:15 +00:00
It *is* supported in osbmk to have SeaBIOS used, on either setup. In the
2022-01-03 22:29:31 +00:00
directory `resources/seabios/` there are SeaBIOS configs for both; the vgarom
one sets VGA hardware type to *none* while the libgfxinit one sets it
to *coreboot linear framebuffer*. However, if you use SeaBIOS on a setup with
coreboot also doing option ROM initialization, such initialization is being
performed *twice*. As such, if you want to use an add-on graphics card in
SeaBIOS, but the board has libgfxinit, it is recommended that you do it from
a `libgfxinit` ROM.
HOWEVER: there's no hard and fast rule. For example, you could make a vgarom
2022-11-13 21:12:15 +00:00
configuration, on a board in osbmk, but in its coreboot configuration, don't
2022-01-03 22:29:31 +00:00
enable native init *or* oproms, and do SeaBIOS-only on that board.
On `vgarom` setups, coreboot can be configured to start with a high resolution
VESA frame buffer (NOT to be confused with the coreboot frame buffer), or just
normal text mode. Text mode startup is always recommended, and in that setup,
GRUB (including coreboot GRUB, but also PC GRUB) can use VGA modes.
The name `libgfxinit` is simply what `./build boot roms` uses, but it may be
that a board uses the old-school native video init code written in C. On some
platforms, coreboot implemented a 3rd party library called `libgfxinit`, which
is written in Ada and handles video initialization. In this setup, coreboot
*itself* should *never* be configured to run any option ROMs, whether you
start in text mode or with the coreboot framebuffer initialization.
The `normal` config type is for desktop boards that lack onboard graphics
chipsets, where you would always use an add-on graphics card (or *no* graphics
card, which would be perfectly OK on servers).
Even if your board doesn't actually use `libgfxinit`, the config for it should
still be named as such. From a user's perspective, it really makes no
difference.
COREBOOT build system
---------------------
If you wish to know about coreboot, refer here:\
<https://doc.coreboot.org/tutorial/part1.html>
This and other documents from coreboot shall help you to understand *coreboot*.
You create a config, for `resources/coreboot/BOARDNAME/configs`, by running
the `make menuconfig` command in the *coreboot* build system. You should do
2022-11-13 21:12:15 +00:00
this after running `./download coreboot` in osbmk.
2022-01-03 22:29:31 +00:00
You can simply clone coreboot upstream, add whatever patches you want, and
then you can make your config. It will appear afterwards in a file
named `.config` which is your config for inside `resources/coreboot/BOARDNAME/`.
You can then use `git format-patch -nX` where `X` is however many patches you
added to that coreboot tree. You can put them in the patches directory
under `resources/coreboot/BOARDNAME`.
The *base* revision, upon which any custom patches you wrote are applied,
shall be the `cbrevision` entry.
REMINDER: Do not enable a payload in coreboot's build system. Set it
2022-11-13 21:12:15 +00:00
to *none*, and enable whatever payload you want in osbmk.
2022-01-03 22:29:31 +00:00
2022-11-13 21:12:15 +00:00
If a payload is not supported in osbmk, patches are very much welcome! It is
the policy of osboot, to only ever use the *coreboot* build system inside
2022-01-03 22:29:31 +00:00
coreboot, but not use any of *coreboot's* own integration for payloads. It is
far more flexible and *robust* to handle payloads externally, relative to the
coreboot build system.
2022-11-13 21:12:15 +00:00
Scripts exist in `osbmk` for automating the modification/updating of *existing*
2022-01-03 22:29:31 +00:00
configs, but not for adding them. Adding them is to be done manually, based on
the above guidance.
ALSO:
If the option exists, for a given board, please configure coreboot to clear
all DRAM upon boot. This is for security reasons. An exception is made when
such functionality is not available, on the specific board/revision that you're
configuring in coreboot.
resources/coreboot/BOARDNAME/patches/\*
=======================================
In cases where `cbrevision` is specified, where the given directory
under `resources/coreboot/` does in fact define a version of coreboot to
download, you can add custom *patches* on top of that revision. When you run
the command `./download coreboot`, those patches will be applied chronologically
in alphanumerical order as per patch file names.
The patch files should be named with `.patch` file extensions. All other files
2022-11-13 21:12:15 +00:00
will be ignored. By having `osbmk` do it this way, you could add a `README` file
for instance, and `osbmk` will not erroneously try to apply `README` as though
2022-01-03 22:29:31 +00:00
it were a patch file. This might be useful if you have a *lot* of patches, and
you want to provide some explanations about specific files.
resources/grub/background/
==========================
Splash screen images applied duing startup when using the GNU GRUB payload.
resources/grub/config/grub.cfg
==============================
This is a configuration file. It is used to program GRUB's shell.
This is inserted (as `grub.cfg`) into the root of CBFS, in the ROM image. It
contains a lot of logic in it, for booting various system configurations, when
the GRUB payload is in use.
resources/grub/config/grub\_memdisk.cfg
========================================
This is a configuration file. It is used to program GRUB's shell.
This file is inserted (as `grub.cfg`) into the GRUB *memdisk*, when building
the GRUB payload (for coreboot), using GRUB's `grub-mkstandalone` utility. It
simply loads the `grub.cfg` file from CBFS (see above).
resources/grub/keymap/
======================
This directory contains keymaps for GRUB. They allow for different keyboard
2022-11-13 21:12:15 +00:00
layouts to be used. The `osbmk` build system uses these to produce ROM images
2022-01-03 22:29:31 +00:00
with various keyboard layouts used by default, when the GRUB payload is to be
used.
They are stored here, directly in GRUB's own `.gkb` file format, which is a
binary format defining which scancodes correspond to which character input.
This binary format is documented by GRUB; the code for it is easy to
understand. Please read `grub-core/commands/keylayouts.c` in the GRUB source
code.
2021-05-18 12:21:48 +00:00
resources/grub/modules.list
2022-01-03 22:29:31 +00:00
===========================
This file defines all modules that are to be included in builds of GNU GRUB.
They are standalone builds, created using the `grub-mkstandalone` utility.
resources/grub/patches/
=======================
This directory contains custom patches for GNU GRUB.
resources/memtest86plus/patch/
==============================
This directory contains custom patches for Memtest86+.
resources/scripts/build/boot/roms
=================================
This script builds coreboot ROM images. It is largely a shim, which calls
the `roms_helper` script, which does most of the legwork.
Command: `./build boot roms`
Additional parameters can be provided. This lists all boards available:
./build boot roms list
Pass several board names if you wish to build only for specific targets. For
example:
./build boot roms x60 x200_8mb
resources/scripts/build/boot/roms\_helper
=========================================
This script builds coreboot ROM images. It is not to be executed directory;
user interaction must be done via the main `roms` script.
It heavily makes use of the `board.cfg` file, for a given board. This script
will *only* operate on a single target, from a directory
in `resources/coreboot/`.
If `grub_scan_disk` is set, it sets that in the `grub.cfg` file that is to be
inserted into a ROM image, when `payload_grub` is turned on.
It automatically detects if `crossgcc` is to be compiled, on a given coreboot
tree (in cases where it has not yet been compiled), and compiles it for a
target based on the `arch` entry in `board.cfg`.
It creates ROM images with GRUB and/or SeaBIOS, optionally with Memtest86+
also included, in various separate configurations in many different ROM images
for user installation.
The `romtype` entry in `board.cfg` tells this script what to do with the ROM,
after it has been built. Currently, it operates based on these possible values
for `romtype`:
* `4MiB IFD BIOS region` will cause only the upper 4MB section of the ROM
to be included in a release. This option is largely deprecated, a hangover
from osboot, which also no longer uses this option on any boards, and it is
thus subject for removal.
* `d8d16sas` will cause *fake* (empty) files named `pci1000,0072.rom`
and `pci1000,3050.rom` to be inserted in CBFS. This prevents SeaBIOS from
loading or executing the option ROM stored on PIKE2008 modules, present on
certain configurations with the ASUS KCMA-D8 or KGPE-D16 mainboards. Those
option ROMs cause the system to hang, so they should never be executed (this
means however that booting Linux kernels from SAS devices is impossible on
those boards, unless a Linux payload is used; Linux can use those SAS drives,
without relying on the PIKE2008 option ROMs). When SeaBIOS runs, it will
default to loading the corresponding option ROM from CBFS, if it exists, for
a given PCI device, overriding whatever option ROM is present on the device
itself, but if the option ROM is invalid/empty, SeaBIOS will not attempt to
load another one, until the empty/invalid one (in CBFS) is deleted.
* `4MiB ICH9 IFD NOR flash`: the `ich9gen` program will be used to insert an
Intel Flash Descriptor and Gigabit Ethernet Non-volatile memory file into
the ROM image. This is used on GM45/ICH9M based laptops, such as: ThinkPad
X200, T400, T500, W500, X200 Tablet, X200S, T400S, X301
* `8MiB ICH9 IFD NOR flash`: Same as the 4MB one as described above, but for
ROM images with 8MB (64Mbit) of boot flash. The one above is for systems
with 4MB (32Mbit) of flash.
* `16MiB ICH9 IFD NOR flash`: ditto, but for 16MB (128Mbit) flash. In this and
the other two cases as described above, the first 4KB is the Intel Flash
Descriptor, the next 8KB is GbE NVM and the rest is BIOS (for the coreboot
part). In all cases, the default *ME* (Intel Management Engine) region is
disabled, as is the ME itself, based on bits set to disable it in the Intel
Flash Descriptor. The descriptor is used in such a setup, because on all
2022-11-13 21:12:15 +00:00
such boards in osboot, GbE NVM is needed to get gigabit ethernet working
2022-01-03 22:29:31 +00:00
correctly; it is the sole reason `ich9gen` was written, because it is
otherwise possible to boot these machines in a *descriptorless* setup, where
ICH9M behaves similarly to ICH7: all one region of flash, for the boot
firmware (coreboot), but it results in a non-functional gigabit enternet
device.
* `4MiB ICH9 IFD NOGBE NOR flash`: Intel Flash Descriptor *on its own*, without
ME or GbE NVM. Just IFD and BIOS. This is used on the ThinkPad R500.
* `8MiB ICH9 IFD NOGBE NOR flash`: Same as above, but for 8MB (64Mbit) ROMs
* `16MiB ICH9 IFD NOGBE NOR flash`: Same as above, but for 16MB (128Mbit) ROMs
* `i945 laptop`: in this configuration, the upper 64KB section of the ROM is
copied into the 64KB section below that. This results in there being two
bootblocks in the ROM, and you can decide which one is used by setting `bucts`
If no payload is defined in `board.cfg`, the `roms_helper` script will exit
with error status.
If SeaBIOS is to be used, on `libgfxinit` setups, SeaVGABIOS will also be
inserted. This provides a minimal VGA compatibility layer on top of the
coreboot framebuffer, but does not allow for *switching* the VGA mode. It is
currently most useful for directly executing ISOLINUX/SYSLINUX bootloaders,
and certain OS software (some Windows setups might work, poorly, depending on
the board configuration, but don't hold your breath; it is far from complete).
If SeaBIOS is to be used, in `vgarom` setups or `normal` setups, SeaVGABIOS
is not inserted and you rely on either coreboot and/or SeaBIOS to execute VGA
option ROMs.
In all cases, this script automatically inserts several SeaBIOS runtime
configurations, such as: `etc/ps2-keyboard-spinup` set to 3000 (PS/2 spinup
wait time), `etc/pci-optionrom-exec` set to 2 (despite that already being
the default anyway) to enable *all* option ROMs, unless `vgarom` setups are
used, in which case the option is set to *0* (disabled) because coreboot is
then expected to handle option ROMs, and SeaBIOS should not do it.
2022-11-13 21:12:15 +00:00
Essentially, the `roms_helper` script makes use of each and every part of
osbmk. It is the heart of osboot.
2022-01-03 22:29:31 +00:00
When the ROM is finished compiling, it will appear under a directory in `bin/`
2021-05-18 12:21:48 +00:00
resources/scripts/build/clean/cbutils
2022-01-03 22:29:31 +00:00
=====================================
2022-11-13 21:12:15 +00:00
This simply runs `make clean` on various utilities from coreboot, which osbmk
2022-01-03 22:29:31 +00:00
makes use of.
Command: `./build clean cbutils`
2021-05-18 12:21:48 +00:00
resources/scripts/build/clean/crossgcc
2022-01-03 22:29:31 +00:00
======================================
This runs `make crossgcc-clean` on all of the coreboot revisions present in
2022-11-13 21:12:15 +00:00
osbmk.
2022-01-03 22:29:31 +00:00
Command: `./build clean crossgcc`
2021-05-18 12:21:48 +00:00
resources/scripts/build/clean/flashrom
2022-01-03 22:29:31 +00:00
======================================
This runs `make clean` in the `flashrom/` directory.
Command: `./build clean flashrom`
2021-05-18 12:21:48 +00:00
resources/scripts/build/clean/grub
2022-01-03 22:29:31 +00:00
==================================
This runs `make clean` in the `grub/` directory.
It does not delete anything in `payload/grub/`.
Command: `./build clean grub`
resources/scripts/build/clean/ich9utils
=======================================
This runs `make clean` in the `ich9utils/` directory.
Command: `./build clean ich9utils`
2021-05-18 12:21:48 +00:00
resources/scripts/build/clean/memtest86plus
2022-01-03 22:29:31 +00:00
===========================================
This runs `make clean` in the `memtest86plus/` directory.
Command: `./build clean memtest86plus`
2021-05-18 12:21:48 +00:00
resources/scripts/build/clean/payloads
2022-01-03 22:29:31 +00:00
======================================
This deletes the `payload/` directory.
Command: `./build clean payloads`
resources/scripts/build/clean/rom\_images
=========================================
This deletes the `bin/` directory.
Command: `./build clean rom_images`
2021-05-18 12:21:48 +00:00
resources/scripts/build/clean/seabios
2022-01-03 22:29:31 +00:00
=====================================
This runs `make clean` in the `seabios/` directory.
Command: `./build clean seabios`
2021-05-18 12:21:48 +00:00
resources/scripts/build/dependencies/arch
2022-01-03 22:29:31 +00:00
=========================================
Using `pacman`, this installs build dependencies in Arch. It may also work on
similar distros like Manjaro or Artix.
Command: `./build dependencies arch`
resources/scripts/build/dependencies/debian
===========================================
Using `apt-get`, this installs build dependencies in Debian. It may work on
other `apt-get` distros.
Command: `./build dependencies debian`
resources/scripts/build/dependencies/fedora35
=============================================
Using `dnf`, this installs build dependencies in Fedora 35.
Command: `./build dependencies fedora35`
2021-05-18 12:21:48 +00:00
resources/scripts/build/dependencies/ubuntu2004
2022-01-03 22:29:31 +00:00
===============================================
Using `apt-get`, this installs build dependencies for Ubuntu 20.04 (for later
versions, you might use the Debian script).
This script should also work with Trisquel 9 and 10.
Command: `./build dependencies ubuntu2004`
resources/scripts/build/dependencies/void
=========================================
Using `xbps`, this installs build dependencies for Void.
Command: `./build dependencies void`
2021-05-18 12:21:48 +00:00
resources/scripts/build/descriptors/ich9m
2022-01-03 22:29:31 +00:00
=========================================
This runs `ich9gen` to generate descriptors for ICH9M platforms. These are
then stored in `descriptors/ich9m/`
Command: `./build descriptors ich9m`
2021-05-18 12:21:48 +00:00
resources/scripts/build/module/cbutils
2022-01-03 22:29:31 +00:00
======================================
This compiles various coreboot utilities (such as cbfstool).
Command: `./build module cbutils`
2021-05-18 12:21:48 +00:00
resources/scripts/build/module/flashrom
2022-01-03 22:29:31 +00:00
=======================================
This compiles flashrom.
Command `./build module flashrom`
2021-05-18 12:21:48 +00:00
resources/scripts/build/module/grub
2022-01-03 22:29:31 +00:00
===================================
This compiles GRUB utilities. It does not build the actual payloads.
Command: `./build module grub`
2021-05-18 12:21:48 +00:00
resources/scripts/build/module/ich9utils
2022-01-03 22:29:31 +00:00
========================================
This compiles `ich9utils`, which includes the `ich9gen` utility.
Command: `./build module ich9utils`
resources/scripts/build/module/memtest86plus
============================================
This compiles Memtest86+.
Command: `./build module memtest86plus`
2021-05-18 12:21:48 +00:00
resources/scripts/build/payload/grub
2022-01-03 22:29:31 +00:00
====================================
This builds the GRUB payloads.
Command: `./build payload grub`
resources/scripts/build/payload/seabios
=======================================
This builds the SeaBIOS payloads.
Command: `./build payload seabios`
2021-05-18 12:21:48 +00:00
resources/scripts/build/release/roms
2022-01-03 22:29:31 +00:00
====================================
This builds release archives, containing ROM images. You must only run this
after you've built all of the ROM images that you wish to release.
Command: `./build release roms`
2021-05-18 12:21:48 +00:00
resources/scripts/build/release/src
2022-01-03 22:29:31 +00:00
===================================
This builds source archives. You must only run this after compiling crossgcc
on all coreboot source trees.
Command: `./build release src`
2021-05-18 12:21:48 +00:00
resources/scripts/download/coreboot
2022-01-03 22:29:31 +00:00
===================================
This downloads, patches and deblobs coreboot, as per `board.cfg` files
in `resources/coreboot/`.
Command: `./download coreboot`
2022-11-13 21:12:15 +00:00
NOTE: Unlike `lbmk`, the version of this in `osbmk` does not delete blobs at
all. It also does not delete Git history. Everything is fully preserved.
NOTE: This version of the script also performs the full git checkout in each
coreboot tree, like so:
git submodule update --init --checkout
The `lbmk` version only does this:
git submodule update --init
The coreboot project sets up its Git repository, in such a way where most blobs
are skipped if you omit `--checkout`. Since osbmk's policy is to *include*
these in its distribution, it makes sense to use `--checkout`.
2021-05-18 12:21:48 +00:00
resources/scripts/download/flashrom
2022-01-03 22:29:31 +00:00
===================================
This downloads and patches flashrom.
Command: `./download flashrom`
2021-05-18 12:21:48 +00:00
resources/scripts/download/grub
2022-01-03 22:29:31 +00:00
===============================
This downloads and patches GNU GRUB.
Command: `./download grub`
resources/scripts/download/ich9utils
====================================
This downloads `ich9utils`, which includes `ich9gen`.
Command: `./download ich9utils`
2021-05-18 12:21:48 +00:00
resources/scripts/download/memtest86plus
2022-01-03 22:29:31 +00:00
========================================
This downloads and patches Memtest86+.
Command: `./download memtest86plus`
2021-05-18 12:21:48 +00:00
resources/scripts/download/seabios
2022-01-03 22:29:31 +00:00
==================================
This downloads and patches SeaBIOS.
Command: `./download seabios`
resources/scripts/misc/versioncheck
===================================
This updates the text file containing version information. It is used by many
other build scripts. It also updates the files containing the version date.
You need not run this yourself, directly.
resources/scripts/modify/coreboot/configs
=========================================
Loads coreboot configs into coreboot trees, and runs `make menuconfig`, so
that you can easily modify them in an ncurses interface. Additional parameters
are accepted, for example:
./modify coreboot configs x60 x200_8mb
With no additional parameters given, it simply cycles through all configs
under `resources/coreboot/`.
Command: `./modify coreboot configs`
resources/scripts/modify/seabios/configs
========================================
This lets you modify SeaBIOS configs.
Command: `./modify seabios configs`
2021-05-18 12:21:48 +00:00
resources/scripts/update/coreboot/configs
2022-01-03 22:29:31 +00:00
=========================================
This runs `make oldconfig` on coreboot configs under `resources/coreboot/`.
It is most useful when updating a coreboot revision, per `board.cfg`. It allows
additional parameters, for example:
./update coreboot configs x60 x200_8mb
With no additional parameters given, it simply cycles through all configs
under `resources/coreboot/`.
Command: `./update coreboot configs`
resources/scripts/update/seabios/configs
========================================
This runs `make oldconfig` on SeaBIOS configs. It is most useful when updating
2022-11-13 21:12:15 +00:00
the version of SeaBIOS used by osbmk.
2022-01-03 22:29:31 +00:00
Command: `./update seabios configs`
2021-05-18 12:21:48 +00:00
resources/seabios/config/libgfxinit
2022-01-03 22:29:31 +00:00
===================================
SeaBIOS configuration file, when `libgfxinit` is to be used. It enables
the `coreboot linear framebuffer` option in the SeaBIOS `make menuconfig`
configuration interface.
2021-05-18 12:21:48 +00:00
resources/seabios/config/vgarom
2022-01-03 22:29:31 +00:00
===============================
This version is for normal SeaBIOS configurations, where `libgfxinit` is not
to be used.
update
======
This can be used to update SeaBIOS and coreboot configs. It calls scripts
in `resources/scripts/update/`, for example:
./update coreboot configs
This runs:
./resources/scripts/update/coreboot/configs
Additional parameters can be given, for example:
./update coreboot configs x200_8mb x60
This would run:
./resources/scripts/update/coreboot/configs x200_8mb x60