Name Date Size #Lines LOC

..--

.gitignoreH A D25-Apr-202524 32

AUTHORSH A D25-Apr-2025607 1513

COPYINGH A D25-Apr-202517.6 KiB340281

KconfigH A D25-Apr-20252.2 KiB9776

MakefileH A D25-Apr-20251.8 KiB8458

READMEH A D25-Apr-2025678 2717

bootlog_module.cH A D25-Apr-20254.4 KiB220158

cbfs_module.cH A D25-Apr-20255.2 KiB254211

coreboot_module.cH A D25-Apr-20255.3 KiB247189

coreinfo.cH A D25-Apr-20256 KiB322251

coreinfo.hH A D25-Apr-2025468 2516

cpuid.SH A D25-Apr-2025718 5137

cpuinfo_module.cH A D25-Apr-20256.1 KiB262202

multiboot_module.cH A D25-Apr-20251.9 KiB10574

nvram_module.cH A D25-Apr-20251.2 KiB6545

pci_module.cH A D25-Apr-20254.8 KiB260187

ramdump_module.cH A D25-Apr-20251.8 KiB9575

timestamps_module.cH A D25-Apr-20256.1 KiB282199

README

1This is a silly little program that demonstrates how cool libpayload is
2and also serves a purpose.  It is fun and educational!
3
4Requirements
5------------
6
7You should use the coreboot reference cross compiler. If you insist on using
8your system compiler, some Linux distributions might require you to install
9a package called gcc-multilib if you are on a 64bit system.
10
11Build
12-----
13
14You need libpayload to build coreinfo. So, first, you need follow the README of
15libpayload to build it but install libpayload into its own directory by doing
16this:
17
18 $ make DESTDIR=/path/to/libpayload/install install
19
20Then you can build coreinfo now:
21
22 $ cd coreinfo
23
24 $ make menuconfig
25
26 $ make
27