1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<think>
Alright, let's try to figure out how to classify this bug report. The user mentioned that when using QEMU with UEFI boot and running GRUB commands like `loadfont unicode; insmod all_video; terminal_output gfxterm`, they see video artifacts but the EFI shell still works. They also noted that this doesn't happen on real hardware, implying it's a QEMU issue.
First, I need to understand what each part does. The commands in GRUB are setting up the font and then loading the `all_video` module, which is related to graphics output. Then they switch the terminal output to gfxterm, which probably handles text rendering on graphics devices.
The problem occurs when using `all_video`, but not with `efi_gop`. So, it seems like there's an issue with how QEMU handles the `all_video` module in this context.
Looking at the categories provided: assembly, device, graphic, network, etc. The symptoms relate to video output, so "graphic" seems relevant. But I also need to consider if it's a translation error (mistranslation) or something else.
The user mentioned that the issue is specific to QEMU and doesn't occur on real hardware. This suggests it might be how QEMU emulates certain graphics-related components, possibly in its GPU emulation or how it interacts with UEFI/GRUB.
The modules involved (`all_video`, `gfxterm`) are related to graphic output, so I'm leaning towards "graphic" as the category. But could there be other possibilities? Maybe "device" if it's a hardware device issue, but since it's about graphics, "graphic" is more precise.
</think>
graphic
|