Lines Matching full:overrides
188 default_overrides = d.getVar('OVERRIDES').split(':')
190 # First, we may have some overrides that are referred to in the recipe set in
196 # Some overrides are active in the current configuration, so
197 # we need to create a branch where none of the overrides are active
198 bb.process.run('git checkout %s -b devtool-no-overrides' % initial_rev, cwd=srcsubdir)
201 localdata.setVar('OVERRIDES', ':'.join(no_overrides))
205 # Now we need to reconcile the dev branch with the no-overrides one
208 bb.process.run('git rebase devtool-no-overrides', cwd=srcsubdir)
210 bb.process.run('git checkout %s -b devtool-no-overrides' % devbranch, cwd=srcsubdir)
220 localdata.setVar('OVERRIDES', ':'.join(no_overrides + [override]))
224 # Now we need to reconcile the new branch with the no-overrides one
226 bb.process.run('git rebase devtool-no-overrides', cwd=srcsubdir)