Re: #!shebang

2024-11-20 Thread lacsaP Patatetom
Le mer. 20 nov. 2024 à 10:37, lacsaP Patatetom a écrit : > hi, > > I'd like to use an executable file as a configuration file for `qemu` > using a shebang : let me explain. > > I currently store my configuration like this in `configuration.qemu` : > ``` > -argument > > - argument -option > > -etc

Re: QEMU v6.2 riscv64 device crash

2024-11-20 Thread Peter Maydell
On Wed, 20 Nov 2024 at 07:32, Yanfeng wrote: > > Dear experts, > > I am running a rv64 binary program which uses hypervisor extension v0.6.1 on > QEMU with "virt" board. The same RiscV program can run on both QEMU v6.0 and > v6.1, but it led to crash of QEMU v6.2: > > ``` > ERROR:../..target/riscv

#!shebang

2024-11-20 Thread lacsaP Patatetom
hi, I'd like to use an executable file as a configuration file for `qemu` using a shebang : let me explain. I currently store my configuration like this in `configuration.qemu` : ``` -argument - argument -option -etc... ``` and I call `qemu` like this and it works as expected : `$ qemu $(

Re: #!shebang

2024-11-20 Thread G.W. Haywood
Hi there, On Wed, 20 Nov 2024, lacsaP Patatetom wrote: ... I can eliminate them using `grep` like this : `$ qemu $(grep -v '^#' configuration.qemu)` but it seems to me complicated and time-consuming to enter. ... ... another way ... ? You could always use an alias, something like alias qemu