Home | History | Annotate | Download | only in site_utils

Lines Matching defs:DEFAULT

16 # Name of the default board. For boards that don't have stable version
17 # explicitly set, version for the default board will be used.
18 DEFAULT = 'DEFAULT'
30 # Set default to the global config value of CROS.stable_cros_version if
33 versions = {DEFAULT: global_config.global_config.get_config_value(
38 def get(board=DEFAULT, android=False):
41 @param board: Name of the board, default to value `DEFAULT`.
43 board. There is no default version that works for all
48 in afe_stable_versions table, DEFAULT will be used.
50 afe_stable_versions table does not have entry of board DEFAULT.
52 if board == DEFAULT and android:
57 if board == DEFAULT:
62 'ANDROID', 'stable_version_%s' % board, default=None)
64 return get(board=DEFAULT)
67 def set(version, board=DEFAULT):
71 @param board: Name of the board, default to value `DEFAULT`.