mirror of
https://git.yoctoproject.org/poky
synced 2026-04-15 12:32:13 +02:00
bitbake: toaster: add 'bblayers.conf' files to local config filter
In the variables table, add to the local configuration filter the 'bblayers.conf' in addition to the 'local.conf' files. [YOCTO #5912] (Bitbake rev: 3c41481fd00056712348d305d0246d84e9a2ff0a) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
324791a729
commit
7af7e852ea
@@ -795,6 +795,8 @@ def configvars(request, build_id):
|
||||
file_filter= search_term + ":"
|
||||
if filter_string.find('conf/local.conf') > 0:
|
||||
file_filter += 'conf/local.conf'
|
||||
if filter_string.find('conf/bblayers.conf') > 0:
|
||||
file_filter += 'conf/bblayers.conf'
|
||||
if filter_string.find('conf/machine/') > 0:
|
||||
file_filter += 'conf/machine/'
|
||||
if filter_string.find('conf/distro/') > 0:
|
||||
@@ -833,7 +835,7 @@ def configvars(request, build_id):
|
||||
'class' : 'vhistory__file_name',
|
||||
'label': 'Show:',
|
||||
'options' : [
|
||||
('Local configuration variables', 'vhistory__file_name__contains:conf/local.conf'),
|
||||
('Local configuration variables', 'vhistory__file_name__regex:conf/(local|bblayers).conf'),
|
||||
('Machine configuration variables', 'vhistory__file_name__contains:conf/machine/'),
|
||||
('Distro configuration variables', 'vhistory__file_name__contains:conf/distro/'),
|
||||
('Layer configuration variables', 'vhistory__file_name__contains:conf/layer.conf'),
|
||||
|
||||
Reference in New Issue
Block a user