coreboot-kgpe-d16/util/nvramtool
Patrick Georgi 5c63761c37 nvramtool: Read/write binary data as binary
Only relevant on windows (and nvramtool currently fails there), but
it doesn't hurt.

Change-Id: I5d6420c1f9dc49cf3af31e75088e51a90f729e01
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/1535
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
2012-09-25 16:08:23 +02:00
..
accessors nvramtool: Unify nvramtool and build_opt_tbl 2012-04-21 09:36:24 +02:00
cli nvramtool: Read/write binary data as binary 2012-09-25 16:08:23 +02:00
COPYING
ChangeLog
DISCLAIMER
Makefile Fix build with CMOS support on various platforms 2012-05-08 00:40:01 +02:00
Makefile.inc Isolate Kconfig host compiler options 2012-09-14 07:33:07 +02:00
README
cbfs.c
cbfs.h
cmos_lowlevel.c nvramtool: Remove the building warning on older gcc 2012-09-11 08:32:30 +02:00
cmos_lowlevel.h
cmos_ops.c
cmos_ops.h
common.c nvramtool: Unify nvramtool and build_opt_tbl 2012-04-21 09:36:24 +02:00
common.h
compute_ip_checksum.c
coreboot_tables.h
hexdump.c hexdump: fix compiler warning 2012-04-07 19:57:42 +02:00
hexdump.h
input_file.c
input_file.h
ip_checksum.h
layout.c
layout.h nvramtool: Unify nvramtool and build_opt_tbl 2012-04-21 09:36:24 +02:00
lbtable.c nvramtool: use C99 PRIx64 / PRId64 for uint64_t variables 2012-05-25 08:01:37 +02:00
lbtable.h
nvramtool.spec
reg_expr.c
reg_expr.h

README

Summary of Operation
--------------------
nvramtool is a utility for reading/writing coreboot parameters and
displaying information from the coreboot table.  It is intended for x86-based
systems (both 32-bit and 64-bit) that use coreboot.

The coreboot table resides in low physical memory, and may be accessed
through the /dev/mem interface.  It is created at boot time by coreboot, and
contains various system information such as the type of mainboard in use.  It
specifies locations in the CMOS (nonvolatile RAM) where the coreboot
parameters are stored.

For information about coreboot, see http://www.coreboot.org/.

Ideas for Future Improvements
-----------------------------
1.  Move the core functionality of this program into a shared library.
2.  Consider adding options for displaying other BIOS-provided information
    such as the MP table, ACPI table, PCI IRQ routing table, etc.