A further idea

This commit is contained in:
Samuel Tyler 2025-10-22 22:52:21 +11:00
parent 985961cc30
commit 8e60893e97
No known key found for this signature in database
GPG key ID: EB5091A5C77E8DC4
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ jobs:
mirror-state
key: cache-${{ hashFiles('steps/*/sources') }}
- name: Run bootstrap
run: sudo ./rootfs.py --qemu --update-checksums --external-sources --cores 2 --mirror file://${PWD}/mirror
run: sudo ./rootfs.py --qemu --update-checksums --external-sources --cores 2 --mirror file://${PWD}/mirror; cat output
- name: Remount package disk
if: always()
run: >

View file

@ -336,7 +336,7 @@ print(shutil.which('chroot'))
'-nic', 'user,ipv6=off,model=e1000'
]
if not args.interactive:
arg_list += ['-no-reboot', '-nographic']
arg_list += ['-no-reboot', '-nographic', '-serial', 'file:output']
run(args.qemu_cmd, *arg_list, cleanup=cleanup)
if __name__ == "__main__":