Changeset aace43d8 in mainline
- Timestamp:
- 2023-05-10T21:04:22Z (19 months ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 14cbf07
- Parents:
- cdf5361
- git-author:
- Jakub Jermář <jakub@…> (2023-05-10 20:57:39)
- git-committer:
- Jakub Jermář <jakub@…> (2023-05-10 21:04:22)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/qemu/build-from-scratch.sh
rcdf5361 raace43d8 29 29 # 30 30 31 VERSION= 6.2.031 VERSION=8.0.0 32 32 BASENAME=qemu-${VERSION} 33 33 BASENAME_MASTER=qemu-master … … 35 35 SOURCEDIR=${BASENAME} 36 36 URL=https://download.qemu.org/${TARBALL} 37 REPO=git ://git.qemu.org/qemu.git37 REPO=git@github.com:qemu/qemu.git 38 38 39 39 OPENSPARC_TARBALL="OpenSPARCT1_Arch.1.5.tar.bz2" -
tools/ew.py
rcdf5361 raace43d8 422 422 'sun4v' : { 423 423 'run' : qemu_run, 424 'image' : '-drive if=pflash,readonly=on,file=image.iso', 424 # QEMU 8.0.0 ignores the 'file' argument and instead uses 'id', 425 # which defaults to 'pflash0', but can be changed to the same value 426 # as 'file' 427 'image' : '-drive if=pflash,id=image.iso,readonly=on,file=image.iso', 425 428 'audio' : False, 426 429 'console' : True,
Note:
See TracChangeset
for help on using the changeset viewer.