summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py')
-rw-r--r--bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py
index 0dc55f63af..28b9945e8a 100644
--- a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py
+++ b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py
@@ -84,8 +84,9 @@ class Command(NoArgsCommand):
84 print("Loading OE-Core configuration") 84 print("Loading OE-Core configuration")
85 call_command("loaddata", "oe-core") 85 call_command("loaddata", "oe-core")
86 if template_conf: 86 if template_conf:
87 oe_core_path = os.realpath(template_conf + 87 oe_core_path = os.path.realpath(
88 "/../") 88 template_conf +
89 "/../")
89 else: 90 else:
90 print("TEMPLATECONF not found. You may have to" 91 print("TEMPLATECONF not found. You may have to"
91 " manually configure layer paths") 92 " manually configure layer paths")
@@ -94,8 +95,9 @@ class Command(NoArgsCommand):
94 "layer: ") 95 "layer: ")
95 # Update the layer instances of openemebedded-core 96 # Update the layer instances of openemebedded-core
96 for layer in Layer.objects.filter( 97 for layer in Layer.objects.filter(
97 name="openembedded-core"): 98 name="openembedded-core",
98 layer.local_source_dir = oe_core_path 99 local_source_dir="OE-CORE-LAYER-DIR"):
100 layer.local_path = oe_core_path
99 layer.save() 101 layer.save()
100 102
101 # Import the custom fixture if it's present 103 # Import the custom fixture if it's present