Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
accessors/ | H | 25-Apr-2025 | - | 1,816 | 1,231 | |
cli/ | H | 25-Apr-2025 | - | 1,416 | 990 | |
.gitignore | H A D | 25-Apr-2025 | 10 | 2 | 1 | |
COPYING | H A D | 25-Apr-2025 | 17.6 KiB | 340 | 281 | |
ChangeLog | H A D | 25-Apr-2025 | 3.7 KiB | 141 | 83 | |
DISCLAIMER | H A D | 25-Apr-2025 | 2.5 KiB | 56 | 43 | |
Makefile | H A D | 25-Apr-2025 | 1.4 KiB | 60 | 37 | |
Makefile.mk | H A D | 25-Apr-2025 | 1.5 KiB | 40 | 25 | |
README | H A D | 25-Apr-2025 | 895 | 20 | 16 | |
cbfs.c | H A D | 25-Apr-2025 | 3.1 KiB | 135 | 110 | |
cbfs.h | H A D | 25-Apr-2025 | 3.5 KiB | 137 | 75 | |
cmos_lowlevel.c | H A D | 25-Apr-2025 | 10.7 KiB | 329 | 186 | |
cmos_lowlevel.h | H A D | 25-Apr-2025 | 1.5 KiB | 47 | 30 | |
cmos_ops.c | H A D | 25-Apr-2025 | 5.6 KiB | 213 | 118 | |
cmos_ops.h | H A D | 25-Apr-2025 | 799 | 25 | 18 | |
common.c | H A D | 25-Apr-2025 | 3.3 KiB | 85 | 53 | |
common.h | H A D | 25-Apr-2025 | 1.4 KiB | 65 | 45 | |
compute_ip_checksum.c | H A D | 25-Apr-2025 | 1.1 KiB | 45 | 28 | |
coreboot_tables.h | H A D | 25-Apr-2025 | 6.6 KiB | 209 | 118 | |
description.md | H A D | 25-Apr-2025 | 107 | 3 | 2 | |
hexdump.c | H A D | 25-Apr-2025 | 4.1 KiB | 147 | 71 | |
hexdump.h | H A D | 25-Apr-2025 | 2.8 KiB | 66 | 17 | |
input_file.c | H A D | 25-Apr-2025 | 7.5 KiB | 268 | 174 | |
input_file.h | H A D | 25-Apr-2025 | 731 | 30 | 16 | |
ip_checksum.h | H A D | 25-Apr-2025 | 567 | 17 | 4 | |
layout.c | H A D | 25-Apr-2025 | 15.3 KiB | 515 | 263 | |
layout.h | H A D | 25-Apr-2025 | 2.8 KiB | 83 | 59 | |
lbtable.c | H A D | 25-Apr-2025 | 25.9 KiB | 865 | 565 | |
lbtable.h | H A D | 25-Apr-2025 | 409 | 18 | 12 | |
nvramtool.spec | H A D | 25-Apr-2025 | 1.1 KiB | 49 | 36 | |
reg_expr.c | H A D | 25-Apr-2025 | 651 | 24 | 14 | |
reg_expr.h | H A D | 25-Apr-2025 | 219 | 12 | 6 | |
win32mmap.c | H A D | 25-Apr-2025 | 1.1 KiB | 50 | 38 |
README
1Summary of Operation 2-------------------- 3nvramtool is a utility for reading/writing coreboot parameters and 4displaying information from the coreboot table. It is intended for x86-based 5systems (both 32-bit and 64-bit) that use coreboot. 6 7The coreboot table resides in low physical memory, and may be accessed 8through the /dev/mem interface. It is created at boot time by coreboot, and 9contains various system information such as the type of mainboard in use. It 10specifies locations in the CMOS (nonvolatile RAM) where the coreboot 11parameters are stored. 12 13For information about coreboot, see https://www.coreboot.org/. 14 15Ideas for Future Improvements 16----------------------------- 171. Move the core functionality of this program into a shared library. 182. Consider adding options for displaying other BIOS-provided information 19 such as the MP table, ACPI table, PCI IRQ routing table, etc. 20