diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2016-11-25 15:28:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-30 15:48:09 +0000 |
commit | 1fce7ecbbb004a5ad82da3eef79cfd52b276708d (patch) | |
tree | dc19c8ecb8e0b04ba5eafd27a7679bb55585a868 /bitbake/lib/bb/monitordisk.py | |
parent | 1d0c124cdf0282b8d139063409e40982f0ec9888 (diff) | |
download | poky-1fce7ecbbb004a5ad82da3eef79cfd52b276708d.tar.gz |
bitbake: bitbake: remove True option to getVar calls
getVar() now defaults to expanding by default, thus remove the True
option from getVar() calls with a regex search and replace.
Search made with the following regex: getVar ?\(( ?[^,()]*), True\)
(Bitbake rev: 3b45c479de8640f92dd1d9f147b02e1eecfaadc8)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/monitordisk.py')
-rw-r--r-- | bitbake/lib/bb/monitordisk.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/monitordisk.py b/bitbake/lib/bb/monitordisk.py index 203c405044..dff57ad878 100644 --- a/bitbake/lib/bb/monitordisk.py +++ b/bitbake/lib/bb/monitordisk.py | |||
@@ -141,7 +141,7 @@ def getInterval(configuration): | |||
141 | spaceDefault = 50 * 1024 * 1024 | 141 | spaceDefault = 50 * 1024 * 1024 |
142 | inodeDefault = 5 * 1024 | 142 | inodeDefault = 5 * 1024 |
143 | 143 | ||
144 | interval = configuration.getVar("BB_DISKMON_WARNINTERVAL", True) | 144 | interval = configuration.getVar("BB_DISKMON_WARNINTERVAL") |
145 | if not interval: | 145 | if not interval: |
146 | return spaceDefault, inodeDefault | 146 | return spaceDefault, inodeDefault |
147 | else: | 147 | else: |
@@ -179,7 +179,7 @@ class diskMonitor: | |||
179 | self.enableMonitor = False | 179 | self.enableMonitor = False |
180 | self.configuration = configuration | 180 | self.configuration = configuration |
181 | 181 | ||
182 | BBDirs = configuration.getVar("BB_DISKMON_DIRS", True) or None | 182 | BBDirs = configuration.getVar("BB_DISKMON_DIRS") or None |
183 | if BBDirs: | 183 | if BBDirs: |
184 | self.devDict = getDiskData(BBDirs, configuration) | 184 | self.devDict = getDiskData(BBDirs, configuration) |
185 | if self.devDict: | 185 | if self.devDict: |