Skip to content

Instantly share code, notes, and snippets.

@dwrobel
Last active April 4, 2024 00:36
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dwrobel/266ad5d4e59b05ea26d8bb6725118578 to your computer and use it in GitHub Desktop.
Save dwrobel/266ad5d4e59b05ea26d8bb6725118578 to your computer and use it in GitHub Desktop.
Updating Raspberry Pi 4 bootloader EEPROM on Fedora
# Update EEPROM on Raspberry Pi 4
# Tested on Fedora Server 36 with downstream kernel (see https://rpmfusion.org/Howto/RaspberryPi for more information)
# Author: Damian Wrobel <dwrobel@ertelnet.rybnik.pl>
# Install git and strings utilities
$ sudo dnf install /usr/bin/git /usr/bin/strings
# Clone the repository
$ git clone https://github.com/raspberrypi/rpi-eeprom.git && cd rpi-eeprom/
# To update VL805 EEPROM run the following command (uses the latest version available at the time of writing):
$ PATH=$PATH:./ sudo --preserve-env=PATH ./rpi-eeprom-update -u firmware/stable/vl805-000138c0.bin
# Extract configuration from a given file (example for the latest file at the time of writing)
$ ./rpi-eeprom-config firmware/stable/pieeprom-2023-01-11.bin --out pieeprom-2023-01-11.conf.orig
# Retrieve the current config
$ ./rpi-eeprom-config >current.config
# Example of my current configuration
$ cat current.config
[all]
BOOT_UART=1
WAKE_ON_GPIO=1
POWER_OFF_ON_HALT=0
DHCP_TIMEOUT=45000
DHCP_REQ_TIMEOUT=4000
TFTP_FILE_TIMEOUT=30000
ENABLE_SELF_UPDATE=1
DISABLE_HDMI=0
BOOT_ORDER=0xf41
# Combine the pieeprom-2023-01-11.conf.orig with the current.config to satisfy your needs.
# Bootloader configuration: https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#raspberry-pi-4-bootloader-configuration
# Apply your configuration to a given EEPROM image:
$ ./rpi-eeprom-config firmware/stable/pieeprom-2023-01-11.bin --config current.config --out eeprom-new.bin
# Prepare the image to be updated on the next reboot:
$ PATH=$PATH:./ sudo --preserve-env=PATH ./rpi-eeprom-update -d -f ./eeprom-new.bin
*** INSTALLING ./eeprom-new.bin ***
CURRENT: Fri Sep 2 02:10:12 PM UTC 2022 (1662127812)
UPDATE: Wed Jan 11 05:40:52 PM UTC 2023 (1673458852)
BOOTFS: /boot
Using recovery.bin for EEPROM update
EEPROM updates pending. Please reboot to apply the update.
To cancel a pending update run "sudo rpi-eeprom-update -r".
$
# Excerpt from the serial console* output since reboot (boot from the external USB HDD):
RPi: BOOTLOADER release VERSION:0b3f4b5e DATE: 2022/09/02 TIME: 15:10:12 BOOTMODE: 0x00000006 part: 0 BUILD_TIMESTAMP=1662127812 0xed01137d 0x00c03111 0x0005b551
PM_RSTS: 0x00000020
part 00000000 reset_info 00000000
uSD voltage 3.3V
Initialising SDRAM 'Micron' 16Gb x2 total-size: 32 Gbit 3200
DDR 3200 1 0 32 152
XHCI-STOP
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
USBSTS 11
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
xHC ports 5 slots 32 intrs 4
Reset USB port-power 1000 ms
xhci_set_port_power 1 0
xhci_set_port_power 2 0
xhci_set_port_power 3 0
xhci_set_port_power 4 0
xhci_set_port_power 5 0
xhci_set_port_power 1 1
xhci_set_port_power 2 1
xhci_set_port_power 3 1
xhci_set_port_power 4 1
xhci_set_port_power 5 1
XHCI-STOP
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
USBSTS 18
XHCI-STOP
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
USBSTS 19
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
xHC ports 5 slots 32 intrs 4
Boot mode: SD (01) order f4
USB2[1] 400202e1 connected
USB2 root HUB port 1 init
DEV [01:00] 2.16 000000:01 class 9 VID 2109 PID 3431
HUB init [01:00] 2.16 000000:01
USB3[3] 00021203 connected enabled
USB3 root HUB port 3 init
DEV [02:00] 3.00 000000:03 class 0 VID 152d PID 0578
MSD device [02:00] 3.00 000000:03 conf 0 iface 0 ep 81#1024 02#1024
MSD [02:00] 3.00 000000:03 register MSD
HUB [01:00] 2.16 000000:01 init port 3 speed 3
DEV [03:01] 2.00 000003:01 class 0 VID 0bda PID 2838
HUB [01:00] 2.16 000000:01 init port 4 speed 1
DEV [04:01] 1.16 000004:01 class 255 VID 1a86 PID 7523
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SD HOST: 200000000 CTL0: 0x00800f00 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
EMMC
SD retry 1 oc 0
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SD retry 2 oc 0
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SDV1
SD CMD: 0x371a0010 (55) 0x0 0x1fff0001
Failed to open device: 'sdcard' (cmd 371a0010 status 1fff0001)
Retry SD 1
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SD HOST: 200000000 CTL0: 0x00800f00 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
EMMC
SD retry 1 oc 0
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SD retry 2 oc 0
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SDV1
SD CMD: 0x371a0010 (55) 0x0 0x1fff0001
Failed to open device: 'sdcard' (cmd 371a0010 status 1fff0001)
Boot mode: USB-MSD (04) order f
XHCI-STOP
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
USBSTS 18
XHCI-STOP
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
USBSTS 19
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
xHC ports 5 slots 32 intrs 4
USB3[3] 000002b1 connected
USB2[1] 400202e1 connected
USB2 root HUB port 1 init
DEV [01:00] 2.16 000000:01 class 9 VID 2109 PID 3431
HUB init [01:00] 2.16 000000:01
USB3[3] 00281203 connected enabled
USB3 root HUB port 3 init
DEV [02:00] 3.00 000000:03 class 0 VID 152d PID 0578
MSD device [02:00] 3.00 000000:03 conf 0 iface 0 ep 81#1024 02#1024
MSD [02:00] 3.00 000000:03 register MSD
MSD [02:00] 3.00 000000:03 LUN 0
MSD INQUIRY [02:00] 3.00 000000:03
HUB [01:00] 2.16 000000:01 init port 3 speed 3
DEV [03:01] 2.00 000003:01 class 0 VID 0bda PID 2838
HUB [01:00] 2.16 000000:01 init port 4 speed 1
DEV [04:01] 1.16 000004:01 class 255 VID 1a86 PID 7523
MSD [02:00] 3.00 000000:03 lun 0 block-count 234441648 block-size 512
MBR: 0x00002000, 999424 type: 0x0c
MBR: 0x000f6000,233433999 type: 0x83
MBR: 0x00000000, 0 type: 0x00
MBR: 0x00000000, 0 type: 0x00
Trying partition: 0
type: 16 lba: 8192 oem: 'mkfs.fat' volume: ' V ^ '
rsc 16 fat-sectors 256 c-count 62429 c-size 16
root dir cluster 1 sectors 32 entries 512
FAT16 clusters 62429
Trying partition: 0
type: 16 lba: 8192 oem: 'mkfs.fat' volume: ' V ^ '
rsc 16 fat-sectors 256 c-count 62429 c-size 16
root dir cluster 1 sectors 32 entries 512
FAT16 clusters 62429
Read config.txt bytes 1103 hnd 0x122d
SIG pieeprom.sig 4ea10afa6d4cf2cff63670f8bba1979daa2fb297702cfabe0c9fc929043d70a1 1679130138
SELF-UPDATE timestamp current 1663093218 new 1679130138
Reading EEPROM: 524288
Writing EEPROM
+++++++++++.+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++**....+
Verify BOOT EEPROM
Reading EEPROM: 524288
BOOT-EEPROM: UPDATED
EEPROMs updated. Rebooting
RESET
RPi: BOOTLOADER release VERSION:8ba17717 DATE: 2023/01/11 TIME: 17:40:52
BOOTMODE: 0x06 partition 0 build-ts BUILD_TIMESTAMP=1673458852 serial ed01137d boardrev c03111 stc 422046
PM_RSTS: 0x00000020
part 00000000 reset_info 00000000
uSD voltage 3.3V
Initialising SDRAM 'Micron' 16Gb x2 total-size: 32 Gbit 3200
DDR 3200 1 0 32 152
XHCI-STOP
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
USBSTS 1
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
xHC ports 5 slots 32 intrs 4
Reset USB port-power 1000 ms
xhci_set_port_power 1 0
xhci_set_port_power 2 0
xhci_set_port_power 3 0
xhci_set_port_power 4 0
xhci_set_port_power 5 0
xhci_set_port_power 1 1
xhci_set_port_power 2 1
xhci_set_port_power 3 1
xhci_set_port_power 4 1
xhci_set_port_power 5 1
XHCI-STOP
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
USBSTS 18
XHCI-STOP
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
USBSTS 19
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
xHC ports 5 slots 32 intrs 4
Boot mode: SD (01) order f4
USB2[1] 400202e1 connected
USB2 root HUB port 1 init
DEV [01:00] 2.16 000000:01 class 9 VID 2109 PID 3431
HUB init [01:00] 2.16 000000:01
USB3[3] 00021203 connected enabled
USB3 root HUB port 3 init
DEV [02:00] 3.00 000000:03 class 0 VID 152d PID 0578
MSD device [02:00] 3.00 000000:03 conf 0 iface 0 ep 81#1024 02#1024
MSD [02:00] 3.00 000000:03 register MSD
HUB [01:00] 2.16 000000:01 init port 3 speed 3
DEV [03:01] 2.00 000003:01 class 0 VID 0bda PID 2838
HUB [01:00] 2.16 000000:01 init port 4 speed 1
DEV [04:01] 1.16 000004:01 class 255 VID 1a86 PID 7523
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SD HOST: 200000000 CTL0: 0x00800f00 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
EMMC
SD retry 1 oc 0
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SD retry 2 oc 0
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SDV1
SD CMD: 0x371a0010 (55) 0x0 0x1fff0001
Failed to open device: 'sdcard' (cmd 371a0010 status 1fff0001)
Retry SD 1
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SD HOST: 200000000 CTL0: 0x00800f00 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
EMMC
SD retry 1 oc 0
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SD retry 2 oc 0
SD HOST: 200000000 CTL0: 0x00800000 BUS: 400000 Hz actual: 390625 HZ div: 512 (256) status: 0x1fff0000 delay: 276
SDV1
SD CMD: 0x371a0010 (55) 0x0 0x1fff0001
Failed to open device: 'sdcard' (cmd 371a0010 status 1fff0001)
Boot mode: USB-MSD (04) order f
XHCI-STOP
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
USBSTS 18
XHCI-STOP
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
USBSTS 19
xHC ver: 256 HCS: 05000420 fc000031 00e70004 HCC: 002841eb
xHC ports 5 slots 32 intrs 4
USB3[3] 000002b1 connected
USB2[1] 400202e1 connected
USB2 root HUB port 1 init
DEV [01:00] 2.16 000000:01 class 9 VID 2109 PID 3431
HUB init [01:00] 2.16 000000:01
USB3[3] 00281203 connected enabled
USB3 root HUB port 3 init
DEV [02:00] 3.00 000000:03 class 0 VID 152d PID 0578
MSD device [02:00] 3.00 000000:03 conf 0 iface 0 ep 81#1024 02#1024
MSD [02:00] 3.00 000000:03 register MSD
MSD [02:00] 3.00 000000:03 LUN 0
MSD INQUIRY [02:00] 3.00 000000:03
HUB [01:00] 2.16 000000:01 init port 3 speed 3
DEV [03:01] 2.00 000003:01 class 0 VID 0bda PID 2838
HUB [01:00] 2.16 000000:01 init port 4 speed 1
DEV [04:01] 1.16 000004:01 class 255 VID 1a86 PID 7523
MSD [02:00] 3.00 000000:03 lun 0 block-count 234441648 block-size 512
MBR: 0x00002000, 999424 type: 0x0c
MBR: 0x000f6000,233433999 type: 0x83
MBR: 0x00000000, 0 type: 0x00
MBR: 0x00000000, 0 type: 0x00
Trying partition: 0
type: 16 lba: 8192 oem: 'mkfs.fat' volume: ' V ^ '
rsc 16 fat-sectors 256 c-count 62429 c-size 16
root dir cluster 1 sectors 32 entries 512
FAT16 clusters 62429
Trying partition: 0
type: 16 lba: 8192 oem: 'mkfs.fat' volume: ' V ^ '
rsc 16 fat-sectors 256 c-count 62429 c-size 16
root dir cluster 1 sectors 32 entries 512
FAT16 clusters 62429
Read config.txt bytes 1103 hnd 0x122d
SIG pieeprom.sig 4ea10afa6d4cf2cff63670f8bba1979daa2fb297702cfabe0c9fc929043d70a1 1679130138
SELF-UPDATE timestamp current 1679130138 new 1679130138 skip
Read start4x.elf bytes 2998344 hnd 0x4c6
Read fixup4x.dat bytes 8386 hnd 0x13
0x00c03111 0x00000000 0x00001fff
MEM GPU: 76 ARM: 947 TOTAL: 1023
Firmware: 658f02cc8edcb68a568273f05d2b6ceede181e15 Jan 18 2023 12:28:54
Starting start4x.elf @ 0xfeb00200 partition 0
+
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 6.1.15-1.rpi4.fc36.armv7hl (dw@rpi4-dw) (gcc (GCC) 12.2.1 20221121 (Red Hat 12.2.1-4), GNU ld version 2.37-37.fc36) #1 SMP Tue Mar 7 13:52:56 CET 2023
[ 0.000000] CPU: ARMv7 Processor [410fd083] revision 3 (ARMv7), cr=30c5383d
[ 0.000000] CPU: div instructions available: patching division code
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
[ 0.000000] OF: fdt: Machine model: Raspberry Pi 4 Model B Rev 1.1
[ 0.000000] random: crng init done
[ 0.000000] Memory policy: Data cache writealloc
[ 0.000000] efi: UEFI not found.
[ 0.000000] Reserved memory: created CMA memory pool at 0x000000001ac00000, size 320 MiB
[ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000000000-0x000000002fffffff]
[ 0.000000] Normal empty
[ 0.000000] HighMem [mem 0x0000000030000000-0x00000000fbffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000000000-0x000000003b2fffff]
[ 0.000000] node 0: [mem 0x0000000040000000-0x00000000fbffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000fbffffff]
[ 0.000000] On node 0, zone HighMem: 256 pages in unavailable ranges
[ 0.000000] percpu: Embedded 17 pages/cpu s37524 r8192 d23916 u69632
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1010752
[ 0.000000] Kernel command line: coherent_pool=1M 8250.nr_uarts=1 snd_bcm2835.enable_headphones=0 snd_bcm2835.enable_headphones=1 snd_bcm2835.enable_hdmi=1 smsc95xx.macaddr=DC:A6:32:03:C2:FC vc_mem.mem_base=0x3eb00000 vc_mem.mem_size=0x3ff00000 usb-storage.quirks=152d:0578:u coherent_pool=16M dwc_otg.lpm_enable=0 earlyprintk console=ttyAMA0,115200 console=tty1 root=/dev/sda2 rootfstype=btrfs rootflags=subvol=root ro fsck.repair=yes rootwait libahci.ignore_sss=1 raid=noautodetect nortc selinux=0
[ 0.000000] Unknown kernel command line parameters "earlyprintk nortc raid=noautodetect", will be passed to user space.
[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[ 0.000000] software IO TLB: area num 4.
[ 0.000000] software IO TLB: mapped [mem 0x0000000014890000-0x0000000018890000] (64MB)
[ 0.000000] Memory: 3597944K/4049920K available (12288K kernel code, 1600K rwdata, 3436K rodata, 2048K init, 667K bss, 124296K reserved, 327680K cma-reserved, 3263488K highmem)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] ftrace: allocating 40526 entries in 119 pages
[ 0.000000] ftrace: allocated 119 pages with 6 groups
[ 0.000000] trace event string verifier disabled
[ 0.000000] rcu: Hierarchical RCU implementation.
[ 0.000000] Rude variant of Tasks RCU enabled.
[ 0.000000] Tracing variant of Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[ 0.000000] GIC: Using split EOI/Deactivate mode
[ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.000000] arch_timer: cp15 timer(s) running at 54.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xc743ce346, max_idle_ns: 440795203123 ns
[ 0.000000] sched_clock: 56 bits at 54MHz, resolution 18ns, wraps every 4398046511102ns
[ 0.000016] Switching to timer-based delay loop, resolution 18ns
[ 0.000327] Console: colour dummy device 80x30
[ 0.000886] printk: console [tty1] enabled
[ 0.000949] Calibrating delay loop (skipped), value calculated using timer frequency.. 108.00 BogoMIPS (lpj=540000)
[ 0.000988] pid_max: default: 32768 minimum: 301
[ 0.001104] LSM: Security Framework initializing
[ 0.001147] Yama: becoming mindful.
[ 0.001208] LSM support for eBPF active
[ 0.001381] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes, linear)
[ 0.001419] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes, linear)
[ 0.002252] CPU: Testing write buffer coherency: ok
[ 0.002315] CPU0: Spectre BHB: enabling loop workaround for all CPUs
[ 0.002680] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[ 0.003620] cblist_init_generic: Setting adjustable number of callback queues.
[ 0.003650] cblist_init_generic: Setting shift to 2 and lim to 1.
[ 0.003783] cblist_init_generic: Setting shift to 2 and lim to 1.
[ 0.003934] Setting up static identity map for 0x200000 - 0x200060
[ 0.004111] rcu: Hierarchical SRCU implementation.
[ 0.004132] rcu: Max phase no-delay instances is 1000.
[ 0.004624] EFI services will not be available.
[ 0.004942] smp: Bringing up secondary CPUs ...
[ 0.005872] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[ 0.006929] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002
[ 0.007948] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003
[ 0.008098] smp: Brought up 1 node, 4 CPUs
[ 0.008162] SMP: Total of 4 processors activated (432.00 BogoMIPS).
[ 0.008186] CPU: All CPU(s) started in HYP mode.
[ 0.008204] CPU: Virtualization extensions available.
[ 0.008854] devtmpfs: initialized
[ 0.019776] VFP support v0.3: implementor 41 architecture 3 part 40 variant 8 rev 0
[ 0.020077] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.020123] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.028833] pinctrl core: initialized pinctrl subsystem
[ 0.029523] DMI not present or invalid.
[ 0.030140] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.045700] DMA: preallocated 16384 KiB pool for atomic coherent allocations
[ 0.046320] audit: initializing netlink subsys (disabled)
[ 0.046521] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1
[ 0.047094] thermal_sys: Registered thermal governor 'step_wise'
[ 0.047463] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
[ 0.047507] hw-breakpoint: maximum watchpoint size is 8 bytes.
[ 0.047873] Serial: AMBA PL011 UART driver
[ 0.055669] bcm2835-mbox fe00b880.mailbox: mailbox enabled
[ 0.080035] raspberrypi-firmware soc:firmware: Attached to firmware from 2023-01-18T12:28:54, variant start_x
[ 0.090050] raspberrypi-firmware soc:firmware: Firmware hash is 658f02cc8edcb68a568273f05d2b6ceede181e15
[ 0.132351] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.300248] raid6: neonx8 gen() 1171 MB/s
[ 0.470367] raid6: neonx4 gen() 1656 MB/s
[ 0.640507] raid6: neonx2 gen() 1550 MB/s
[ 0.810636] raid6: neonx1 gen() 1143 MB/s
[ 0.980811] raid6: int32x8 gen() 398 MB/s
[ 1.150949] raid6: int32x4 gen() 453 MB/s
[ 1.321058] raid6: int32x2 gen() 503 MB/s
[ 1.491172] raid6: int32x1 gen() 414 MB/s
[ 1.491191] raid6: using algorithm neonx4 gen() 1656 MB/s
[ 1.661259] raid6: .... xor() 1110 MB/s, rmw enabled
[ 1.661280] raid6: using neon recovery algorithm
[ 1.662066] bcm2835-dma fe007000.dma: DMA legacy API manager, dmachans=0x1
[ 1.665472] SCSI subsystem initialized
[ 1.665682] usbcore: registered new interface driver usbfs
[ 1.665742] usbcore: registered new interface driver hub
[ 1.665806] usbcore: registered new device driver usb
[ 1.666024] usb_phy_generic phy: supply vcc not found, using dummy regulator
[ 1.666184] usb_phy_generic phy: dummy supplies not allowed for exclusive requests
[ 1.666447] pps_core: LinuxPPS API ver. 1 registered
[ 1.666469] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.666508] PTP clock support registered
[ 1.667323] NetLabel: Initializing
[ 1.667346] NetLabel: domain hash size = 128
[ 1.667364] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 1.667444] NetLabel: unlabeled traffic allowed by default
[ 1.667651] vgaarb: loaded
[ 1.668152] clocksource: Switched to clocksource arch_sys_counter
[ 1.730258] VFS: Disk quotas dquot_6.6.0
[ 1.730364] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 1.730536] FS-Cache: Loaded
[ 1.730744] CacheFiles: Loaded
[ 1.738476] NET: Registered PF_INET protocol family
[ 1.738734] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 1.740713] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear)
[ 1.740764] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 1.740863] TCP established hash table entries: 8192 (order: 3, 32768 bytes, linear)
[ 1.740939] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 1.741097] TCP: Hash tables configured (established 8192 bind 8192)
[ 1.741234] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
[ 1.741284] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
[ 1.741463] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 1.741975] RPC: Registered named UNIX socket transport module.
[ 1.742002] RPC: Registered udp transport module.
[ 1.742021] RPC: Registered tcp transport module.
[ 1.742039] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 1.742068] PCI: CLS 0 bytes, default 64
[ 1.743565] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 7 counters available
[ 1.745313] Initialise system trusted keyrings
[ 1.745532] workingset: timestamp_bits=14 max_order=20 bucket_order=6
[ 1.752683] zbud: loaded
[ 1.754590] NFS: Registering the id_resolver key type
[ 1.754631] Key type id_resolver registered
[ 1.754651] Key type id_legacy registered
[ 1.754765] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 1.754790] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[ 1.755909] xor: measuring software checksum speed
[ 1.762449] arm4regs : 1516 MB/sec
[ 1.772047] 8regs : 1028 MB/sec
[ 1.781652] 32regs : 1026 MB/sec
[ 1.785747] neon : 2413 MB/sec
[ 1.785766] xor: using function: neon (2413 MB/sec)
[ 1.785793] Key type asymmetric registered
[ 1.785814] Asymmetric key parser 'x509' registered
[ 1.786046] bounce: pool size: 64 pages
[ 1.786208] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[ 1.786413] io scheduler mq-deadline registered
[ 1.786437] io scheduler kyber registered
[ 1.792771] brcm-pcie fd500000.pcie: host bridge /scb/pcie@7d500000 ranges:
[ 1.792823] brcm-pcie fd500000.pcie: No bus range found for /scb/pcie@7d500000, using [bus 00-ff]
[ 1.792897] brcm-pcie fd500000.pcie: MEM 0x0600000000..0x063fffffff -> 0x00c0000000
[ 1.792967] brcm-pcie fd500000.pcie: IB MEM 0x0000000000..0x00bfffffff -> 0x0400000000
[ 1.793845] brcm-pcie fd500000.pcie: PCI host bridge to bus 0000:00
[ 1.793874] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 1.793902] pci_bus 0000:00: root bus resource [mem 0x600000000-0x63fffffff] (bus address [0xc0000000-0xffffffff])
[ 1.793971] pci 0000:00:00.0: [14e4:2711] type 01 class 0x060400
[ 1.794124] pci 0000:00:00.0: PME# supported from D0 D3hot
[ 1.797080] PCI: bus0: Fast back to back transfers disabled
[ 1.797109] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 1.797297] pci_bus 0000:01: supply vpcie3v3 not found, using dummy regulator
[ 1.797475] pci_bus 0000:01: supply vpcie3v3aux not found, using dummy regulator
[ 1.797564] pci_bus 0000:01: supply vpcie12v not found, using dummy regulator
[ 1.860250] brcm-pcie fd500000.pcie: link up, 5.0 GT/s PCIe x1 (SSC)
[ 1.860412] pci 0000:01:00.0: [1106:3483] type 00 class 0x0c0330
[ 1.860530] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[ 1.860909] pci 0000:01:00.0: PME# supported from D0 D3cold
[ 1.861426] PCI: bus1: Fast back to back transfers disabled
[ 1.861452] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 1.861497] pci 0000:00:00.0: BAR 8: assigned [mem 0x600000000-0x6000fffff]
[ 1.861530] pci 0000:01:00.0: BAR 0: assigned [mem 0x600000000-0x600000fff 64bit]
[ 1.861617] pci 0000:00:00.0: PCI bridge to [bus 01]
[ 1.861644] pci 0000:00:00.0: bridge window [mem 0x600000000-0x6000fffff]
[ 1.861912] pcieport 0000:00:00.0: enabling device (0000 -> 0002)
[ 1.862100] pcieport 0000:00:00.0: PME: Signaling with IRQ 45
[ 1.870150] Serial: 8250/16550 driver, 1 ports, IRQ sharing enabled
[ 1.872184] iproc-rng200 fe104000.rng: hwrng registered
[ 1.872400] vc-mem: phys_addr:0x00000000 mem_base=0x3eb00000 mem_size:0x3ff00000(1023 MiB)
[ 1.873326] gpiomem-bcm2835 fe200000.gpiomem: Initialised: Registers at 0xfe200000
[ 1.880930] loop: module loaded
[ 1.881465] Loading iSCSI transport class v2.0-870.
[ 1.885341] bcmgenet fd580000.ethernet: GENET 5.0 EPHY: 0x0000
[ 1.978263] unimac-mdio unimac-mdio.-19: Broadcom UniMAC MDIO bus
[ 1.979208] usbcore: registered new interface driver r8152
[ 1.979282] usbcore: registered new interface driver lan78xx
[ 1.979355] usbcore: registered new interface driver smsc95xx
[ 1.980817] xhci_hcd 0000:01:00.0: enabling device (0140 -> 0142)
[ 1.980973] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 1.981014] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[ 1.985431] xhci_hcd 0000:01:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x0001e40000000890
[ 1.986408] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 1.986442] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[ 1.986477] xhci_hcd 0000:01:00.0: Host supports USB 3.0 SuperSpeed
[ 1.986754] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[ 1.986788] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.986817] usb usb1: Product: xHCI Host Controller
[ 1.986837] usb usb1: Manufacturer: Linux 6.1.15-1.rpi4.fc36.armv7hl xhci-hcd
[ 1.986859] usb usb1: SerialNumber: 0000:01:00.0
[ 1.987441] hub 1-0:1.0: USB hub found
[ 1.987503] hub 1-0:1.0: 1 port detected
[ 1.988282] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[ 1.988318] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.988345] usb usb2: Product: xHCI Host Controller
[ 1.988367] usb usb2: Manufacturer: Linux 6.1.15-1.rpi4.fc36.armv7hl xhci-hcd
[ 1.988389] usb usb2: SerialNumber: 0000:01:00.0
[ 1.988932] hub 2-0:1.0: USB hub found
[ 1.989014] hub 2-0:1.0: 4 ports detected
[ 1.990318] dwc_otg: version 3.00a 10-AUG-2012 (platform bus)
[ 1.990884] usbcore: registered new interface driver uas
[ 1.990973] usbcore: registered new interface driver usb-storage
[ 1.991175] mousedev: PS/2 mouse device common for all mice
[ 1.994973] sdhci: Secure Digital Host Controller Interface driver
[ 1.995002] sdhci: Copyright(c) Pierre Ossman
[ 1.995349] sdhci-pltfm: SDHCI platform and OF driver helper
[ 2.000165] ledtrig-cpu: registered to indicate activity on CPUs
[ 2.000293] hid: raw HID events driver (C) Jiri Kosina
[ 2.000359] usbcore: registered new interface driver usbhid
[ 2.000368] usbhid: USB HID core driver
[ 2.002622] Initializing XFRM netlink socket
[ 2.002849] NET: Registered PF_INET6 protocol family
[ 2.003418] Segment Routing with IPv6
[ 2.003438] In-situ OAM (IOAM) with IPv6
[ 2.003484] NET: Registered PF_PACKET protocol family
[ 2.003590] Key type dns_resolver registered
[ 2.003691] Registering SWP/SWPB emulation handler
[ 2.004032] registered taskstats version 1
[ 2.004068] Loading compiled-in X.509 certificates
[ 2.004466] Key type .fscrypt registered
[ 2.004478] Key type fscrypt-provisioning registered
[ 2.005290] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
[ 2.011067] uart-pl011 fe201000.serial: there is not valid maps for state default
[ 2.011271] uart-pl011 fe201000.serial: cts_event_workaround enabled
[ 2.011335] fe201000.serial: ttyAMA0 at MMIO 0xfe201000 (irq = 50, base_baud = 0) is a PL011 rev2
[ 2.298199] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[ 2.303301] printk: console [ttyAMA0] enabled
[ 2.490711] usb 1-1: New USB device found, idVendor=2109, idProduct=3431, bcdDevice= 4.21
[ 2.510947] bcm2835-wdt bcm2835-wdt: Broadcom BCM2835 watchdog timer
[ 2.515298] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 2.522310] bcm2835-power bcm2835-power: Broadcom BCM2835 power domains driver
[ 2.527390] usb 1-1: Product: USB2.0 Hub
[ 2.527838] mmc-bcm2835 fe300000.mmcnr: mmc_debug:0 mmc_debug2:0
[ 3.519273] mmc-bcm2835 fe300000.mmcnr: DMA channel allocated
[ 3.526224] hub 1-1:1.0: USB hub found
[ 3.530196] hub 1-1:1.0: 4 ports detected
[ 3.553420] of_cfs_init
[ 3.555955] of_cfs_init: OK
[ 3.560561] mmc1: Controller never released inhibit bit(s).
[ 3.602916] mmc0: SDHCI controller on fe340000.mmc [fe340000.mmc] using ADMA
[ 3.610158] Waiting for root device /dev/sda2...
[ 3.646283] mmc1: new high speed SDIO card at address 0001
[ 3.668453] usb 2-2: new SuperSpeed USB device number 2 using xhci_hcd
[ 3.699920] usb 2-2: New USB device found, idVendor=152d, idProduct=0578, bcdDevice= 2.04
[ 3.708115] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.715273] usb 2-2: Product: USB to ATA/ATAPI Bridge
[ 3.720340] usb 2-2: Manufacturer: JMicron
[ 3.724440] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 3.731403] usb 2-2: UAS is ignored for this device, using usb-storage instead
[ 3.738673] usb 2-2: UAS is ignored for this device, using usb-storage instead
[ 3.745898] usb-storage 2-2:1.0: USB Mass Storage device detected
[ 3.752256] usb-storage 2-2:1.0: Quirks match for vid 152d pid 0578: 1800000
[ 3.759417] scsi host0: usb-storage 2-2:1.0
[ 3.858183] usb 1-1.3: new high-speed USB device number 3 using xhci_hcd
[ 4.000074] usb 1-1.3: New USB device found, idVendor=0bda, idProduct=2838, bcdDevice= 1.00
[ 4.008477] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4.015808] usb 1-1.3: Product: RTL2838UHIDIR
[ 4.020190] usb 1-1.3: Manufacturer: Realtek
[ 4.024473] usb 1-1.3: SerialNumber: 00000001
[ 4.138203] usb 1-1.4: new full-speed USB device number 4 using xhci_hcd
[ 4.274505] usb 1-1.4: New USB device found, idVendor=1a86, idProduct=7523, bcdDevice= 2.54
[ 4.282905] usb 1-1.4: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 4.290252] usb 1-1.4: Product: USB2.0-Ser!
[ 4.799148] scsi 0:0:0:0: Direct-Access JMicron Generic 0204 PQ: 0 ANSI: 6
[ 4.808273] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[ 4.816451] sd 0:0:0:0: [sda] Write Protect is off
[ 4.822037] sd 0:0:0:0: [sda] Disabling FUA
[ 4.826241] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.837984] sda: sda1 sda2
[ 4.841050] sd 0:0:0:0: [sda] Attached SCSI disk
[ 4.868618] BTRFS: device label _btrfs.007 devid 1 transid 223030 /dev/root scanned by swapper/0 (1)
[ 4.878709] BTRFS info (device sda2): using crc32c (crc32c-generic) checksum algorithm
[ 4.886687] BTRFS info (device sda2): using free space tree
[ 4.943661] VFS: Mounted root (btrfs filesystem) readonly on device 0:17.
[ 4.951270] devtmpfs: mounted
[ 4.959285] Freeing unused kernel image (initmem) memory: 2048K
[ 4.965442] Run /sbin/init as init process
[ 5.228674] systemd[1]: RTC configured in localtime, applying delta of 60 minutes to system time.
[ 5.237599] systemd[1]: System time before build time, advancing clock.
[ 5.372242] systemd[1]: systemd v250.10-2.fc36 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 5.404772] systemd[1]: Detected architecture arm.
[ 5.411176] systemd[1]: No hostname configured, using default hostname.
[ 5.417958] systemd[1]: Hostname set to <fedora>.
[ 5.633266] systemd[1]: Failed to load BPF object: No such process
[ 5.639838] systemd[1]: Using hardware watchdog 'Broadcom BCM2835 Watchdog timer', version 0, device /dev/watchdog0
[ 5.650309] systemd[1]: Watchdog running with a timeout of 15s.
[ 5.750825] systemd-gpt-auto-generator[151]: File system behind root file system is reported by btrfs to be backed by pseudo-device /dev/root, which is not a valid userspace accessible device node. Cannot determine correct backing block device.
[ 5.772788] uart-pl011 fe201000.serial: no DMA platform data
[ 5.991416] systemd[138]: /usr/lib/systemd/system-generators/systemd-gpt-auto-generator failed with exit status 1.
[ 6.441009] systemd[1]: Queued start job for default target multi-user.target.
[ 6.493525] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[ 6.503937] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 6.513649] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[ 6.524424] systemd[1]: Created slice system-sshd\x2dkeygen.slice - Slice /system/sshd-keygen.
[ 6.533962] systemd[1]: Created slice user.slice - User and Session Slice.
[ 6.541204] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 6.552304] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 6.565232] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 6.574441] systemd[1]: Reached target slices.target - Slice Units.
[ 6.580950] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 6.589696] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ 6.598308] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ 6.606424] systemd[1]: multipathd.socket - multipathd control socket was skipped because of a failed condition check (ConditionPathExists=/etc/multipath.conf).
[ 6.625284] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[ 6.633781] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 6.643076] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[ 6.651852] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 6.661270] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 6.669801] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 6.678370] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 6.687306] systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket.
[ 6.696254] systemd[1]: dev-hugepages.mount - Huge Pages File System was skipped because of a failed condition check (ConditionPathExists=/sys/kernel/mm/hugepages).
[ 6.758753] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 6.773201] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 6.785601] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 6.798047] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 6.810894] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 6.823027] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 6.834667] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 6.847333] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 6.857307] fuse: init (API version 7.37)
[ 6.861905] systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line...
[ 6.877324] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 6.887009] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because all trigger condition checks failed.
[ 6.903266] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 6.918075] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 6.926484] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 6.934718] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 6.945950] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 6.956014] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 6.963610] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 6.973256] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 6.980413] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 6.988994] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 6.996122] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 7.004897] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 7.013607] systemd[1]: Finished systemd-network-generator.service - Generate network units from Kernel command line.
[ 7.025409] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 7.130061] systemd[1]: Activating swap var-cache-swapfile.swap - /var/cache/swapfile...
[ 7.145097] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 7.157385] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 7.166571] systemd[1]: iscsi-onboot.service - Special handling of early boot iSCSI sessions was skipped because of a failed condition check (ConditionDirectoryNotEmpty=/sys/class/iscsi_session).
[ 7.184374] systemd[1]: ostree-remount.service - OSTree Remount OS/ Bind Mounts was skipped because of a failed condition check (ConditionKernelCommandLine=ostree).
[ 7.199754] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of a failed condition check (ConditionFirstBoot=yes).
[ 7.200030] Adding 2097148k swap on /var/cache/swapfile. Priority:200 extents:2 across:2339968k FS
[ 7.223937] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[ 7.241813] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[ 7.254341] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 7.262954] systemd[1]: systemd-sysusers.service - Create System Users was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[ 7.281060] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 7.296824] systemd[1]: Starting systemd-vconsole-setup.service - Setup Virtual Console...
[ 7.307866] systemd[1]: Activated swap var-cache-swapfile.swap - /var/cache/swapfile.
[ 7.317635] systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
[ 7.327347] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 7.336222] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 7.345644] systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
[ 7.354588] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[ 7.363185] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[ 7.373502] systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of a failed condition check (ConditionFirstBoot=yes).
[ 7.386806] systemd[1]: Reached target swap.target - Swaps.
[ 7.468799] systemd[1]: Mounting tmp.mount - Temporary Directory /tmp...
[ 7.480199] systemd[1]: Started haveged.service - Entropy Daemon based on the HAVEGE algorithm.
[ 7.494903] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 7.505982] systemd[1]: Starting systemd-udev-settle.service - Wait for udev To Complete Device Initialization...
[ 7.522321] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[ 7.535653] systemd[1]: Finished systemd-vconsole-setup.service - Setup Virtual Console.
[ 7.544726] systemd[1]: Mounted tmp.mount - Temporary Directory /tmp.
[ 7.649908] systemd[1]: Started systemd-journald.service - Journal Service.
[ 7.657241] audit: type=1130 audit(1675296002.409:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[
.
.
*) All pre-built images from https://rpmfusion.org/Howto/RaspberryPi#Pre-built_images_.28f36.29 have serial console enabled by default.
@RobotsAreCrazy
Copy link

Hi, Can you help me please?

I'm on the last step of flashing the new bin, on running cmd i keep getting error of rpi-eeprom-digest not found

Any ideas?

@mateuszmierzwinski
Copy link

export PATH=$(pwd):$PATH

Then execute command again.

@dwrobel
Copy link
Author

dwrobel commented Sep 13, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment