mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 12:32:12 +02:00
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:
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user