summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)