summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/phaser/board.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/board/phaser/board.c b/board/phaser/board.c
index a06e86367c..94e58e4e0b 100644
--- a/board/phaser/board.c
+++ b/board/phaser/board.c
@@ -190,7 +190,8 @@ unsigned int motion_sensor_count = ARRAY_SIZE(motion_sensors);
static int board_is_convertible(void)
{
- return sku_id == 2 || sku_id == 3 || sku_id == 4 || sku_id == 255;
+ return sku_id == 2 || sku_id == 3 || sku_id == 4 || sku_id == 5 || \
+ sku_id == 255;
}
static void board_update_sensor_config_from_sku(void)