i'm trying to emulate a series of ARM firmwares using qemu-system. I'm starting off with a raspberry image to experiment a bit, and I wonder if there's a way to log every action that the (emulated) raspberry makese (eg. system calls). The command i'm using right now is
sudo qemu-system-arm -kernel kernel-qemu -cpu arm1176 -m 256 -M versatilepb -dtb versatile-pb.dtb -no-reboot -serial stdio -append "root=/dev/sda2 rootfstype=ext4 rw" -hda rpitest.qcow2 -net nic -net user -net tap,ifname=vnet0,script=no,downscript=no -trace guest_user_syscall,file=trace
but the file trace remains empty during execution. Do you have any advice? Thanks in advance :)