diff options
author | 4 of 7 (Leah Rowe) <info@minifree.org> | 2016-10-03 23:03:15 +0100 |
---|---|---|
committer | 4 of 7 (Leah Rowe) info@minifree.org <info@minifree.org> | 2017-01-22 02:10:52 +0000 |
commit | 70fa7f5750134b080814a9f44d1a78028aa4e4e0 (patch) | |
tree | bd415b193b913d49883e91d2dc16b86886ac4b53 /resources/utilities/ich9deblob/src | |
parent | 2cbb06bb7d284567542cccabd9e30c23b9048ddb (diff) | |
download | librebootfr-70fa7f5750134b080814a9f44d1a78028aa4e4e0.tar.gz librebootfr-70fa7f5750134b080814a9f44d1a78028aa4e4e0.zip |
ich9gen: change the default mac address to 00:DE:AD:C0:FF:EE
Diffstat (limited to 'resources/utilities/ich9deblob/src')
-rw-r--r-- | resources/utilities/ich9deblob/src/ich9gen/mkgbe.c | 10 |
1 files 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; |