diff options
author | Randy Witt <randy.e.witt@linux.intel.com> | 2015-05-18 15:06:12 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-19 11:58:45 +0100 |
commit | 8b8859a8fee709a808b4cbb8ed126b8f7e1eafa9 (patch) | |
tree | 719be4f7610042f66dc2e5c10159543c586944fe /bitbake/bin | |
parent | 37c0b9852b85a08adf0cbd7da1c0ccd017bcee42 (diff) | |
download | poky-8b8859a8fee709a808b4cbb8ed126b8f7e1eafa9.tar.gz |
bitbake: toaster: Remove dependency on daemon application
The bitbake observer is now started using python subprocess. This should
allow for toaster to run without installing the "daemon" application.
[Yocto #7271]
(Bitbake rev: 1dd599ddfcdb547bee49bd7d86acddf64c675b42)
Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/toaster | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster index f5ee68ca25..18eba8ea07 100755 --- a/bitbake/bin/toaster +++ b/bitbake/bin/toaster | |||
@@ -183,11 +183,6 @@ if [ `basename \"$0\"` = `basename \"${SRCFILE}\"` ]; then | |||
183 | exit 1 | 183 | exit 1 |
184 | fi | 184 | fi |
185 | 185 | ||
186 | if ! which daemon >/dev/null 2>&1; then | ||
187 | echo -e "Failed dependency; toaster needs the 'daemon' program in order to be able to start builds'. Please install the 'daemon' program from your distribution repositories or http://www.libslack.org/daemon/" 1>&2 | ||
188 | exit 1 | ||
189 | fi | ||
190 | |||
191 | # Define a fake builddir where only the pid files are actually created. No real builds will take place here. | 186 | # Define a fake builddir where only the pid files are actually created. No real builds will take place here. |
192 | BUILDDIR=/tmp/toaster_$$ | 187 | BUILDDIR=/tmp/toaster_$$ |
193 | if [ -d "$BUILDDIR" ]; then | 188 | if [ -d "$BUILDDIR" ]; then |