summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-06-12 23:01:59 +0100
committerLeah Rowe <leah@libreboot.org>2023-06-12 23:02:30 +0100
commit7ca9b98766765764862e275d3498d9c0ce84325a (patch)
tree8163936e84e6b101b96b549d92a89cef4240b7a7 /util
parente75dafa47563beb0c6764702d8074377e6a5b783 (diff)
util/ich9gen: change default mac address
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util')
-rw-r--r--util/ich9utils/src/ich9gen/mkgbe.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/ich9utils/src/ich9gen/mkgbe.c b/util/ich9utils/src/ich9gen/mkgbe.c
index 1653265..500ca2b 100644
--- a/util/ich9utils/src/ich9gen/mkgbe.c
+++ b/util/ich9utils/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;