summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-06-07 22:21:01 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-06-07 22:21:01 (EDT)
commit94498a6694bd7155c2a63a30a3539b3c1c04ea1c (patch)
treeff5e78f9c9dd38c9e3995c843c6f0eae4105f66b
parentd50bcf94b4a681f0e75caddda9166d34ecd6c3c8 (diff)
patches: Apply upstream commit 31e10814
-rw-r--r--changelog2
-rw-r--r--patches/0001-ich9gen-change-the-default-mac-address-to-00-DE-AD-C.patch33
2 files changed, 35 insertions, 0 deletions
diff --git a/changelog b/changelog
index 1301673..4bb5b3e 100644
--- a/changelog
+++ b/changelog
@@ -1,6 +1,8 @@
ich9deblob (20160907-1) trunk
* New upstream version.
+ * Apply the following upstream commit as a patch:
+ - 31e10814 ich9gen: change the default mac address to 00:DE:AD:C0:FF:EE
* Update Maintainer and Homepage.
-- Patrick McDermott <patrick.mcdermott@libiquity.com> Fri, 07 Jun 2019 21:27:19 -0400
diff --git a/patches/0001-ich9gen-change-the-default-mac-address-to-00-DE-AD-C.patch b/patches/0001-ich9gen-change-the-default-mac-address-to-00-DE-AD-C.patch
new file mode 100644
index 0000000..c01f720
--- /dev/null
+++ b/patches/0001-ich9gen-change-the-default-mac-address-to-00-DE-AD-C.patch
@@ -0,0 +1,33 @@
+From 31e108145a1db472962a30a35e1f98e13a3f2be9 Mon Sep 17 00:00:00 2001
+From: Leah Rowe <info@minifree.org>
+Date: Mon, 3 Oct 2016 23:03:15 +0100
+Subject: [PATCH] ich9gen: change the default mac address to 00:DE:AD:C0:FF:EE
+
+---
+ resources/utilities/ich9deblob/src/ich9gen/mkgbe.c | 10 +++++-----
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/resources/utilities/ich9deblob/src/ich9gen/mkgbe.c b/resources/utilities/ich9deblob/src/ich9gen/mkgbe.c
+index bebe1ce1..d6865823 100644
+--- a/resources/utilities/ich9deblob/src/ich9gen/mkgbe.c
++++ b/resources/utilities/ich9deblob/src/ich9gen/mkgbe.c
+@@ -28,11 +28,11 @@ struct GBEREGIONRECORD_4K generatedGbeStruct4k()
+ /* MAC address (words 00h to 02h) */
+ /* see ../gbe/gbe.c */
+ gbeStruct4k.macAddress[0] = 0x00;
+- gbeStruct4k.macAddress[1] = 0xf5;
+- gbeStruct4k.macAddress[2] = 0xf0;
+- gbeStruct4k.macAddress[3] = 0x40;
+- gbeStruct4k.macAddress[4] = 0x71;
+- gbeStruct4k.macAddress[5] = 0xfe;
++ gbeStruct4k.macAddress[1] = 0xDE;
++ gbeStruct4k.macAddress[2] = 0xAD;
++ gbeStruct4k.macAddress[3] = 0xC0;
++ gbeStruct4k.macAddress[4] = 0xFF;
++ gbeStruct4k.macAddress[5] = 0xEE;
+
+ /* Word 03h (Reserved) */
+ gbeStruct4k.reservedWord03h.reserved1_0 = 0x00;
+--
+2.11.0
+