aboutsummaryrefslogtreecommitdiffstats
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 @@
+from django.core.management.base import NoArgsCommand, CommandError
+from django.db import transaction
+from orm.models import Build
+from bldcontrol.bbcontroller import getBuildEnvironmentController, ShellCmdException
+from bldcontrol.models import BuildRequest, BuildEnvironment
+import os
+
+class Command(NoArgsCommand):
+ args = ""
+ help = "Verifies thid %dthe configured settings are valid and usable, or prompts the user to fix the settings."
+
+ def handle(self, **options):
+ # we make sure we have builddir and sourcedir for all defined build envionments
+ for be in BuildEnvironment.objects.all():
+ def _verify_be():
+ is_changed = False
+ print("Verifying the Build Environment type %s id %d." % (be.get_betype_display(), be.pk))
+ if len(be.sourcedir) == 0:
+ be.sourcedir = raw_input(" -- sourcedir may not be empty:")
+ is_changed = True
+ if not be.sourcedir.startswith("/"):
+ be.sourcedir = raw_input(" -- sourcedir must be an absolute path:")
+ is_changed = True
+ if len(be.builddir) == 0:
+ be.builddir = raw_input(" -- builddir may not be empty:")
+ is_changed = True
+ if not be.builddir.startswith("/"):
+ be.builddir = raw_input(" -- builddir must be an absolute path:")
+ is_changed = True
+ return is_changed
+
+ while (_verify_be()):
+ pass