mb/ibm/sbp1: Update PCIe SBDF in comment
[coreboot2.git] / Documentation / mainboard / starlabs / common / building.md
blobc283ef54ef38a48f91747d6a7168fa0468075ffe
1 # Building coreboot
3 ## Preliminaries
5 Prior to building coreboot the following files are required:
7 ### StarBook series:
8 * Intel Flash Descriptor file (descriptor.bin)
9 * Intel Management Engine firmware (me.bin)
10 * ITE Embedded Controller firmware (ec.bin)
12 ### StarLite series:
13 * Intel Flash Descriptor file (descriptor.bin)
14 * IFWI Image (ifwi.rom)
16 The files listed below are optional:
17 - Splash screen image in Windows 3.1 BMP format (Logo.bmp)
19 These 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.
21 ## Build
23 The following commands will build a working image, where the last two words represent the
24 series and processor i.e. `lite_glkr`:
26 ```bash
27 make distclean
28 make defconfig KBUILD_DEFCONFIG=configs/config.starlabs_starbook_adl
29 make
30 ```