buildstats: Disable uname subprocess call for now since it appears to be breaking runqueue somehow

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-02-15 11:51:28 +00:00
parent 21c112ca49
commit a824232c44
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ python run_buildstats () {
# write start of build into build_time
file = open(build_time,"a")
# We do this here because subprocess within BuildStarted is messy
host_info = subprocess.Popen(["uname", "-a"], stdout=subprocess.PIPE).stdout.read()
file.write("Host Info: %s" % host_info)
#host_info = subprocess.Popen(["uname", "-a"], stdout=subprocess.PIPE).stdout.read()
#file.write("Host Info: %s" % host_info)
file.write("Build Started: %0.2f \n" % time.time())
file.close()