Changeset aace43d8 in mainline


Ignore:
Timestamp:
2023-05-10T21:04:22Z (12 months ago)
Author:
Jakub Jermář <jakub@…>
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)
Message:

Bump QEMU version to 8.0.0

Also fix the QEMU command line for sparc64/niagara for QEMU 8.0.0 and
switch to using the GitHub QEMU mirror, which appears to be more
reliable.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • contrib/qemu/build-from-scratch.sh

    rcdf5361 raace43d8  
    2929#
    3030
    31 VERSION=6.2.0
     31VERSION=8.0.0
    3232BASENAME=qemu-${VERSION}
    3333BASENAME_MASTER=qemu-master
     
    3535SOURCEDIR=${BASENAME}
    3636URL=https://download.qemu.org/${TARBALL}
    37 REPO=git://git.qemu.org/qemu.git
     37REPO=git@github.com:qemu/qemu.git
    3838
    3939OPENSPARC_TARBALL="OpenSPARCT1_Arch.1.5.tar.bz2"
  • tools/ew.py

    rcdf5361 raace43d8  
    422422                        'sun4v' : {
    423423                                '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',
    425428                                'audio' : False,
    426429                                'console' : True,
Note: See TracChangeset for help on using the changeset viewer.