blob: df9e7712c51ddcc4b2408ae84bc7cc0f5a780611 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<think>
Alright, I need to determine whether this bug report is related to user-mode or system-mode in QEMU.
Looking at the description, the issue occurs within a chroot environment using qemu-user-static. The problem arises when the binfmt_misc configuration is set with flags including "P", which causes additional arguments to be passed to QEMU. This affects how commands are executed under the emulator.
The user mentions modifying QEMU's code to handle these new arguments and discusses issues with argv parsing. This suggests that the problem lies within how QEMU's user-mode emulation handles command-line arguments, particularly when extra args are introduced by binfmt_misc.
Since this involves process execution and argument handling in a user-space emulation context, it falls under user-mode operations rather than system-level device or hardware management.
</think>
user
|