summaryrefslogtreecommitdiff
path: root/board/garg/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/garg/board.c')
-rw-r--r--board/garg/board.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/board/garg/board.c b/board/garg/board.c
index 8eaa10034d..5ff0a72be6 100644
--- a/board/garg/board.c
+++ b/board/garg/board.c
@@ -229,8 +229,11 @@ unsigned int motion_sensor_count = ARRAY_SIZE(motion_sensors);
static int board_is_convertible(void)
{
- /* Garg: TBD */
- return sku_id == 255;
+ /*
+ * Garg360: 37
+ * Unprovisioned: 255
+ */
+ return sku_id == 37 || sku_id == 255;
}
static int board_with_ar_cam(void)