blob: c000930a887375f3858d56ab4c64a1908159b5d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<think>
Okay, I need to classify this bug report about QEMU as either 'user-mode' or 'system-mode'. The error message is "Bad validate ELF MIPSel format". From what I remember, ELF stands for Executable and Linkable Format, which is a file format used for executables.
MIPSel refers to the MIPS architecture in little-endian mode. So this issue seems related to how QEMU handles executing binaries on emulated MIPS systems. The temporary path link goes to a comment discussing sstrip, which I think is a tool that strips debug symbols from ELF files.
QEMU can run in user-mode, where it translates system calls, or system-mode (kernel mode), where it emulates the entire OS. Since the error is about validating an ELF file and mentions sstrip, this likely pertains to running binaries within QEMU's user-mode environment rather than emulating the kernel or hardware devices.
So, I think this bug is related to user-mode.
</think>
user
|