diff options
author | Wisley Chen <wisley.chen@quantatw.com> | 2019-12-20 13:06:43 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-12-27 08:58:55 +0000 |
commit | 12b1d7df70f8b73de250727fdfd81f2b2cea54a9 (patch) | |
tree | 1629a3afcef30de8df81ffd06ae9cd64f461b5dd /src/mainboard/google/hatch | |
parent | 0d9fb55ae2e9e7d83bcfbcec70e5e3e1f58a62ca (diff) | |
download | coreboot-12b1d7df70f8b73de250727fdfd81f2b2cea54a9.tar.xz |
mb/google/hatch/var/dratini: Add a new sku for dragonair
Add a new sku for dragonair
BUG=b:146504217
TEST=emerge-hatch coreboot
Change-Id: I4492d65f35d3583df1606c5f2901228b3ae14e4a
Signed-off-by: Wisley Chen <wisley.chen@quantatw.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37864
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src/mainboard/google/hatch')
-rw-r--r-- | src/mainboard/google/hatch/variants/dratini/include/variant/sku.h | 7 | ||||
-rw-r--r-- | src/mainboard/google/hatch/variants/dratini/variant.c | 1 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/mainboard/google/hatch/variants/dratini/include/variant/sku.h b/src/mainboard/google/hatch/variants/dratini/include/variant/sku.h index e36d335c1f..a9a50e499a 100644 --- a/src/mainboard/google/hatch/variants/dratini/include/variant/sku.h +++ b/src/mainboard/google/hatch/variants/dratini/include/variant/sku.h @@ -17,9 +17,10 @@ #define __MAINBOARD_SKU_H__ enum { - SKU_21_DRAGONAIR = 21, /* TS + FPS + Stylus */ - SKU_22_DRAGONAIR = 22, /* TS + KB_BL + FPS + Stylus */ - SKU_23_DRAGONAIR = 23, /* TS + Stylus */ + SKU_21_DRAGONAIR = 21, + SKU_22_DRAGONAIR = 22, + SKU_23_DRAGONAIR = 23, + SKU_24_DRAGONAIR = 24, }; #endif /* __MAINBOARD_SKU_H__ */ diff --git a/src/mainboard/google/hatch/variants/dratini/variant.c b/src/mainboard/google/hatch/variants/dratini/variant.c index 3a00385d1d..3a51a55bd4 100644 --- a/src/mainboard/google/hatch/variants/dratini/variant.c +++ b/src/mainboard/google/hatch/variants/dratini/variant.c @@ -26,6 +26,7 @@ const char *get_wifi_sar_cbfs_filename(void) case SKU_21_DRAGONAIR: case SKU_22_DRAGONAIR: case SKU_23_DRAGONAIR: + case SKU_24_DRAGONAIR: filename = "wifi_sar-dragonair.hex"; break; } |