xref: /aosp_15_r20/external/coreboot/Documentation/mainboard/starlabs/common/building.md (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1# Building coreboot
2
3## Preliminaries
4
5Prior to building coreboot the following files are required:
6
7### StarBook series:
8* Intel Flash Descriptor file (descriptor.bin)
9* Intel Management Engine firmware (me.bin)
10* ITE Embedded Controller firmware (ec.bin)
11
12### StarLite series:
13* Intel Flash Descriptor file (descriptor.bin)
14* IFWI Image (ifwi.rom)
15
16The files listed below are optional:
17- Splash screen image in Windows 3.1 BMP format (Logo.bmp)
18
19These files exist in the correct location in the [StarLabsLtd/blobs](https://github.com/StarLabsLtd/blobs) repo on GitHub which is used in place of the standard 3rdparty/blobs repo.
20
21## Build
22
23The following commands will build a working image, where the last two words represent the
24series and processor i.e. `lite_glkr`:
25
26```bash
27make distclean
28make defconfig KBUILD_DEFCONFIG=configs/config.starlabs_starbook_adl
29make
30```
31