]> git.ipfire.org Git - people/ms/u-boot.git/blame - tools/buildman/bsettings.py
buildman: Add -F flag to retry failed builds
[people/ms/u-boot.git] / tools / buildman / bsettings.py
CommitLineData
fc3fe1c2
SG
1# Copyright (c) 2012 The Chromium OS Authors.
2#
1a459660 3# SPDX-License-Identifier: GPL-2.0+
fc3fe1c2
SG
4#
5
6import ConfigParser
7import os
8
9
10def Setup(fname=''):
11 """Set up the buildman settings module by reading config files
12
13 Args:
14 config_fname: Config filename to read ('' for default)
15 """
16 global settings
17 global config_fname
18
19 settings = ConfigParser.SafeConfigParser()
20 config_fname = fname
21 if config_fname == '':
22 config_fname = '%s/.buildman' % os.getenv('HOME')
23 if config_fname:
24 settings.read(config_fname)
25
26def GetItems(section):
27 """Get the items from a section of the config.
28
29 Args:
30 section: name of section to retrieve
31
32 Returns:
33 List of (name, value) tuples for the section
34 """
35 try:
36 return settings.items(section)
37 except ConfigParser.NoSectionError as e:
38 print e
fc3fe1c2
SG
39 return []
40 except:
41 raise