1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, I need to classify this bug report into one of the given categories for QEMU. The user is reporting that when they use `qemu-system-sparc64`, there's no network interface visible after booting the guest OS. They followed the suggested command line, but upon logging in, only the loopback device exists.
Looking at the possible categories: mistranslation, assembly, other, device, graphic, socket, network, KVM, boot, vnc, debug, files, permissions, performance, kernel, peripherals, hypervisor.
The issue is about missing network devices. The user expected a default network interface but didn't get one. This points towards a problem with how the network interfaces are being handled by QEMU.
I should consider whether it's related to the device setup in the emulator or perhaps a misconfiguration in the QEMU command line. Since they're using `-M niagara`, which is a specific machine type, maybe the networking isn't properly configured for that machine model.
The fact that network interfaces aren't showing up suggests an issue with the device (network) emulation. So the category should be 'network'.
</think>
network
|