blob: 218a9adda502b4108b6116eb2aee1c5f56065800 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, so I need to figure out whether this bug report about QEMU supporting the Raspberry Pi 3 Model B is a user-mode or system-mode issue. Let me break it down.
First, the user mentioned that the Raspberry Pi 3 B uses a 64-bit instruction set and wants QEMU to emulate the board. I know that QEMU can emulate various hardware, including different processors and devices.
Now, considering the classification: user-mode issues are usually about applications running on top of an OS without needing deep system changes. System-mode involves lower-level stuff like emulating hardware components, peripherals, or dealing with device drivers which require higher privileges.
In this case, the request is for QEMU to emulate the board itself. Emulating a board would involve setting up the correct CPU architecture (like 64-bit here), handling peripherals, and possibly system-level configurations. That sounds like it's at a lower level than just running an application; it's about replicating the hardware environment.
So, since this involves emulating the actual hardware components and requires handling things that are part of the system architecture, I think this falls under system-mode.
</think>
system
|