• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2017 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""FAFT configuration overrides for Poppy."""
6
7
8class Values(object):
9    """FAFT config values for Poppy."""
10
11    mode_switcher_type = 'tablet_detachable_switcher'
12    fw_bypasser_type = 'tablet_detachable_bypasser'
13
14    confirm_screen = 1
15
16    firmware_screen = 15
17
18    has_lid = True
19
20    usb_image_boot_timeout = 60
21
22    has_keyboard = False
23
24    chrome_ec = True
25    ec_capability = ['x86', 'battery', 'charging', 'lid']
26
27    smm_store = False
28