mb/google/dedede/var/boten: Modify Wifi-SAR sku condition
Due to new sku id apply for AMP ALC1015Q-VB. Modify correct WIFI-SAR detect condition for boten/botenflex sku. BUG=b:186174768 TEST=build and test on boten/botenflex Change-Id: I0a4fb08e558fee26534564aa5e37cac814c5a98a Signed-off-by: stanley.wu <stanley1.wu@lcfc.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55112 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
This commit is contained in:
parent
5aa511931f
commit
6142a989a1
|
@ -30,7 +30,7 @@ const char *get_wifi_sar_cbfs_filename(void)
|
||||||
{
|
{
|
||||||
uint32_t sku_id = google_chromeec_get_board_sku();
|
uint32_t sku_id = google_chromeec_get_board_sku();
|
||||||
|
|
||||||
if (sku_id == SKU_ID_BOTENFLEX)
|
if (sku_id >= SKU_ID_BOTENFLEX)
|
||||||
return "wifi_sar-botenflex.hex";
|
return "wifi_sar-botenflex.hex";
|
||||||
|
|
||||||
return "wifi_sar-boten.hex";
|
return "wifi_sar-boten.hex";
|
||||||
|
|
Loading…
Reference in New Issue