coreboot/payloads/coreinfo
Jacob Garber 9cd53c56ed Makefile.inc, payloads: Enable -Wvla
Variable length arrays are dangerous, so let's make sure they don't
sneak back into coreboot or any of the payloads.

Change-Id: Idf2488cf0efab51c9569a3789ae953368b61880c
Signed-off-by: Jacob Garber <jgarber1@ualberta.ca>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33846
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
2019-08-20 20:57:01 +00:00
..
COPYING corinfo: Inital release of the coreinfo code 2008-03-20 00:11:05 +00:00
Kconfig coreinfo: Add support to read timestamps 2016-07-20 22:09:32 +02:00
Makefile Makefile.inc, payloads: Enable -Wvla 2019-08-20 20:57:01 +00:00
README payloads/coreinfo/README: Remove trailing whitespace 2018-04-27 09:09:45 +00:00
bootlog_module.c payloads: Replace all IS_ENABLED(CONFIG_XXX) with CONFIG(XXX) 2019-03-07 17:15:30 +00:00
cbfs_module.c payloads: Replace all IS_ENABLED(CONFIG_XXX) with CONFIG(XXX) 2019-03-07 17:15:30 +00:00
coreboot_module.c payloads/coreinfo: Make internal functions static 2019-07-07 20:20:44 +00:00
coreinfo.c payloads/coreinfo: Use correct integer types for loop indices 2019-07-07 20:19:49 +00:00
coreinfo.h payloads/coreinfo: Use fixed-width integers for cpuid 2019-07-07 20:19:05 +00:00
cpuid.S tree: drop last paragraph of GPL copyright header 2015-10-31 21:37:39 +01:00
cpuinfo_module.c payloads/coreinfo: Use fixed-width integers for cpuid 2019-07-07 20:19:05 +00:00
multiboot_module.c payloads/coreinfo: Make internal functions static 2019-07-07 20:20:44 +00:00
nvram_module.c payloads: Replace all IS_ENABLED(CONFIG_XXX) with CONFIG(XXX) 2019-03-07 17:15:30 +00:00
pci_module.c payloads/coreinfo: Use correct integer types for loop indices 2019-07-07 20:19:49 +00:00
ramdump_module.c payloads: Replace all IS_ENABLED(CONFIG_XXX) with CONFIG(XXX) 2019-03-07 17:15:30 +00:00
timestamps_module.c payloads/coreinfo: Use correct integer types for loop indices 2019-07-07 20:19:49 +00:00

README

This is a silly little program that demonstrates how cool libpayload is
and also serves a purpose.  It is fun and educational!

Requirements
------------

You should use the coreboot reference cross compiler. If you insist on using
your system compiler, some Linux distributions might require you to install
a package called gcc-multilib if you are on a 64bit system.

Build
-----

You need libpayload to build coreinfo. So, first, you need follow the README of
libpayload to build it but install libpayload into its own directory by doing
this:

 $ make DESTDIR=/path/to/libpayload/install install

Then you can build coreinfo now:

 $ cd coreinfo

 $ make menuconfig
 
 $ make