From 5e9b40556713dc41090497f3c3d9c6a8d6b83b59 Mon Sep 17 00:00:00 2001 From: Michael Wood Date: Wed, 5 Oct 2016 17:08:51 -0700 Subject: bitbake: toaster: checksettings Remove confusing startup messages These "validation" messages are shown regardless as to whether the settings are being correctly set or not. For the time being remove them. [YOCTO #9097] (Bitbake rev: c57f20f9cd7cb4ea4d285291a1e71e5df7152799) Signed-off-by: Michael Wood Signed-off-by: bavery Signed-off-by: Richard Purdie --- bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'bitbake') diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py index 28b9945e8a..2ed994f61f 100644 --- a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py +++ b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py @@ -42,7 +42,6 @@ class Command(NoArgsCommand): return True if len(be.sourcedir) == 0: - print("\n -- Validation: The layers checkout directory must be set.") is_changed = _update_sourcedir() if not be.sourcedir.startswith("/"): @@ -59,7 +58,6 @@ class Command(NoArgsCommand): return True if len(be.builddir) == 0: - print("\n -- Validation: The build directory must be set.") is_changed = _update_builddir() if not be.builddir.startswith("/"): -- cgit 1.2.3-korg