prserv: Do not ping PRService if not required

[YOCTO #1942]
Ping the PRService only if PRSERV_HOST and PRSERV_PORT are set.

(Bitbake rev: 20f24de0bdafac21f5d8a58701f977efa7041288)

Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Lianhao Lu 2012-01-31 14:18:04 +08:00 committed by Richard Purdie
parent 90e99a5cae
commit 555262744d
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ def is_local_special(host, port):
def auto_start(d):
global singleton
if d.getVar('USE_PR_SERV', True) == '0':
if (not d.getVar('PRSERV_HOST', True)) or (not d.getVar('PRSERV_PORT', True)):
return True
if is_local_special(d.getVar('PRSERV_HOST', True), int(d.getVar('PRSERV_PORT', True))) and not singleton: