From e1a5d8150032b884bd85fcb20de14cd14cfd2b92 Mon Sep 17 00:00:00 2001 From: Dave Lerner Date: Wed, 11 Mar 2015 15:05:08 -0500 Subject: bitbake: toaster: layer-relative paths for config files Change bitbake variables table to show the path to the file in which the variable was defined using a layer-relative path instead of the full path to the file. The layer-relative path is found by matching on the full defining file path with entries in a list of layer names, sorted in descending order, and with 'meta' appended as a built-in layer to the end of the list. Additional filters are used to reduce false matches, although even if there is a false match, the actual path to the defining file will be obvious and not misleading. [YOCTO #7414] (Bitbake rev: ef6e854a50ea6894b0e320025280431a6fc8a9a5) Signed-off-by: Dave Lerner Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/templates/configvars.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bitbake/lib/toaster/toastergui/templates') diff --git a/bitbake/lib/toaster/toastergui/templates/configvars.html b/bitbake/lib/toaster/toastergui/templates/configvars.html index 1bd29aac0d..3e4c7e85ea 100644 --- a/bitbake/lib/toaster/toastergui/templates/configvars.html +++ b/bitbake/lib/toaster/toastergui/templates/configvars.html @@ -55,7 +55,7 @@ {{variable.variable_value|truncatechars:153}} {% if variable.vhistory.all %} {% autoescape off %} - {{variable.vhistory.all | filter_setin_files:file_filter }} + {{variable.vhistory.all | filter_setin_files:file_filter | cut_layer_path_prefix:layer_names}} {% endautoescape %} {% endif %} @@ -115,7 +115,7 @@ {% for vh in variable.vhistory.all %} - {{forloop.counter}}{{vh.file_name}}{{vh.operation}}{{vh.line_number}} + {{forloop.counter}}{{vh.file_name|cut_layer_path_prefix:layer_names}}{{vh.operation}}{{vh.line_number}} {%endfor%} -- cgit v1.2.3-54-g00ecf