Shon Wang has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/67400 )
Change subject: mb/google/dedede/var/drawcia: corrected return file for oscino ......................................................................
mb/google/dedede/var/drawcia: corrected return file for oscino
Oscino need itself wifi sar table on non-tablemode so corrected retn file
BUG=b:240373077 BRANCH=dedede TEST=enable CHROMEOS_WIFI_SAR in config of coreboot, emerge-dedede coreboot-private-files-baseboard-dedede coreboot chromeos-bootimage.
Change-Id: I1d77f4986aab489b618d3bd6ecfbe63d07359cf6 --- M src/mainboard/google/dedede/variants/drawcia/variant.c 1 file changed, 23 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/00/67400/1
diff --git a/src/mainboard/google/dedede/variants/drawcia/variant.c b/src/mainboard/google/dedede/variants/drawcia/variant.c index 9077bae..7b470fc 100644 --- a/src/mainboard/google/dedede/variants/drawcia/variant.c +++ b/src/mainboard/google/dedede/variants/drawcia/variant.c @@ -26,6 +26,9 @@ return "wifi_sar-drawcia.hex"; }
+ else if (sku_id >= OSCINO_SKU_START && sku_id <= OSCINO_SKU_END) + return "wifi_sar-oscino.hex"; + return WIFI_SAR_CBFS_DEFAULT_FILENAME; }