summaryrefslogtreecommitdiff
path: root/dmiopt.h
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2022-12-16 10:36:59 +0100
committerJean Delvare <jdelvare@suse.de>2022-12-16 10:36:59 +0100
commitc1a2520433a31294fe9a0ccb52136d048f2d76e6 (patch)
treee7f349e9bab7b2068ac91a2648deae4fdfab35f6 /dmiopt.h
parent67dc0b27d50e3986d5e7cd35ec25cc5901a2e9e9 (diff)
downloaddmidecode-git-c1a2520433a31294fe9a0ccb52136d048f2d76e6.tar.gz
dmidecode: Add a --no-quirks option
This new option is aimed at firmware developers to help them validate their work. When this option is used, quirks and fixups are disabled in dmidecode, which will dumbly decode everything found in the table even if it is known to be incorrect. Signed-off-by: Jean Delvare <jdelvare@suse.de>
Diffstat (limited to 'dmiopt.h')
-rw-r--r--dmiopt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/dmiopt.h b/dmiopt.h
index 2374637..62ffcbb 100644
--- a/dmiopt.h
+++ b/dmiopt.h
@@ -46,6 +46,7 @@ extern struct opt opt;
#define FLAG_DUMP_BIN (1 << 4)
#define FLAG_FROM_DUMP (1 << 5)
#define FLAG_NO_SYSFS (1 << 6)
+#define FLAG_NO_QUIRKS (1 << 7)
int parse_command_line(int argc, char * const argv[]);
void print_help(void);