diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2011-04-26 22:26:11 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2011-04-26 22:26:11 -0700 |
| commit | f4440e19eedba361b33cd07f91aca14a0e07bf8e (patch) | |
| tree | 3b5361dabc0de3f17fd33bced3470af94a00fa7f /com32/include/syslinux | |
| parent | 0495db537adacc47e69047204b3385e6b9581942 (diff) | |
| download | syslinux-f4440e19eedba361b33cd07f91aca14a0e07bf8e.tar.gz | |
dmi: separate the SYS* and MB* defines as their own strings
Collect both the SYS* and MB* strings; it is too common the SYS* ones
contain bogus but non-empty information, and the total amount of data
isn't all that huge.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/include/syslinux')
| -rw-r--r-- | com32/include/syslinux/sysappend.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/com32/include/syslinux/sysappend.h b/com32/include/syslinux/sysappend.h index 8eb0916a..c2a4c530 100644 --- a/com32/include/syslinux/sysappend.h +++ b/com32/include/syslinux/sysappend.h @@ -38,13 +38,17 @@ enum syslinux_sysappend { SYSAPPEND_IP, /* PXELINUX: ip= address */ SYSAPPEND_BOOTIF, /* PXELINUX: BOOTIF= address */ SYSAPPEND_SYSUUID, /* System UUID from PXE or DMI */ - SYSAPPEND_VENDOR, /* System or MB vendor from DMI */ - SYSAPPEND_PRODUCT, /* System or MB product from DMI */ - SYSAPPEND_VERSION, /* System or MB version from DMI */ - SYSAPPEND_SERIAL, /* System or MB serial from DMI */ - SYSAPPEND_SKU, /* System SKU from DMI */ - SYSAPPEND_FAMILY, /* System family from DMI */ - SYSAPPEND_ASSET, /* MB asset tag from DMI */ + SYSAPPEND_SYSVENDOR, /* System or MB vendor from DMI */ + SYSAPPEND_SYSPRODUCT, /* System or MB product from DMI */ + SYSAPPEND_SYSVERSION, /* System or MB version from DMI */ + SYSAPPEND_SYSSERIAL, /* System or MB serial from DMI */ + SYSAPPEND_SYSSKU, /* System SKU from DMI */ + SYSAPPEND_SYSFAMILY, /* System family from DMI */ + SYSAPPEND_MBVENDOR, /* System or MB vendor from DMI */ + SYSAPPEND_MBPRODUCT, /* System or MB product from DMI */ + SYSAPPEND_MBVERSION, /* System or MB version from DMI */ + SYSAPPEND_MBSERIAL, /* System or MB serial from DMI */ + SYSAPPEND_MBASSET, /* MB asset tag from DMI */ SYSAPPEND_MAX /* Total number of strings */ }; |
