Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepy
    def find_qemu(self):
        qemu_bin = "/home/alex/lsrc/qemu.git/builds/trs.debug/qemu-system-aarch64"
        # qemu_bin = os.path.join(self.bindir_native, self.qemu_system)
        logger.info("Checking QEMU @ : %s" % qemu_bin)

Watching the live log

If you want to follow the details of whats going on you wont see it in the make output until after the fact. You can however tail the job log which points to the latest run:

Code Block
alex@draig:~/lsrc/tests/trs/build$ tail -f ./tmp_trs-qemuarm64/work/trs_qemuarm64-trs-linux/trs-image/1.0/temp/log.do_testimage

Getting an HMP connection

...