This website requires JavaScript.
Explore
Help
Sign In
ExternalVendorCode
/
genode
Watch
1
Star
0
Fork
0
You've already forked genode
mirror of
https://github.com/genodelabs/genode.git
synced
2025-01-01 03:26:45 +00:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
240819b708
genode
/
repos
/
base
/
board
/
pc
/
qemu_args
4 lines
83 B
Plaintext
Raw
Normal View
History
Unescape
Escape
tool/run: read board-specific qemu args from file Allow specifying additional qemu arguments for externally supported boards (e.g. zynq_qemu) by adding a `qemu_args` file in the board-property directory. The syntax of the qemu_args file is as follows: - Arguments can appear in a single line or in multiple lines as the lines will be appended (separated by a whitespace) to the global qemu_args variable. - If the line is prepended with a `foobar:` expression. The arguments are only added if the foobar spec is present. Note, that a `-m` argument specified in the qemu_args file will override the arguments provided by the run scripts. genodelabs/genode#4311
2021-08-18 14:17:03 +00:00
-machine q35
qemu: set default cpu model for x86_64 explicitly With the update to sel4 and the gcc 12, assembly instructions are generated and used, like POPCNT. The instruction is available on our native hardware, but not emulated by the default cpu model necessarily, which leads to undefined opcode exceptions (Qemu 4.2.1 && seL4). Additionally, the features of the default Qemu cpu model may vary between Qemu releases and makes it harder to correlate effects.
2023-06-02 07:05:50 +00:00
-cpu Nehalem-v2
tool/run: move nic model to qemu_args file Always instantiating a network device with id `net0`, removes the need to call append_qemu_nic_args in run scripts unless we want to add forwarding rules. genodelabs/genode#4311
2021-11-03 14:27:35 +00:00
-net nic,model=e1000,netdev=net0 -netdev user,id=net0
Reference in New Issue
Copy Permalink