summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/views.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-12-08 15:03:21 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-12-09 10:04:12 +0000
commit4d14176aa69d5e39a3cef01f6741ac0f2a2080ee (patch)
treeae82a8f9a5c749416c4ea963a5c76d27227de4d4 /bitbake/lib/toaster/toastergui/views.py
parente70f491b7eb2df47be7f9fe919704b5e32b626e5 (diff)
downloadpoky-4d14176aa69d5e39a3cef01f6741ac0f2a2080ee.tar.gz
bitbake: toaster: Update to use qemux86-64 machine by default
Toaster currently uses qemux86 as the default, update to match the local.conf default changes, i.e. qemux86-64. (Bitbake rev: 27fbba9ee15994a69284a7f8579c22d85e0ce863) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/views.py')
-rw-r--r--bitbake/lib/toaster/toastergui/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index cc8517ba6c..735d304ad8 100644
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -1610,7 +1610,7 @@ if True:
1610 # make sure we have a machine set for this project 1610 # make sure we have a machine set for this project
1611 ProjectVariable.objects.get_or_create(project=new_project, 1611 ProjectVariable.objects.get_or_create(project=new_project,
1612 name="MACHINE", 1612 name="MACHINE",
1613 value="qemux86") 1613 value="qemux86-64")
1614 context = {'project': new_project} 1614 context = {'project': new_project}
1615 return toaster_render(request, "js-unit-tests.html", context) 1615 return toaster_render(request, "js-unit-tests.html", context)
1616 1616