[yocto-autobuilder-helper][scarthgap 1/2] run-config: drop one more checkvnc usage
Yoann Congal <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto-patches |
|---|---|
| Message-ID | <a7b6f0f6b42072139d7f2f30d6e7cc0e79d52c4d.1777064869.git.yoann.congal@smile.fr> |
From: Yoann Congal <[email protected]> Reference was missed during a global removal in commit e45f35e484b1 ("config.json: Drop checkvnc usage"). This should prevent this warning on AB: Xvnc not running, attempting restart WARNING: vncserver has been replaced by a systemd unit and is now considered deprecated and removed in upstream. Please read /usr/share/doc/tigervnc/HOWTO.md for more information. Killing Xvnc process ID 4057 Xvnc process ID 4057 already killed WARNING: vncserver has been replaced by a systemd unit and is now considered deprecated and removed in upstream. Please read /usr/share/doc/tigervnc/HOWTO.md for more information. New 'stream9-vk1:1 (pokybuild)' desktop is stream9-vk1:1 Starting applications specified in /srv/pokybuild/.vnc/xstartup Log file is /srv/pokybuild/.vnc/stream9-vk1:1.log [0]: https://autobuilder.yoctoproject.org/valkyrie/#/builders/68/builds/3580/steps/14/logs/stdio Signed-off-by: Yoann Congal <[email protected]> --- scripts/run-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-config b/scripts/run-config index fb71721..02bb8cc 100755 --- a/scripts/run-config +++ b/scripts/run-config @@ -290,7 +290,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, "DISPLAY=:1 bitbake %s -k" % sanitytargets, report, stepnum, args.stepname) # Run any extra commands specified cmds = utils.getconfiglist("EXTRACMDS", ourconfig, args.target, stepnum)