[yocto-autobuilder-helper][whinlatter 1/5] run-config: drop one more checkvnc usage
Yoann Congal <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto-patches |
|---|---|
| Message-ID | <6de347e646c38d3461519e6227fb121362fe71b5.1776323183.git.yoann.congal@smile.fr> |
From: Yoann Congal <[email protected]> Reference was missed during a global removal in commit 29abc96b6310 ("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 7da11c4..a13cc58 100755 --- a/scripts/run-config +++ b/scripts/run-config @@ -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, "DISPLAY=:1 bitbake %s -k" % sanitytargets, report, stepnum, args.stepname) # Run any extra commands specified cmds = utils.getconfiglist("EXTRACMDS", ourconfig, args.target, stepnum)