diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2021-04-19 13:14:24 -0500 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-04-21 09:12:31 +0000 |
commit | d1b3f241b1038c30c0cf55178ab4d641b98c4639 (patch) | |
tree | f76e913e5944a95cbf02ba7cf5954d1a067273e4 /src/mainboard/google/auron | |
parent | 82c9b703eaf30d7a69e0a49b602a513e8c1758e0 (diff) |
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/auron')
-rw-r--r-- | src/mainboard/google/auron/variants/buddy/variant.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/auron/variants/buddy/variant.c b/src/mainboard/google/auron/variants/buddy/variant.c index 2ffc38a185..397b54193a 100644 --- a/src/mainboard/google/auron/variants/buddy/variant.c +++ b/src/mainboard/google/auron/variants/buddy/variant.c @@ -119,7 +119,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) { |