Frank Chu has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/52565 )
Change subject: mb/google/dedede/var/galith: Support Wifi SAR for DVT phase ......................................................................
mb/google/dedede/var/galith: Support Wifi SAR for DVT phase
Support Wifi SAR under desktop mode Using convertible mode of fw config to decide to load custom wifi sar or not.
BUG=b:176206495 TEST=enable CHROMEOS_WIFI_SAR in config of coreboot, emerge-dedede coreboot-private-files-baseboard-dedede coreboot chromeos-bootimage.
Signed-off-by: FrankChu frank_chu@pegatron.corp-partner.google.com Change-Id: Ic9bb76c207ef033f81ecdd57849535b8ac8d13ae --- M src/mainboard/google/dedede/variants/galtic/variant.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/52565/1
diff --git a/src/mainboard/google/dedede/variants/galtic/variant.c b/src/mainboard/google/dedede/variants/galtic/variant.c index 92aa176..cb5f1d8 100644 --- a/src/mainboard/google/dedede/variants/galtic/variant.c +++ b/src/mainboard/google/dedede/variants/galtic/variant.c @@ -5,7 +5,7 @@
const char *get_wifi_sar_cbfs_filename(void) { - if (fw_config_probe(FW_CONFIG(TABLETMODE, TABLETMODE_ENABLED))) + if (fw_config_probe(FW_CONFIG(TABLETMODE, TABLETMODE_DISABLED))) return "wifi_sar-galtic.hex"; return WIFI_SAR_CBFS_DEFAULT_FILENAME; }