mb/google/octopus: Add a new sku for meep

Add a new sku4 for meep:
sku4: Stylus + no rear camera

BUG=b:140360096
TEST=emerge-octopus coreboot

Change-Id: Icde7f032c0acf7562b5d5f2c6a8b0c2de91c45b2
Signed-off-by: Wisley Chen <wisley.chen@quantatw.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35300
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Justin TerAvest <teravest@chromium.org>
This commit is contained in:
Wisley Chen 2019-09-09 13:55:41 +08:00 committed by Patrick Georgi
parent 632283092c
commit 188f64172b
2 changed files with 5 additions and 3 deletions

View File

@ -17,9 +17,10 @@
#define __MAINBOARD_SKU_H__
enum {
SKU_1_MEEP = 1,
SKU_2_MEEP = 2,
SKU_3_MEEP = 3,
SKU_1_MEEP = 1, /* Stylus + rear camera*/
SKU_2_MEEP = 2, /* no Stylus + rear camera */
SKU_3_MEEP = 3, /* no Stylus + no rear camera */
SKU_4_MEEP = 4, /* Stylus + no rear camera */
SKU_33_DORP = 33, /* HDMI */
SKU_34_DORP = 34, /* HDMI+Kblight */
SKU_35_DORP = 35, /* HDMI+TS */

View File

@ -28,6 +28,7 @@ const char *get_wifi_sar_cbfs_filename(void)
case SKU_1_MEEP:
case SKU_2_MEEP:
case SKU_3_MEEP:
case SKU_4_MEEP:
filename = "wifi_sar-meep.hex";
break;
case SKU_49_VORTININJA: