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.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py
new file mode 100644
index 0000000000..0e8260e6c9
--- /dev/null
+++ b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py
@@ -0,0 +1,33 @@
1from django.core.management.base import NoArgsCommand, CommandError
2from django.db import transaction
3from orm.models import Build
4from bldcontrol.bbcontroller import getBuildEnvironmentController, ShellCmdException
5from bldcontrol.models import BuildRequest, BuildEnvironment
6import os
7
8class Command(NoArgsCommand):
9 args = ""
10 help = "Verifies thid %dthe configured settings are valid and usable, or prompts the user to fix the settings."
11
12 def handle(self, **options):
13 # we make sure we have builddir and sourcedir for all defined build envionments
14 for be in BuildEnvironment.objects.all():
15 def _verify_be():
16 is_changed = False
17 print("Verifying the Build Environment type %s id %d." % (be.get_betype_display(), be.pk))
18 if len(be.sourcedir) == 0:
19 be.sourcedir = raw_input(" -- sourcedir may not be empty:")
20 is_changed = True
21 if not be.sourcedir.startswith("/"):
22 be.sourcedir = raw_input(" -- sourcedir must be an absolute path:")
23 is_changed = True
24 if len(be.builddir) == 0:
25 be.builddir = raw_input(" -- builddir may not be empty:")
26 is_changed = True
27 if not be.builddir.startswith("/"):
28 be.builddir = raw_input(" -- builddir must be an absolute path:")
29 is_changed = True
30 return is_changed
31
32 while (_verify_be()):
33 pass