aboutsummaryrefslogtreecommitdiff
path: root/scripts/run_archiso.sh
Commit message (Collapse)AuthorAgeFilesLines
* run_archiso: add braille supportAlexander Epaneshnikov2020-10-241-0/+2
| | | | necessary for testing brltty in archiso
* add sound support in run_archiso.shAlexander Epaneshnikov2020-10-101-2/+6
| | | | also included serial output on stdio it helps in debugging without sight.
* scripts/run_archiso.sh: support booting the image as a hard disk or an ↵nl67202020-08-181-2/+9
| | | | | | optical disc Use virtio-scsi to attach the image. virtio-blk (if=virtio) is inconsistent about the used media type.
* scripts/run_archiso.sh: disable PXE ROMnl67202020-08-181-1/+1
| | | | | ISO testing doesn't require the emulated firmware's PXE stack. For UEFI, it only disable iPXE in favor of EDK II network stack. https://github.com/tianocore/tianocore.github.io/wiki/EDKII-Network-Over-QEMU#verification-result
* scripts/run_archiso.sh: don't duplicate qemu commands for each boot modenl67202020-08-181-57/+46
| | | | Various bash script improvements.
* Adding script to run archiso in qemuDavid Runge2020-07-101-0/+155
scripts/run_archiso.sh: A script to run a built archiso image using qemu. It can run the image on an emulated BIOS (using seabios) or UEFI (using edk2-ovmf) system. .gitlab-ci.yml: Adding scripts/run_archiso.sh to shellcheck call. Closes #28