mb/google/octopus: Re-assign sku number for vortininja
Re-assign sku number for vortininja. BuG=b:138177049 BRANCH=octopus TEST=emerge-octopus coreboot Change-Id: I3166a635151fcc7b2e3c0122fa05925cfa5df7d0 Signed-off-by: Wisley Chen <wisley.chen@quantatw.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35065 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marco Chen <marcochen@google.com> Reviewed-by: Justin TerAvest <teravest@chromium.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
parent
85bb874c9c
commit
37ba3d1cf5
|
@ -17,14 +17,15 @@
|
|||
#define __MAINBOARD_SKU_H__
|
||||
|
||||
enum {
|
||||
SKU_4_VORTININJA = 4, /* Stylus + rear camera */
|
||||
SKU_5_VORTININJA = 5, /* Stylus + no rear camera */
|
||||
SKU_6_VORTININJA = 6, /* no Stylus + rear camera */
|
||||
SKU_7_VORTININJA = 7, /* no Stylus + no rear camera */
|
||||
SKU_33_DORP = 33, /* HDMI */
|
||||
SKU_34_DORP = 34, /* HDMI+Kblight */
|
||||
SKU_35_DORP = 35, /* HDMI+TS */
|
||||
SKU_36_DORP = 36, /* HDMI+TS+KBlight */
|
||||
SKU_49_VORTININJA = 49, /* Stylus + rear camera */
|
||||
SKU_50_VORTININJA = 50, /* Stylus + no rear camera */
|
||||
SKU_51_VORTININJA = 51, /* no Stylus + rear camera */
|
||||
SKU_52_VORTININJA = 52, /* no Stylus + no rear camera */
|
||||
|
||||
};
|
||||
|
||||
#endif /* __MAINBOARD_SKU_H__ */
|
||||
|
|
|
@ -25,10 +25,10 @@ const char *get_wifi_sar_cbfs_filename(void)
|
|||
uint32_t sku_id = get_board_sku();
|
||||
|
||||
switch (sku_id) {
|
||||
case SKU_4_VORTININJA:
|
||||
case SKU_5_VORTININJA:
|
||||
case SKU_6_VORTININJA:
|
||||
case SKU_7_VORTININJA:
|
||||
case SKU_49_VORTININJA:
|
||||
case SKU_50_VORTININJA:
|
||||
case SKU_51_VORTININJA:
|
||||
case SKU_52_VORTININJA:
|
||||
filename = "wifi_sar-vortininja.hex";
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue