All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core][PATCH] parselogs: ignore floppy error on qemu-system-x86 at boot stage
@ 2021-04-09  9:03 Xu, Yanfei
  2021-04-09 13:13 ` Richard Purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Xu, Yanfei @ 2021-04-09  9:03 UTC (permalink / raw)
  To: openembedded-core

From: Yanfei Xu <yanfei.xu@windriver.com>

We can disable floppy drive by BIOS on a hardware, but an empty floppy
drive is connected by default on qemu-system-x86. Linux usually detect
the device and modprode the matched floppy.ko at the boot stage. Due to
we don't specify a floppy deivce in qemu boot arguments, then the errors
about floppy reading comes out.

It is harmless and normal, so we could ignore this error message on
qemux86.

https://lists.gnu.org/archive/html/qemu-devel/2021-04/msg01402.html

Signed-off-by: Yanfei Xu <yanfei.xu@windriver.com>
---
 meta/lib/oeqa/runtime/cases/parselogs.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
index 4714741aff..1bb0425521 100644
--- a/meta/lib/oeqa/runtime/cases/parselogs.py
+++ b/meta/lib/oeqa/runtime/cases/parselogs.py
@@ -88,6 +88,8 @@ qemux86_common = [
     'tsc: HPET/PMTIMER calibration failed',
     "modeset(0): Failed to initialize the DRI2 extension",
     "glamor initialization failed",
+    "blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ)",
+    "floppy: error",
 ] + common_errors
 
 ignore_errors = {
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [OE-core][PATCH] parselogs: ignore floppy error on qemu-system-x86 at boot stage
  2021-04-09  9:03 [OE-core][PATCH] parselogs: ignore floppy error on qemu-system-x86 at boot stage Xu, Yanfei
@ 2021-04-09 13:13 ` Richard Purdie
  2021-04-14  6:32   ` Xu, Yanfei
       [not found]   ` <1675A5CF675C50A9.32393@lists.openembedded.org>
  0 siblings, 2 replies; 4+ messages in thread
From: Richard Purdie @ 2021-04-09 13:13 UTC (permalink / raw)
  To: Xu, Yanfei, openembedded-core

On Fri, 2021-04-09 at 17:03 +0800, Xu, Yanfei wrote:
> From: Yanfei Xu <yanfei.xu@windriver.com>
> 
> We can disable floppy drive by BIOS on a hardware, but an empty floppy
> drive is connected by default on qemu-system-x86. Linux usually detect
> the device and modprode the matched floppy.ko at the boot stage. Due to
> we don't specify a floppy deivce in qemu boot arguments, then the errors
> about floppy reading comes out.
> 
> It is harmless and normal, so we could ignore this error message on
> qemux86.
> 
> https://lists.gnu.org/archive/html/qemu-devel/2021-04/msg01402.html
> 
> Signed-off-by: Yanfei Xu <yanfei.xu@windriver.com>
> ---
>  meta/lib/oeqa/runtime/cases/parselogs.py | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
> index 4714741aff..1bb0425521 100644
> --- a/meta/lib/oeqa/runtime/cases/parselogs.py
> +++ b/meta/lib/oeqa/runtime/cases/parselogs.py
> @@ -88,6 +88,8 @@ qemux86_common = [
>      'tsc: HPET/PMTIMER calibration failed',
>      "modeset(0): Failed to initialize the DRI2 extension",
>      "glamor initialization failed",
> +    "blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ)",
> +    "floppy: error",
>  ] + common_errors

I'm a little puzzled about why we don't see this on the autobuilder. Are you
configuring qemu differently?

Cheers,

Richard



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [OE-core][PATCH] parselogs: ignore floppy error on qemu-system-x86 at boot stage
  2021-04-09 13:13 ` Richard Purdie
@ 2021-04-14  6:32   ` Xu, Yanfei
       [not found]   ` <1675A5CF675C50A9.32393@lists.openembedded.org>
  1 sibling, 0 replies; 4+ messages in thread
From: Xu, Yanfei @ 2021-04-14  6:32 UTC (permalink / raw)
  To: Richard Purdie, openembedded-core

[-- Attachment #1: Type: text/plain, Size: 2274 bytes --]



On 4/9/21 9:13 PM, Richard Purdie wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
> 
> On Fri, 2021-04-09 at 17:03 +0800, Xu, Yanfei wrote:
>> From: Yanfei Xu <yanfei.xu@windriver.com>
>>
>> We can disable floppy drive by BIOS on a hardware, but an empty floppy
>> drive is connected by default on qemu-system-x86. Linux usually detect
>> the device and modprode the matched floppy.ko at the boot stage. Due to
>> we don't specify a floppy deivce in qemu boot arguments, then the errors
>> about floppy reading comes out.
>>
>> It is harmless and normal, so we could ignore this error message on
>> qemux86.
>>
>> https://lists.gnu.org/archive/html/qemu-devel/2021-04/msg01402.html
>>
>> Signed-off-by: Yanfei Xu <yanfei.xu@windriver.com>
>> ---
>>   meta/lib/oeqa/runtime/cases/parselogs.py | 2 ++
>>   1 file changed, 2 insertions(+)
>>
>> diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
>> index 4714741aff..1bb0425521 100644
>> --- a/meta/lib/oeqa/runtime/cases/parselogs.py
>> +++ b/meta/lib/oeqa/runtime/cases/parselogs.py
>> @@ -88,6 +88,8 @@ qemux86_common = [
>>       'tsc: HPET/PMTIMER calibration failed',
>>       "modeset(0): Failed to initialize the DRI2 extension",
>>       "glamor initialization failed",
>> +    "blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ)",
>> +    "floppy: error",
>>   ] + common_errors
> 
> I'm a little puzzled about why we don't see this on the autobuilder. Are you
> configuring qemu differently?

Sorry for the late reply.

I build a poky raw project and do some tests:
bitbake core-image-minimal -c testimage   //the dmesg don't contain 
floppy error, as the kernel-modules package is not install.

Then I add IMAGE_INSTALL_append = " kernel-modules" and use systemd to 
instead of sysvinit. The error appears in qemu dmesg.

[    4.879016] blk_update_request: I/O error, dev fd0, sector 0 op 
0x0:(READ) flags 0x0 phys_seg 1 prio class 0
[    4.880255] floppy: error 10 while reading block 0

The log 
tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20210414061409 
is attached



Best regards,
Yanfei

> 
> Cheers,
> 
> Richard
> 
> 

[-- Attachment #2: qemu_boot_log.20210414061409 --]
[-- Type: text/plain, Size: 36843 bytes --]

[    0.000000] Linux version 5.10.25-yocto-standard (oe-user@oe-host) (x86_64-poky-linux-gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.36.1.20210209) #1 SMP PREEMPT Mon Mar 22 19:08:27 UTC 2021
[    0.000000] Command line: root=/dev/vda rw  mem=512M ip=192.168.7.2::192.168.7.1:255.255.255.0 console=ttyS0 console=ttyS1 oprofile.timer=1  printk.time=1
[    0.000000] x86/fpu: x87 FPU will use FXSAVE
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001ffdafff] usable
[    0.000000] BIOS-e820: [mem 0x000000001ffdb000-0x000000001fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] user-defined physical RAM map:
[    0.000000] user: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] user: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] user: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] user: [mem 0x0000000000100000-0x000000001ffdafff] usable
[    0.000000] user: [mem 0x000000001ffdb000-0x000000001fffffff] reserved
[    0.000000] user: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] user: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.14.0-0-g155821a1990b-prebuilt.qemu.org 04/01/2014
[    0.000000] Hypervisor detected: KVM
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000000] kvm-clock: cpu 0, msr c3cd001, primary cpu clock
[    0.000000] kvm-clock: using sched offset of 1239015809 cycles
[    0.000004] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000008] tsc: Detected 3099.990 MHz processor
[    0.000931] last_pfn = 0x1ffdb max_arch_pfn = 0x400000000
[    0.000969] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.009102] found SMP MP-table at [mem 0x000f5a90-0x000f5a9f]
[    0.009159] check: Scanning 1 areas for low memory corruption
[    0.009280] ACPI: Early table checksum verification disabled
[    0.009291] ACPI: RSDP 0x00000000000F58B0 000014 (v00 BOCHS )
[    0.009297] ACPI: RSDT 0x000000001FFE15BA 000034 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
[    0.009305] ACPI: FACP 0x000000001FFE146E 000074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
[    0.009310] ACPI: DSDT 0x000000001FFE0040 00142E (v01 BOCHS  BXPCDSDT 00000001 BXPC 00000001)
[    0.009314] ACPI: FACS 0x000000001FFE0000 000040
[    0.009317] ACPI: APIC 0x000000001FFE14E2 000078 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
[    0.009320] ACPI: HPET 0x000000001FFE155A 000038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
[    0.009324] ACPI: WAET 0x000000001FFE1592 000028 (v01 BOCHS  BXPCWAET 00000001 BXPC 00000001)
[    0.009367] Zone ranges:
[    0.009368]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.009370]   DMA32    [mem 0x0000000001000000-0x000000001ffdafff]
[    0.009371]   Normal   empty
[    0.009372] Movable zone start for each node
[    0.009373] Early memory node ranges
[    0.009373]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.009374]   node   0: [mem 0x0000000000100000-0x000000001ffdafff]
[    0.009376] Initmem setup node 0 [mem 0x0000000000001000-0x000000001ffdafff]
[    0.009948]   DMA zone: 28770 pages in unavailable ranges
[    0.011530]   DMA32 zone: 37 pages in unavailable ranges
[    0.011902] ACPI: PM-Timer IO Port: 0x608
[    0.011912] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.011952] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.011955] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.011957] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.011958] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.011961] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.011961] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.011967] Using ACPI (MADT) for SMP configuration information
[    0.011969] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.011972] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.011987] [mem 0x20000000-0xfeffbfff] available for PCI devices
[    0.011988] Booting paravirtualized kernel on KVM
[    0.011990] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.011993] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:1 nr_node_ids:1
[    0.012494] percpu: Embedded 53 pages/cpu s176728 r8192 d32168 u2097152
[    0.012517] kvm-guest: stealtime: cpu 0, msr 1f417600
[    0.012520] Built 1 zonelists, mobility grouping on.  Total pages: 128868
[    0.012521] Kernel command line: root=/dev/vda rw  mem=512M ip=192.168.7.2::192.168.7.1:255.255.255.0 console=ttyS0 console=ttyS1 oprofile.timer=1  printk.time=1
[    0.012636] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.012674] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.012702] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.013806] Memory: 485460K/523748K available (16396K kernel code, 2094K rwdata, 3444K rodata, 1540K init, 2356K bss, 38028K reserved, 0K cma-reserved)
[    0.013842] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.013849] Kernel/User page tables isolation: enabled
[    0.013863] ftrace: allocating 44447 entries in 174 pages
[    0.029399] ftrace: allocated 174 pages with 5 groups
[    0.029836] rcu: Preemptible hierarchical RCU implementation.
[    0.029837] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=1.
[    0.029838] 	Trampoline variant of Tasks RCU enabled.
[    0.029839] 	Rude variant of Tasks RCU enabled.
[    0.029840] 	Tracing variant of Tasks RCU enabled.
[    0.029841] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.029842] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.032771] NR_IRQS: 4352, nr_irqs: 256, preallocated irqs: 16
[    0.032999] random: get_random_bytes called from start_kernel+0x370/0x527 with crng_init=0
[    0.079692] Console: colour VGA+ 80x25
[    0.191809] printk: console [ttyS0] enabled
[    0.192332] ACPI: Core revision 20200925
[    0.192937] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
[    0.194160] APIC: Switch to symmetric I/O mode setup
[    0.195027] x2apic enabled
[    0.195659] Switched APIC routing to physical x2apic.
[    0.197453] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.198240] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2caf3e19eed, max_idle_ns: 440795289518 ns
[    0.199505] Calibrating delay loop (skipped) preset value.. 6199.98 BogoMIPS (lpj=3099990)
[    0.200506] pid_max: default: 32768 minimum: 301
[    0.201519] LSM: Security Framework initializing
[    0.202517] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
[    0.203507] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
[    0.204706] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.205383] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.205508] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.206507] Spectre V2 : Mitigation: Full generic retpoline
[    0.207506] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.208506] Speculative Store Bypass: Vulnerable
[    0.209506] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.217946] Freeing SMP alternatives memory: 48K
[    0.281029] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU     T7700  @ 2.40GHz (family: 0x6, model: 0xf, stepping: 0xb)
[    0.281663] Performance Events: unsupported p6 CPU model 15 no PMU driver, software events only.
[    0.282554] rcu: Hierarchical SRCU implementation.
[    0.283693] smp: Bringing up secondary CPUs ...
[    0.284509] smp: Brought up 1 node, 1 CPU
[    0.284996] smpboot: Max logical packages: 1
[    0.285506] smpboot: Total of 1 processors activated (6199.98 BogoMIPS)
[    0.286557] devtmpfs: initialized
[    0.287162] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.287510] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
[    0.288536] pinctrl core: initialized pinctrl subsystem
[    0.289634] NET: Registered protocol family 16
[    0.290616] thermal_sys: Registered thermal governor 'step_wise'
[    0.290617] thermal_sys: Registered thermal governor 'user_space'
[    0.291386] cpuidle: using governor menu
[    0.292530] ACPI: bus type PCI registered
[    0.293517] PCI: Using configuration type 1 for base access
[    0.295959] Kprobes globally optimized
[    0.313510] raid6: sse2x4   gen() 14947 MB/s
[    0.330524] raid6: sse2x4   xor()  8171 MB/s
[    0.348510] raid6: sse2x2   gen() 16056 MB/s
[    0.365506] raid6: sse2x2   xor() 10122 MB/s
[    0.383506] raid6: sse2x1   gen() 12221 MB/s
[    0.400506] raid6: sse2x1   xor()  8260 MB/s
[    0.401506] raid6: using algorithm sse2x2 gen() 16056 MB/s
[    0.402506] raid6: .... xor() 10122 MB/s, rmw enabled
[    0.403506] raid6: using ssse3x2 recovery algorithm
[    0.404129] ACPI: Added _OSI(Module Device)
[    0.404506] ACPI: Added _OSI(Processor Device)
[    0.405035] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.405506] ACPI: Added _OSI(Processor Aggregator Device)
[    0.406145] ACPI: Added _OSI(Linux-Dell-Video)
[    0.406506] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.407505] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.408709] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.410422] ACPI: Interpreter enabled
[    0.410517] ACPI: (supports S0 S3 S5)
[    0.410964] ACPI: Using IOAPIC for interrupt routing
[    0.411517] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.412577] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.415354] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.415511] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
[    0.416511] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.417535] PCI host bridge to bus 0000:00
[    0.418508] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.419506] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.420506] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.421506] pci_bus 0000:00: root bus resource [mem 0x20000000-0xfebfffff window]
[    0.422401] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window]
[    0.422507] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.423542] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[    0.424900] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[    0.426021] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
[    0.429508] pci 0000:00:01.1: reg 0x20: [io  0xc0e0-0xc0ef]
[    0.431215] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.431507] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.432328] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.432506] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.433651] pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300
[    0.437036] pci 0000:00:01.2: reg 0x20: [io  0xc080-0xc09f]
[    0.438992] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
[    0.439895] pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
[    0.440514] pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
[    0.441701] pci 0000:00:02.0: [1234:1111] type 00 class 0x030000
[    0.443886] pci 0000:00:02.0: reg 0x10: [mem 0xfd000000-0xfdffffff pref]
[    0.446529] pci 0000:00:02.0: reg 0x18: [mem 0xfebd0000-0xfebd0fff]
[    0.450529] pci 0000:00:02.0: reg 0x30: [mem 0xfebc0000-0xfebcffff pref]
[    0.451866] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000
[    0.453507] pci 0000:00:03.0: reg 0x10: [io  0xc0a0-0xc0bf]
[    0.455507] pci 0000:00:03.0: reg 0x14: [mem 0xfebd1000-0xfebd1fff]
[    0.461921] pci 0000:00:03.0: reg 0x20: [mem 0xfe000000-0xfe003fff 64bit pref]
[    0.463971] pci 0000:00:03.0: reg 0x30: [mem 0xfeb80000-0xfebbffff pref]
[    0.465552] pci 0000:00:04.0: [1af4:1005] type 00 class 0x00ff00
[    0.466864] pci 0000:00:04.0: reg 0x10: [io  0xc0c0-0xc0df]
[    0.470380] pci 0000:00:04.0: reg 0x20: [mem 0xfe004000-0xfe007fff 64bit pref]
[    0.472365] pci 0000:00:05.0: [1af4:1001] type 00 class 0x010000
[    0.473990] pci 0000:00:05.0: reg 0x10: [io  0xc000-0xc07f]
[    0.475508] pci 0000:00:05.0: reg 0x14: [mem 0xfebd2000-0xfebd2fff]
[    0.479508] pci 0000:00:05.0: reg 0x20: [mem 0xfe008000-0xfe00bfff 64bit pref]
[    0.482325] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
[    0.482606] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
[    0.483597] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
[    0.484601] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
[    0.485345] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
[    0.485781] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.486504] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.487506] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.488506] vgaarb: loaded
[    0.488933] SCSI subsystem initialized
[    0.489484] ACPI: bus type USB registered
[    0.489529] usbcore: registered new interface driver usbfs
[    0.490516] usbcore: registered new interface driver hub
[    0.491150] usbcore: registered new device driver usb
[    0.491522] pps_core: LinuxPPS API ver. 1 registered
[    0.492509] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.493509] PTP clock support registered
[    0.494230] Bluetooth: Core ver 2.22
[    0.494513] NET: Registered protocol family 31
[    0.495048] Bluetooth: HCI device and connection manager initialized
[    0.495515] Bluetooth: HCI socket layer initialized
[    0.496507] Bluetooth: L2CAP socket layer initialized
[    0.497119] Bluetooth: SCO socket layer initialized
[    0.497547] PCI: Using ACPI for IRQ routing
[    0.498675] hpet: 3 channels of 0 reserved for per-cpu timers
[    0.499383] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.499506] hpet0: 3 comparators, 64-bit 100.000000 MHz counter
[    0.503525] clocksource: Switched to clocksource kvm-clock
[    0.601980] pnp: PnP ACPI init
[    0.602711] pnp: PnP ACPI: found 8 devices
[    0.608974] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.610097] NET: Registered protocol family 2
[    0.610812] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.611835] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.612764] TCP bind hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.613635] TCP: Hash tables configured (established 4096 bind 4096)
[    0.614427] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.615215] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.616085] NET: Registered protocol family 1
[    0.616720] RPC: Registered named UNIX socket transport module.
[    0.617449] RPC: Registered udp transport module.
[    0.618016] RPC: Registered tcp transport module.
[    0.618585] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.619365] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.620113] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.620855] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.621682] pci_bus 0000:00: resource 7 [mem 0x20000000-0xfebfffff window]
[    0.622516] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window]
[    0.638586] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.639310] pci 0000:00:00.0: quirk_passive_release+0x0/0x80 took 15549 usecs
[    0.640196] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.640929] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[    0.656954] PCI Interrupt Link [LNKD] enabled at IRQ 11
[    0.673078] pci 0000:00:01.2: quirk_usb_early_handoff+0x0/0x6d0 took 30643 usecs
[    0.692297] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.693353] PCI: CLS 0 bytes, default 64
[    0.693915] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2caf3e19eed, max_idle_ns: 440795289518 ns
[    0.695202] check: Scanning for low memory corruption every 60 seconds
[    0.696193] Initialise system trusted keyrings
[    0.696797] workingset: timestamp_bits=46 max_order=17 bucket_order=0
[    0.698527] NFS: Registering the id_resolver key type
[    0.699163] Key type id_resolver registered
[    0.699676] Key type id_legacy registered
[    0.700251] Key type cifs.idmap registered
[    0.709850] xor: measuring software checksum speed
[    0.710863]    prefetch64-sse  : 24667 MB/sec
[    0.711854]    generic_sse     : 21983 MB/sec
[    0.712394] xor: using function: prefetch64-sse (24667 MB/sec)
[    0.713126] Key type asymmetric registered
[    0.713633] Asymmetric key parser 'x509' registered
[    0.714220] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    0.715104] io scheduler mq-deadline registered
[    0.715665] io scheduler kyber registered
[    0.716257] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.723521] ACPI: Power Button [PWRF]
[    0.751429] PCI Interrupt Link [LNKC] enabled at IRQ 10
[    0.802462] PCI Interrupt Link [LNKA] enabled at IRQ 10
[    0.803880] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.804802] 00:04: ttyS2 at I/O 0x3e8 (irq = 4, base_baud = 115200) is a 16550A
[    0.805831] 00:05: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    0.806865] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.808206] Linux agpgart interface v0.103
[    0.808847] bochs-drm 0000:00:02.0: vgaarb: deactivate vga console
[    0.810814] Console: switching to colour dummy device 80x25
[    0.811572] random: fast init done
[    0.812089] [drm] Found bochs VGA, ID 0xb0c0.
[    0.812642] [drm] Framebuffer size 16384 kB @ 0xfd000000, mmio @ 0xfebd0000.
[    0.813526] random: crng init done
[    0.814004] [TTM] Zone  kernel: Available graphics memory: 242884 KiB
[    0.814836] [TTM] Initializing pool allocator
[    0.815418] [TTM] Initializing DMA pool allocator
[    0.840445] [drm] Found EDID data blob.
[    0.841026] [drm] Initialized bochs-drm 1.0.0 20130925 for 0000:00:02.0 on minor 0
[    0.843172] fbcon: bochs-drmdrmfb (fb0) is primary device
[    0.846721] Console: switching to colour frame buffer device 128x48
[    0.849570] bochs-drm 0000:00:02.0: [drm] fb0: bochs-drmdrmfb frame buffer device
[    0.851580] brd: module loaded
[    0.852980] loop: module loaded
[    0.854506] virtio_blk virtio2: [vda] 205418 512-byte logical blocks (105 MB/100 MiB)
[    0.855486] vda: detected capacity change from 0 to 105174016
[    0.857080] Uniform Multi-Platform E-IDE driver
[    0.857713] piix 0000:00:01.1: IDE controller (0x8086:0x7010 rev 0x00)
[    0.858548] piix 0000:00:01.1: not 100% native mode: will probe irqs later
[    0.859436] legacy IDE will be removed in 2021, please switch to libata
[    0.859436] Report any missing HW support to linux-ide@vger.kernel.org
[    0.861206]     ide0: BM-DMA at 0xc0e0-0xc0e7
[    0.861785]     ide1: BM-DMA at 0xc0e8-0xc0ef
[    2.404580] hdc: QEMU DVD-ROM, ATAPI CD/DVD-ROM drive
[    3.128591] hdc: MWDMA2 mode selected
[    3.129345] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
[    3.129970] ide1 at 0x170-0x177,0x376 on irq 15
[    3.130651] ide-gd driver 1.18
[    3.131050] ide-cd driver 5.00
[    3.131634] ide-cd: hdc: ATAPI 4X DVD-ROM drive, 512kB Cache
[    3.132338] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.139122] e100: Intel(R) PRO/100 Network Driver
[    3.139726] e100: Copyright(c) 1999-2006 Intel Corporation
[    3.140413] e1000: Intel(R) PRO/1000 Network Driver
[    3.141005] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    3.141712] e1000e: Intel(R) PRO/1000 Network Driver
[    3.142312] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    3.143046] igb: Intel(R) Gigabit Ethernet Network Driver
[    3.143694] igb: Copyright (c) 2007-2014 Intel Corporation.
[    3.144369] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.145151] ehci-pci: EHCI PCI platform driver
[    3.145702] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.146467] ohci-pci: OHCI PCI platform driver
[    3.147016] uhci_hcd: USB Universal Host Controller Interface driver
[    3.199411] uhci_hcd 0000:00:01.2: UHCI Host Controller
[    3.200099] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1
[    3.201085] uhci_hcd 0000:00:01.2: irq 11, io base 0x0000c080
[    3.201942] hub 1-0:1.0: USB hub found
[    3.202436] hub 1-0:1.0: 2 ports detected
[    3.203066] usbcore: registered new interface driver usb-storage
[    3.203845] usbcore: registered new interface driver usbserial_generic
[    3.204682] usbserial: USB Serial support registered for generic
[    3.205424] usbcore: registered new interface driver ftdi_sio
[    3.206125] usbserial: USB Serial support registered for FTDI USB Serial Device
[    3.207041] usbcore: registered new interface driver pl2303
[    3.207717] usbserial: USB Serial support registered for pl2303
[    3.208490] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    3.210141] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.210813] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.211486] mousedev: PS/2 mouse device common for all mice
[    3.212459] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    3.215162] rtc_cmos 00:07: RTC can wake from S4
[    3.216095] rtc_cmos 00:07: registered as rtc0
[    3.216719] rtc_cmos 00:07: setting system clock to 2021-04-14T06:14:17 UTC (1618380857)
[    3.217717] rtc_cmos 00:07: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
[    3.218759] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[    3.219856] intel_pstate: CPU model not supported
[    3.220477] sdhci: Secure Digital Host Controller Interface driver
[    3.221234] sdhci: Copyright(c) Pierre Ossman
[    3.221793] sdhci-pltfm: SDHCI platform and OF driver helper
[    3.222573] usbcore: registered new interface driver usbhid
[    3.223262] usbhid: USB HID core driver
[    3.223748] u32 classifier
[    3.224090]     input device check on
[    3.224567]     Actions configured
[    3.225084] NET: Registered protocol family 10
[    3.225857] Segment Routing with IPv6
[    3.226354] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    3.227179] NET: Registered protocol family 17
[    3.227772] Bridge firewalling registered
[    3.228294] Key type dns_resolver registered
[    3.228890] NET: Registered protocol family 40
[    3.229538] IPI shorthand broadcast: enabled
[    3.230086] sched_clock: Marking stable (3066977825, 162530156)->(3409987558, -180479577)
[    3.231109] Loading compiled-in X.509 certificates
[    3.231763] Key type ._fscrypt registered
[    3.232259] Key type .fscrypt registered
[    3.232759] Key type fscrypt-provisioning registered
[    3.233544] Btrfs loaded, crc32c=crc32c-generic
[    3.234293] Key type encrypted registered
[    3.235016] printk: console [netcon0] enabled
[    3.235591] netconsole: network logging started
[    3.525520] usb 1-1: new full-speed USB device number 2 using uhci_hcd
[    3.702674] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input4
[    3.704140] hid-generic 0003:0627:0001.0001: input: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:01.2-1/input0
[    3.836365] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3
[    3.849518] IP-Config: Complete:
[    3.849941]      device=eth0, hwaddr=52:54:00:12:34:02, ipaddr=192.168.7.2, mask=255.255.255.0, gw=192.168.7.1
[    3.851155]      host=192.168.7.2, domain=, nis-domain=(none)
[    3.851877]      bootserver=255.255.255.255, rootserver=255.255.255.255, rootpath=
[    3.852155] md: Waiting for all devices to be available before autodetect
[    3.863439] md: If you don't use raid, use raid=noautodetect
[    3.865109] md: Autodetecting RAID arrays.
[    3.865657] md: autorun ...
[    3.866030] md: ... autorun DONE.
[    3.868305] EXT4-fs (vda): mounted filesystem with ordered data mode. Opts: (null)
[    3.869296] ext4 filesystem being mounted at /root supports timestamps until 2038 (0x7fffffff)
[    3.870376] VFS: Mounted root (ext4 filesystem) on device 253:0.
[    3.871191] devtmpfs: mounted
[    3.872751] Freeing unused kernel image (initmem) memory: 1540K
[    3.873518] Write protecting the kernel read-only data: 22528k
[    3.875297] Freeing unused kernel image (text/rodata gap) memory: 2032K
[    3.876271] Freeing unused kernel image (rodata/data gap) memory: 652K
[    3.877088] Run /sbin/init as init process
[    3.890663] systemd[1]: systemd 247.4+ running in system mode. (-PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -ZSTD -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
[    3.893500] systemd[1]: Detected virtualization kvm.
[    3.894153] systemd[1]: Detected architecture x86-64.

Welcome to [1mPoky (Yocto Project Reference Distro) 3.3 (hardknott)[0m!

[    3.898993] systemd[1]: Set hostname to <qemux86-64>.
[    3.899956] systemd[1]: Initializing machine ID from random generator.
[    3.964217] systemd[1]: Queued start job for default target Multi-User System.
[    3.970271] systemd[1]: Created slice system-getty.slice.
[[0;32m  OK  [0m] Created slice [0;1;39msystem-getty.slice[0m.
[    3.972058] systemd[1]: Created slice system-modprobe.slice.
[[0;32m  OK  [0m] Created slice [0;1;39msystem-modprobe.slice[0m.
[    3.973828] systemd[1]: Created slice system-serial\x2dgetty.slice.
[[0;32m  OK  [0m] Created slice [0;1;39msystem-serial\x2dgetty.slice[0m.
[    3.975730] systemd[1]: Created slice User and Session Slice.
[[0;32m  OK  [0m] Created slice [0;1;39mUser and Session Slice[0m.
[    3.977304] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[[0;32m  OK  [0m] Started [0;1;39mDispatch Password …ts to Console Directory Watch[0m.
[    3.979318] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[[0;32m  OK  [0m] Started [0;1;39mForward Password R…uests to Wall Directory Watch[0m.
[    3.981239] systemd[1]: Reached target Paths.
[[0;32m  OK  [0m] Reached target [0;1;39mPaths[0m.
[    4.018301] systemd[1]: Reached target Remote File Systems.
[[0;32m  OK  [0m] Reached target [0;1;39mRemote File Systems[0m.
[    4.019788] systemd[1]: Reached target Slices.
[[0;32m  OK  [0m] Reached target [0;1;39mSlices[0m.
[    4.020978] systemd[1]: Reached target Swap.
[[0;32m  OK  [0m] Reached target [0;1;39mSwap[0m.
[    4.022330] systemd[1]: Listening on Syslog Socket.
[[0;32m  OK  [0m] Listening on [0;1;39mSyslog Socket[0m.
[    4.023679] systemd[1]: Listening on initctl Compatibility Named Pipe.
[[0;32m  OK  [0m] Listening on [0;1;39minitctl Compatibility Named Pipe[0m.
[    4.026036] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[    4.027194] systemd[1]: Listening on Journal Socket (/dev/log).
[[0;32m  OK  [0m] Listening on [0;1;39mJournal Socket (/dev/log)[0m.
[    4.028824] systemd[1]: Listening on Journal Socket.
[[0;32m  OK  [0m] Listening on [0;1;39mJournal Socket[0m.
[    4.030304] systemd[1]: Listening on Network Service Netlink Socket.
[[0;32m  OK  [0m] Listening on [0;1;39mNetwork Service Netlink Socket[0m.
[    4.032021] systemd[1]: Listening on udev Control Socket.
[[0;32m  OK  [0m] Listening on [0;1;39mudev Control Socket[0m.
[    4.033545] systemd[1]: Listening on udev Kernel Socket.
[[0;32m  OK  [0m] Listening on [0;1;39mudev Kernel Socket[0m.
[    4.034992] systemd[1]: Listening on User Database Manager Socket.
[[0;32m  OK  [0m] Listening on [0;1;39mUser Database Manager Socket[0m.
[    4.036693] systemd[1]: Condition check resulted in Huge Pages File System being skipped.
[    4.038429] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting [0;1;39mPOSIX Message Queue File System[0m...
[    4.040765] systemd[1]: Mounting Kernel Debug File System...
         Mounting [0;1;39mKernel Debug File System[0m...
[    4.044602] systemd[1]: Mounting Kernel Trace File System...
         Mounting [0;1;39mKernel Trace File System[0m...
[    4.049030] systemd[1]: Mounting Temporary Directory (/tmp)...
         Mounting [0;1;39mTemporary Directory (/tmp)[0m...
[    4.051323] systemd[1]: Starting Create list of static device nodes for the current kernel...
         Starting [0;1;39mCreate list of st…odes for the current kernel[0m...
[    4.056167] systemd[1]: Starting Load Kernel Module configfs...
         Starting [0;1;39mLoad Kernel Module configfs[0m...
[    4.058677] systemd[1]: Starting Load Kernel Module drm...
         Starting [0;1;39mLoad Kernel Module drm[0m...
[    4.063631] systemd[1]: Starting Load Kernel Module fuse...
         Starting [0;1;39mLoad Kernel Module fuse[0m...
[    4.066455] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    4.069237] fuse: init (API version 7.32)
[    4.070307] systemd[1]: Starting Journal Service...
         Starting [0;1;39mJournal Service[0m...
[    4.072583] systemd[1]: Condition check resulted in Load Kernel Modules being skipped.
[    4.075185] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting [0;1;39mRemount Root and Kernel File Systems[0m...
[    4.083242] systemd[1]: Starting Apply Kernel Variables...
         Starting [0;1;39mApply Kernel Variables[0m...
[    4.089935] systemd[1]: Starting Coldplug All udev Devices...
         Starting [0;1;39mColdplug All udev Devices[0m...
[    4.098430] EXT4-fs (vda): re-mounted. Opts: (null)
[    4.103561] ext4 filesystem being remounted at / supports timestamps until 2038 (0x7fffffff)
[    4.106471] systemd[1]: Mounted POSIX Message Queue File System.
[[0;32m  OK  [0m] Mounted [0;1;39mPOSIX Message Queue File System[0m.
[    4.114738] systemd[1]: Mounted Kernel Debug File System.
[[0;32m  OK  [0m] Mounted [0;1;39mKernel Debug File System[0m.
[    4.121629] systemd[1]: Mounted Kernel Trace File System.
[[0;32m  OK  [0m] Mounted [0;1;39mKernel Trace File System[0m.
[    4.124758] systemd[1]: Mounted Temporary Directory (/tmp).
[[0;32m  OK  [0m] Mounted [0;1;39mTemporary Directory (/tmp)[0m.
[    4.129961] systemd[1]: Finished Create list of static device nodes for the current kernel.
[[0;32m  OK  [0m] Finished [0;1;39mCreate list of st nodes for the current kernel[0m.
[    4.136629] systemd[1]: Started Journal Service.
[[0;32m  OK  [0m] Started [0;1;39mJournal Service[0m.
[[0;32m  OK  [0m] Finished [0;1;39mLoad Kernel Module configfs[0m.
[[0;32m  OK  [0m] Finished [0;1;39mLoad Kernel Module drm[0m.
[[0;32m  OK  [0m] Finished [0;1;39mLoad Kernel Module fuse[0m.
[[0;32m  OK  [0m] Finished [0;1;39mRemount Root and Kernel File Systems[0m.
[[0;32m  OK  [0m] Finished [0;1;39mApply Kernel Variables[0m.
         Mounting [0;1;39mFUSE Control File System[0m...
         Mounting [0;1;39mKernel Configuration File System[0m...
         Starting [0;1;39mFlush Journal to Persistent Storage[0m...
         Starting [0;1;39mCreate System Users[0m...
[    4.168695] systemd-journald[109]: Received client request to flush runtime journal.
[    4.216476] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[[0;32m  OK  [0m] Mounted [0;1;39mFUSE Control File System[0m.
[[0;32m  OK  [0m] Mounted [0;1;39mKernel Configuration File System[0m.
[[0;32m  OK  [0m] Finished [0;1;39mCreate System Users[0m.
         Starting [0;1;39mCreate Static Device Nodes in /dev[0m...
[[0;32m  OK  [0m] Finished [0;1;39mCreate Static Device Nodes in /dev[0m.
[[0;32m  OK  [0m] Reached target [0;1;39mLocal File Systems (Pre)[0m.
         Mounting [0;1;39m/var/volatile[0m...
         Starting [0;1;39mRule-based Manage…for Device Events and Files[0m...
[[0;32m  OK  [0m] Mounted [0;1;39m/var/volatile[0m.
         Starting [0;1;39mLoad/Save Random Seed[0m...
[[0;32m  OK  [0m] Reached target [0;1;39mLocal File Systems[0m.
         Starting [0;1;39mRebuild Dynamic Linker Cache[0m...
[[0;32m  OK  [0m] Finished [0;1;39mLoad/Save Random Seed[0m.
[[0;32m  OK  [0m] Finished [0;1;39mRebuild Dynamic Linker Cache[0m.
[[0;32m  OK  [0m] Started [0;1;39mRule-based Manager for Device Events and Files[0m.
         Starting [0;1;39mNetwork Service[0m...
[[0;32m  OK  [0m] Finished [0;1;39mColdplug All udev Devices[0m.
[    4.371407] parport_pc 00:03: reported by Plug and Play ACPI
[    4.372809] Floppy drive(s): fd0 is 2.88M AMI BIOS
[    4.373612] parport0: PC-style at 0x378, irq 7 [PCSPP(,...)]
[    4.385846] FDC 0 is a S82078B
[[0;32m  OK  [0m] Started [0;1;39mNetwork Service[0m.
[[0;32m  OK  [0m] Finished [0;1;39mFlush Journal to Persistent Storage[0m.
[[0;32m  OK  [0m] Listening on [0;1;39mLoad/Save RF …itch Status /dev/rfkill Watch[0m.
         Starting [0;1;39mCreate Volatile Files and Directories[0m...
[[0;32m  OK  [0m] Finished [0;1;39mCreate Volatile Files and Directories[0m.
         Starting [0;1;39mRebuild Journal Catalog[0m...
         Starting [0;1;39mNetwork Name Resolution[0m...
         Starting [0;1;39mNetwork Time Synchronization[0m...
         Starting [0;1;39mUpdate UTMP about System Boot/Shutdown[0m...
[    4.879016] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
[    4.880255] floppy: error 10 while reading block 0
[[0;32m  OK  [0m] Started [0;1;39mNetwork Name Resolution[0m.
[[0;32m  OK  [0m] Started [0;1;39mNetwork Time Synchronization[0m.
[[0;32m  OK  [0m] Finished [0;1;39mRebuild Journal Catalog[0m.
[[0;32m  OK  [0m] Finished [0;1;39mUpdate UTMP about System Boot/Shutdown[0m.
[[0;32m  OK  [0m] Reached target [0;1;39mNetwork[0m.
[[0;32m  OK  [0m] Reached target [0;1;39mHost and Network Name Lookups[0m.
[[0;32m  OK  [0m] Reached target [0;1;39mSystem Time Set[0m.
[[0;32m  OK  [0m] Reached target [0;1;39mSystem Time Synchronized[0m.
         Starting [0;1;39mUpdate is Completed[0m...
[[0;32m  OK  [0m] Finished [0;1;39mUpdate is Completed[0m.
[[0;32m  OK  [0m] Reached target [0;1;39mSystem Initialization[0m.
[[0;32m  OK  [0m] Started [0;1;39mDaily Cleanup of Temporary Directories[0m.
[[0;32m  OK  [0m] Reached target [0;1;39mTimers[0m.
[[0;32m  OK  [0m] Listening on [0;1;39mD-Bus System Message Bus Socket[0m.
[[0;32m  OK  [0m] Reached target [0;1;39mSockets[0m.
[[0;32m  OK  [0m] Reached target [0;1;39mBasic System[0m.
[[0;32m  OK  [0m] Started [0;1;39mKernel Logging Service[0m.
[[0;32m  OK  [0m] Started [0;1;39mSystem Logging Service[0m.
[[0;32m  OK  [0m] Started [0;1;39mD-Bus System Message Bus[0m.
[[0;32m  OK  [0m] Started [0;1;39mGetty on tty1[0m.
[[0;32m  OK  [0m] Started [0;1;39mSerial Getty on ttyS0[0m.
[[0;32m  OK  [0m] Started [0;1;39mSerial Getty on ttyS1[0m.
[[0;32m  OK  [0m] Reached target [0;1;39mLogin Prompts[0m.
         Starting [0;1;39mUser Login Management[0m...
[[0;32m  OK  [0m] Started [0;1;39mUser Login Management[0m.
[[0;32m  OK  [0m] Reached target [0;1;39mMulti-User System[0m.
         Starting [0;1;39mUpdate UTMP about System Runlevel Changes[0m...
[[0;32m  OK  [0m] Finished [0;1;39mUpdate UTMP about System Runlevel Changes[0m.

Poky (Yocto Project Reference Distro) 3.3 qemux86-64 ttyS0

qemux86-64 login: 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [OE-core][PATCH] parselogs: ignore floppy error on qemu-system-x86 at boot stage
       [not found]   ` <1675A5CF675C50A9.32393@lists.openembedded.org>
@ 2021-04-19  3:52     ` Xu, Yanfei
  0 siblings, 0 replies; 4+ messages in thread
From: Xu, Yanfei @ 2021-04-19  3:52 UTC (permalink / raw)
  To: Richard Purdie, openembedded-core



On 4/14/21 2:32 PM, Xu, Yanfei wrote:
> 
> 
> On 4/9/21 9:13 PM, Richard Purdie wrote:
>> [Please note: This e-mail is from an EXTERNAL e-mail address]
>>
>> On Fri, 2021-04-09 at 17:03 +0800, Xu, Yanfei wrote:
>>> From: Yanfei Xu <yanfei.xu@windriver.com>
>>>
>>> We can disable floppy drive by BIOS on a hardware, but an empty floppy
>>> drive is connected by default on qemu-system-x86. Linux usually detect
>>> the device and modprode the matched floppy.ko at the boot stage. Due to
>>> we don't specify a floppy deivce in qemu boot arguments, then the errors
>>> about floppy reading comes out.
>>>
>>> It is harmless and normal, so we could ignore this error message on
>>> qemux86.
>>>
>>> https://lists.gnu.org/archive/html/qemu-devel/2021-04/msg01402.html
>>>
>>> Signed-off-by: Yanfei Xu <yanfei.xu@windriver.com>
>>> ---
>>>   meta/lib/oeqa/runtime/cases/parselogs.py | 2 ++
>>>   1 file changed, 2 insertions(+)
>>>
>>> diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py 
>>> b/meta/lib/oeqa/runtime/cases/parselogs.py
>>> index 4714741aff..1bb0425521 100644
>>> --- a/meta/lib/oeqa/runtime/cases/parselogs.py
>>> +++ b/meta/lib/oeqa/runtime/cases/parselogs.py
>>> @@ -88,6 +88,8 @@ qemux86_common = [
>>>       'tsc: HPET/PMTIMER calibration failed',
>>>       "modeset(0): Failed to initialize the DRI2 extension",
>>>       "glamor initialization failed",
>>> +    "blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ)",
>>> +    "floppy: error",
>>>   ] + common_errors
>>
>> I'm a little puzzled about why we don't see this on the autobuilder. 
>> Are you
>> configuring qemu differently?

Hi Richard,

I didn't configure my qemu, and I made a comparison between my and 
yocto's qemu command line outputted by runqemu. There is no difference.

With the previous email, the error log did exist in yocto's dmesg. But 
it's strange why yocto's parselog didn't report it.

Thanks,
Yanfei

> 
> Sorry for the late reply.
> 
> I build a poky raw project and do some tests:
> bitbake core-image-minimal -c testimage   //the dmesg don't contain 
> floppy error, as the kernel-modules package is not install.
> 
> Then I add IMAGE_INSTALL_append = " kernel-modules" and use systemd to 
> instead of sysvinit. The error appears in qemu dmesg.
> 
> [    4.879016] blk_update_request: I/O error, dev fd0, sector 0 op 
> 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
> [    4.880255] floppy: error 10 while reading block 0
> 
> The log 
> tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20210414061409 
> is attached
> 
> 
> 
> Best regards,
> Yanfei
> 
>>
>> Cheers,
>>
>> Richard
>>
>>
> 
> 
> 
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-04-19  3:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-09  9:03 [OE-core][PATCH] parselogs: ignore floppy error on qemu-system-x86 at boot stage Xu, Yanfei
2021-04-09 13:13 ` Richard Purdie
2021-04-14  6:32   ` Xu, Yanfei
     [not found]   ` <1675A5CF675C50A9.32393@lists.openembedded.org>
2021-04-19  3:52     ` Xu, Yanfei

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.