coreboot-kgpe-d16/util/nvramtool
Patrick Georgi 02363b5e46 treewide: Move "is part of the coreboot project" line in its own comment
That makes it easier to identify "license only" headers (because they
are now license only)

Script line used for that:
  perl -i -p0e 's|/\*.*\n.*This file is part of the coreboot project.*\n.*\*|/* This file is part of the coreboot project. */\n/*|' # ...filelist...

Change-Id: I2280b19972e37c36d8c67a67e0320296567fa4f6
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41065
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: David Hendricks <david.hendricks@gmail.com>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
2020-05-06 22:20:28 +00:00
..
accessors
cli treewide: Capitalize 'CMOS' 2020-02-24 14:10:00 +00:00
COPYING
ChangeLog
DISCLAIMER
Makefile
Makefile.inc
README
cbfs.c treewide: Move "is part of the coreboot project" line in its own comment 2020-05-06 22:20:28 +00:00
cbfs.h treewide: Move "is part of the coreboot project" line in its own comment 2020-05-06 22:20:28 +00:00
cmos_lowlevel.c util/nvramtool: Remove 2nd initialization 2020-04-10 11:56:13 +00:00
cmos_lowlevel.h
cmos_ops.c
cmos_ops.h
common.c util/nvramtool: fix building on OpenBSD 2020-03-10 20:23:39 +00:00
common.h util/nvramtool: fix building on OpenBSD 2020-03-10 20:23:39 +00:00
compute_ip_checksum.c
coreboot_tables.h
description.md
hexdump.c
hexdump.h
input_file.c
input_file.h
ip_checksum.h
layout.c treewide: Capitalize 'CMOS' 2020-02-24 14:10:00 +00:00
layout.h
lbtable.c
lbtable.h
nvramtool.spec
reg_expr.c
reg_expr.h
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.