summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraarapov <aarapov>2012-03-12 07:49:07 +0000
committeraarapov <aarapov>2012-03-12 07:49:07 +0000
commitdafe75c63879ff89b049db52a46a7eddd3ad2d72 (patch)
tree1ff7f5aa1db19de4fbe3870a9ed268a6152d6af6
parent685fd0e6661c50abb37ba2bee42930629f834c5c (diff)
downloaddmidecode-dafe75c63879ff89b049db52a46a7eddd3ad2d72.tar.gz
dmioem.c: Add "PXE" to HP OEM Type 209 record output
-rw-r--r--AUTHORS1
-rw-r--r--CHANGELOG5
-rw-r--r--dmioem.c2
3 files changed, 7 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index b298fb3..b25c9ba 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -83,3 +83,4 @@ Lars Mueller
Thomas Mingarelli
Andrey Matveyev
Stefan Tauner
+Naga Chumbalkar
diff --git a/CHANGELOG b/CHANGELOG
index c85dec4..0de927c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,8 @@
+2012-03-12 Anton Arapov <anton@redhat.com>
+
+ * dmioem.c: Add "PXE" to the HP OEM Type 209 output so it is similar to
+ the "iSCSI" description in HP OEM Type 221. Patch from Naga Chumbalkar.
+
2011-11-18 Jean Delvare <khali@linux-fr.org>
* dmidecode.c: Properly print the hexadecimal value of invalid
diff --git a/dmioem.c b/dmioem.c
index 2dd11c7..a2b5a68 100644
--- a/dmioem.c
+++ b/dmioem.c
@@ -83,7 +83,7 @@ static int dmi_decode_hp(const struct dmi_header *h)
*/
printf(h->type == 221 ?
"HP BIOS iSCSI NIC PCI and MAC Information\n" :
- "HP BIOS NIC PCI and MAC Information\n");
+ "HP BIOS PXE NIC PCI and MAC Information\n");
nic = 1;
ptr = 4;
while (h->length >= ptr + 8)