coreboot-kgpe-d16/util/nvramtool
Patrick Georgi ea063cb975 AUTHORS, util/: Drop individual copyright notices
We have the git history which is a more reliable librarian.

Change-Id: Idbcc5ceeb33804204e56d62491cb58146f7c9f37
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41175
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: ron minnich <rminnich@gmail.com>
2020-05-09 21:21:32 +00:00
..
accessors AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
cli AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
COPYING
ChangeLog
DISCLAIMER
Makefile util/*/Makefile: Rename -W to -Wextra 2019-07-23 09:10:47 +00:00
Makefile.inc util/nvramtool: Create nvramtool object directories earlier 2020-01-20 14:31:29 +00:00
README
cbfs.c AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
cbfs.h AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
cmos_lowlevel.c AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
cmos_lowlevel.h AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
cmos_ops.c AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
cmos_ops.h AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
common.c AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
common.h AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
compute_ip_checksum.c
coreboot_tables.h util/nvramtool: Fix typos & remove unneeded whitespace 2018-08-27 22:41:57 +00:00
description.md util: Add description.md to each util 2018-07-26 13:26:50 +00:00
hexdump.c AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
hexdump.h AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
input_file.c AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
input_file.h AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
ip_checksum.h
layout.c AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
layout.h AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
lbtable.c AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
lbtable.h AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
nvramtool.spec
reg_expr.c AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
reg_expr.h AUTHORS, util/: Drop individual copyright notices 2020-05-09 21:21:32 +00:00
win32mmap.c

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 https://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.