diff options
author | Michael Wood <michael.g.wood@intel.com> | 2016-10-05 17:08:51 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-06 11:41:48 +0100 |
commit | 5e9b40556713dc41090497f3c3d9c6a8d6b83b59 (patch) | |
tree | ee421e8e2c3236c161529ab1c795832d87a8d5e4 /bitbake/lib/toaster | |
parent | 25ea0b625dd8dc8c5a19beb42d3aefce3501b3e2 (diff) | |
download | poky-5e9b40556713dc41090497f3c3d9c6a8d6b83b59.tar.gz |
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 <michael.g.wood@intel.com>
Signed-off-by: bavery <brian.avery@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster')
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py | 2 |
1 files changed, 0 insertions, 2 deletions
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): | |||
42 | return True | 42 | return True |
43 | 43 | ||
44 | if len(be.sourcedir) == 0: | 44 | if len(be.sourcedir) == 0: |
45 | print("\n -- Validation: The layers checkout directory must be set.") | ||
46 | is_changed = _update_sourcedir() | 45 | is_changed = _update_sourcedir() |
47 | 46 | ||
48 | if not be.sourcedir.startswith("/"): | 47 | if not be.sourcedir.startswith("/"): |
@@ -59,7 +58,6 @@ class Command(NoArgsCommand): | |||
59 | return True | 58 | return True |
60 | 59 | ||
61 | if len(be.builddir) == 0: | 60 | if len(be.builddir) == 0: |
62 | print("\n -- Validation: The build directory must be set.") | ||
63 | is_changed = _update_builddir() | 61 | is_changed = _update_builddir() |
64 | 62 | ||
65 | if not be.builddir.startswith("/"): | 63 | if not be.builddir.startswith("/"): |