@@ -300,7 +300,7 @@ def handle_stepnum(stepnum):
addstepentry("test-targets", "QA targets", shortdesc, desc, str(sanitytargets), str(stepnum))
elif args.stepname == "test-targets":
hp.printheader("Step %s/%s: Running bitbake %s" % (stepnum, maxsteps, sanitytargets))
- bitbakecmd(args.builddir, "%s/checkvnc; DISPLAY=:1 bitbake %s -k" % (scriptsdir, sanitytargets), report, stepnum, args.stepname)
+ bitbakecmd(args.builddir, "bitbake %s -k" % (sanitytargets), report, stepnum, args.stepname)
# Run any extra commands specified
cmds = utils.getconfiglist("EXTRACMDS", ourconfig, args.target, stepnum)
We no longer need a DISPLAY set to allow testimage to work, we can use qemu's inbuilt VNC server instead. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- scripts/run-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)