summaryrefslogtreecommitdiff
path: root/src/mainboard/google/beltino
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2021-04-19 13:14:24 -0500
committerPatrick Georgi <pgeorgi@google.com>2021-04-21 09:12:31 +0000
commitd1b3f241b1038c30c0cf55178ab4d641b98c4639 (patch)
treef76e913e5944a95cbf02ba7cf5954d1a067273e4 /src/mainboard/google/beltino
parent82c9b703eaf30d7a69e0a49b602a513e8c1758e0 (diff)
downloadcoreboot-d1b3f241b1038c30c0cf55178ab4d641b98c4639.tar.xz
mb/google/*: allow LAN MAC to be read from VPD w/o ChromeOS
Condition use of RO_VPD for LAN MAC address on CONFIG_VPD rather than CONFIG_CHROMEOS. Test: build/boot google/{beltino,jecht} with RO_VPD propagated from stock firmware, verify MAC address set correctly. Change-Id: I1606fe1936ccee6e03dee145901767c8e73bfe2d Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/52517 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/beltino')
-rw-r--r--src/mainboard/google/beltino/lan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/beltino/lan.c b/src/mainboard/google/beltino/lan.c
index d9df5a1404..1104ea7e13 100644
--- a/src/mainboard/google/beltino/lan.c
+++ b/src/mainboard/google/beltino/lan.c
@@ -100,7 +100,7 @@ static void program_mac_address(u16 io_base)
u32 high_dword = 0xD0BA00A0; /* high dword of mac address */
u32 low_dword = 0x0000AD0B; /* low word of mac address as a dword */
- if (CONFIG(CHROMEOS)) {
+ if (CONFIG(VPD)) {
struct region_device rdev;
if (fmap_locate_area_as_rdev("RO_VPD", &rdev) == 0) {