Works! Now the raspebrry recognises storage perfectly.Yes. As long as it's not underneath a label that is disabled (e.g. [pi2] on a pi5) anywhere is fine.Is it in "/boot/firmware/config.txt"?
Do I have to put it under some specific label?
Following an [all] near the end would be fine whatever is preceding. At the very top would also always be safe.
After editing and rebooting. check "uname -a".
Previously it would contain something like "6.6.20+rpt-rpi-2712" and after it should contain something like "6.6.20+rpt-rpi-v8".
(i.e. you want the 2712 to be replaced with v8).
Code:
Before:@raspberrypi:~ $ uname -aLinux raspberrypi 6.6.20+rpt-rpi-2712 #1 SMP PREEMPT Debian 1:6.6.20-1+rpt1 (2024-03-07) aarch64 GNU/LinuxAfter:@raspberrypi:~ $ uname -aLinux raspberrypi 6.6.20+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.6.20-1+rpt1 (2024-03-07) aarch64 GNU/Linux
Code:
@raspberrypi:~ $ sudo dmesg[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x414fd0b1][ 0.000000] Linux version 6.6.20+rpt-rpi-v8 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT Debian 1:6.6.20-1+rpt1 (2024-03-07)[ 0.000000] KASLR enabled[ 0.000000] random: crng init done[ 0.000000] Machine model: Raspberry Pi 5 Model B Rev 1.0[ 0.000000] efi: UEFI not found.[ 0.000000] Reserved memory: created CMA memory pool at 0x0000000001c00000, size 320 MiB[ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool[ 0.000000] OF: reserved mem: 0x0000000001c00000..0x0000000015bfffff (327680 KiB) map reusable linux,cma[ 0.000000] OF: reserved mem: 0x0000000000000000..0x000000000007ffff (512 KiB) nomap non-reusable atf@0[ 0.000000] OF: reserved mem: 0x000000003fd165c0..0x000000003fd165f7 (0 KiB) nomap non-reusable nvram@0[ 0.000000] Zone ranges:[ 0.000000] DMA [mem 0x0000000000000000-0x00000000ffffffff][ 0.000000] DMA32 empty[ 0.000000] Normal [mem 0x0000000100000000-0x00000001ffffffff][ 0.000000] Movable zone start for each node[ 0.000000] Early memory node ranges[ 0.000000] node 0: [mem 0x0000000000000000-0x000000000007ffff][ 0.000000] node 0: [mem 0x0000000000080000-0x000000003fbfffff][ 0.000000] node 0: [mem 0x0000000040000000-0x00000001ffffffff][ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000001ffffffff][ 0.000000] On node 0, zone DMA: 1024 pages in unavailable ranges[ 0.000000] psci: probing for conduit method from DT.[ 0.000000] psci: PSCIv1.1 detected in firmware.[ 0.000000] psci: Using standard PSCI v0.2 function IDs[ 0.000000] psci: MIGRATE_INFO_TYPE not supported.[ 0.000000] psci: SMC Calling Convention v1.2[ 0.000000] percpu: Embedded 30 pages/cpu s85672 r8192 d29016 u122880[ 0.000000] pcpu-alloc: s85672 r8192 d29016 u122880 alloc=30*4096[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [ 0.000000] Detected PIPT I-cache on CPU0[ 0.000000] CPU features: detected: Virtualization Host Extensions[ 0.000000] CPU features: detected: Hardware dirty bit management[ 0.000000] CPU features: detected: Spectre-v4[ 0.000000] CPU features: detected: Spectre-BHB[ 0.000000] CPU features: kernel page table isolation forced ON by KASLR[ 0.000000] CPU features: detected: Kernel page table isolation (KPTI)[ 0.000000] alternatives: applying boot alternatives[ 0.000000] Kernel command line: reboot=w coherent_pool=1M 8250.nr_uarts=1 pci=pcie_bus_safe snd_bcm2835.enable_compat_alsa=0 snd_bcm2835.enable_hdmi=1 smsc95xx.macaddr=2C:CF:67:08:08:B1 vc_mem.mem_base=0x3fc00000 vc_mem.mem_size=0x40000000 console=ttyAMA10,115200 console=tty1 root=PARTUUID=f7cb7169-02 rootfstype=ext4 fsck.repair=yes rootwait quiet splash plymouth.ignore-serial-consoles cfg80211.ieee80211_regdom=ES[ 0.000000] Unknown kernel command line parameters "splash", will be passed to user space.[ 0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)[ 0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 2063360[ 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 0x00000000fbfff000-0x00000000fffff000] (64MB)[ 0.000000] Memory: 7786600K/8384512K available (13376K kernel code, 2210K rwdata, 4260K rodata, 4864K init, 1083K bss, 270232K reserved, 327680K cma-reserved)[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1[ 0.000000] ftrace: allocating 43116 entries in 169 pages[ 0.000000] ftrace: allocated 169 pages with 4 groups[ 0.000000] trace event string verifier disabled[ 0.000000] rcu: Preemptible hierarchical RCU implementation.[ 0.000000] rcu: RCU event tracing is enabled.[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.[ 0.000000] Trampoline variant of Tasks RCU enabled.[ 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 25 jiffies.[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4[ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0[ 0.000000] Root IRQ handler: gic_handle_irq[ 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.000158] Console: colour dummy device 80x25[ 0.000162] printk: console [tty1] enabled[ 0.000194] Calibrating delay loop (skipped), value calculated using timer frequency.. 108.00 BogoMIPS (lpj=216000)[ 0.000199] pid_max: default: 32768 minimum: 301[ 0.000221] LSM: initializing lsm=capability,integrity[ 0.000288] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)[ 0.000309] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)[ 0.000635] cgroup: Disabling memory control group subsystem[ 0.001088] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.[ 0.001116] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.[ 0.001149] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.[ 0.001221] rcu: Hierarchical SRCU implementation.[ 0.001222] rcu: Max phase no-delay instances is 1000.[ 0.001848] EFI services will not be available.[ 0.001948] smp: Bringing up secondary CPUs ...[ 0.002134] Detected PIPT I-cache on CPU1[ 0.002179] CPU1: Booted secondary processor 0x0000000100 [0x414fd0b1][ 0.002389] Detected PIPT I-cache on CPU2[ 0.002424] CPU2: Booted secondary processor 0x0000000200 [0x414fd0b1][ 0.002634] Detected PIPT I-cache on CPU3[ 0.002666] CPU3: Booted secondary processor 0x0000000300 [0x414fd0b1][ 0.002692] smp: Brought up 1 node, 4 CPUs[ 0.002697] SMP: Total of 4 processors activated.[ 0.002699] CPU features: detected: 32-bit EL0 Support[ 0.002701] CPU features: detected: Data cache clean to the PoU not required for I/D coherence[ 0.002703] CPU features: detected: Common not Private translations[ 0.002705] CPU features: detected: CRC32 instructions[ 0.002707] CPU features: detected: RCpc load-acquire (LDAPR)[ 0.002709] CPU features: detected: LSE atomic instructions[ 0.002710] CPU features: detected: Privileged Access Never[ 0.002712] CPU features: detected: RAS Extension Support[ 0.002715] CPU features: detected: Speculative Store Bypassing Safe (SSBS)[ 0.002749] CPU: All CPU(s) started at EL2[ 0.002750] alternatives: applying system-wide alternatives[ 0.004615] devtmpfs: initialized[ 0.007613] Enabled cp15_barrier support[ 0.007619] Enabled setend support[ 0.007667] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns[ 0.007673] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)[ 0.011017] pinctrl core: initialized pinctrl subsystem[ 0.011160] DMI not present or invalid.[ 0.011323] NET: Registered PF_NETLINK/PF_ROUTE protocol family[ 0.011811] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations[ 0.011871] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations[ 0.011957] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations[ 0.011975] audit: initializing netlink subsys (disabled)[ 0.012026] audit: type=2000 audit(0.008:1): state=initialized audit_enabled=0 res=1[ 0.012155] thermal_sys: Registered thermal governor 'step_wise'[ 0.012175] cpuidle: using governor menu[ 0.012242] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.[ 0.012269] ASID allocator initialised with 32768 entries[ 0.012577] Serial: AMBA PL011 UART driver[ 0.013494] bcm2835-mbox 107c013880.mailbox: mailbox enabled[ 0.013850] 107d001000.serial: ttyAMA10 at MMIO 0x107d001000 (irq = 15, base_baud = 0) is a PL011 rev2[ 0.013860] printk: console [ttyAMA10] enabled[ 0.020083] raspberrypi-firmware soc:firmware: Attached to firmware from 2024-02-16T15:28:41, variant start_cd[ 0.024079] raspberrypi-firmware soc:firmware: Firmware hash is 4c845bd300000000000000000000000000000000[ 0.030370] Modules: 2G module region forced by RANDOMIZE_MODULE_REGION_FULL[ 0.030372] Modules: 0 pages in range for non-PLT usage[ 0.030374] Modules: 517792 pages in range for PLT usage[ 0.034613] bcm2835-dma 1000010000.dma: DMA legacy API manager, dmachans=0x1[ 0.034975] iommu: Default domain type: Translated[ 0.034978] iommu: DMA domain TLB invalidation policy: strict mode[ 0.035066] SCSI subsystem initialized[ 0.035103] usbcore: registered new interface driver usbfs[ 0.035110] usbcore: registered new interface driver hub[ 0.035119] usbcore: registered new device driver usb[ 0.035202] pps_core: LinuxPPS API ver. 1 registered[ 0.035204] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>[ 0.035208] PTP clock support registered[ 0.035497] vgaarb: loaded[ 0.035733] clocksource: Switched to clocksource arch_sys_counter[ 0.319234] VFS: Disk quotas dquot_6.6.0[ 0.319245] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)[ 0.319271] FS-Cache: Loaded[ 0.319314] CacheFiles: Loaded[ 0.320912] NET: Registered PF_INET protocol family[ 0.321064] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)[ 0.323497] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)[ 0.323539] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)[ 0.323545] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)[ 0.323838] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)[ 0.325420] TCP: Hash tables configured (established 65536 bind 65536)[ 0.325560] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)[ 0.325671] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)[ 0.325770] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)[ 0.325925] NET: Registered PF_UNIX/PF_LOCAL protocol family[ 0.326080] RPC: Registered named UNIX socket transport module.[ 0.326083] RPC: Registered udp transport module.[ 0.326084] RPC: Registered tcp transport module.[ 0.326086] RPC: Registered tcp-with-tls transport module.[ 0.326087] RPC: Registered tcp NFSv4.1 backchannel transport module.[ 0.326094] PCI: CLS 0 bytes, default 64[ 0.326236] kvm [1]: IPA Size Limit: 40 bits[ 0.326263] kvm [1]: vgic interrupt IRQ9[ 0.326278] kvm [1]: VHE mode initialized successfully[ 0.326643] Initialise system trusted keyrings[ 0.326707] Trying to unpack rootfs image as initramfs...[ 0.327658] workingset: timestamp_bits=46 max_order=21 bucket_order=0[ 0.327677] zbud: loaded[ 0.327873] NFS: Registering the id_resolver key type[ 0.327884] Key type id_resolver registered[ 0.327886] Key type id_legacy registered[ 0.327892] nfs4filelayout_init: NFSv4 File Layout Driver Registering...[ 0.327895] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...[ 0.328053] Key type asymmetric registered[ 0.328055] Asymmetric key parser 'x509' registered[ 0.328071] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)[ 0.328152] io scheduler mq-deadline registered[ 0.328159] io scheduler kyber registered[ 0.328180] io scheduler bfq registered[ 0.328433] irq_brcmstb_l2: registered L2 intc (/soc/interrupt-controller@7c502000, parent irq: 26)[ 0.328495] irq_brcmstb_l2: registered L2 intc (/soc/intc@7d503000, parent irq: 27)[ 0.328541] irq_brcmstb_l2: registered L2 intc (/soc/intc@7d508380, parent irq: 28)[ 0.328594] irq_brcmstb_l2: registered L2 intc (/soc/intc@7d508400, parent irq: 29)[ 0.328653] irq_brcmstb_l2: registered L2 intc (/soc/interrupt-controller@7d510600, parent irq: 30)[ 0.328716] irq_brcmstb_l2: registered L2 intc (/soc/intc@7d517b00, parent irq: 31)[ 0.364004] Serial: 8250/16550 driver, 1 ports, IRQ sharing enabled[ 0.364477] 107d50c000.serial: ttyS0 at MMIO 0x107d50c000 (irq = 33, base_baud = 6000000) is a Broadcom BCM7271 UART[ 0.364534] serial serial0: tty port ttyS0 registered[ 0.364934] iproc-rng200 107d208000.rng: hwrng registered[ 0.364996] vc-mem: phys_addr:0x00000000 mem_base=0x3fc00000 mem_size:0x40000000(1024 MiB)[ 0.365261] bcm2712-iommu-cache 1000005b00.iommuc: bcm2712_iommu_cache_probe[ 0.367676] brd: module loaded[ 0.369304] loop: module loaded[ 0.369445] bcm2835-power bcm2835-power: Broadcom BCM2835 power domains driver[ 0.369581] Loading iSCSI transport class v2.0-870.[ 0.370601] usbcore: registered new device driver r8152-cfgselector[ 0.370612] usbcore: registered new interface driver r8152[ 0.370618] usbcore: registered new interface driver lan78xx[ 0.370626] usbcore: registered new interface driver smsc95xx[ 0.370683] dwc_otg: version 3.00a 10-AUG-2012 (platform bus)[ 0.370704] dwc_otg: FIQ enabled[ 0.370706] dwc_otg: NAK holdoff enabled[ 0.370708] dwc_otg: FIQ split-transaction FSM enabled[ 0.370712] Module dwc_common_port init[ 0.370902] usbcore: registered new interface driver uas[ 0.370910] usbcore: registered new interface driver usb-storage[ 0.371009] mousedev: PS/2 mouse device common for all mice[ 0.379036] rpi-rtc soc:rpi_rtc: registered as rtc0[ 0.380545] rpi-rtc soc:rpi_rtc: setting system clock to 2024-04-13T17:03:37 UTC (1713027817)[ 0.380982] bcm2835-wdt bcm2835-wdt: Poweroff handler already present![ 0.380986] bcm2835-wdt bcm2835-wdt: Broadcom BCM2835 watchdog timer[ 0.383465] sdhci: Secure Digital Host Controller Interface driver[ 0.383470] sdhci: Copyright(c) Pierre Ossman[ 0.383517] sdhci-pltfm: SDHCI platform and OF driver helper[ 0.383826] ledtrig-cpu: registered to indicate activity on CPUs[ 0.383870] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....[ 0.383886] hid: raw HID events driver (C) Jiri Kosina[ 0.383910] usbcore: registered new interface driver usbhid[ 0.383912] usbhid: USB HID core driver[ 0.387727] hw perfevents: enabled with armv8_cortex_a76 PMU driver, 7 counters available[ 0.387922] NET: Registered PF_PACKET protocol family[ 0.387951] Key type dns_resolver registered[ 0.393081] registered taskstats version 1[ 0.393152] Loading compiled-in X.509 certificates[ 0.395840] Key type .fscrypt registered[ 0.395843] Key type fscrypt-provisioning registered[ 0.396683] brcm-pcie 1000120000.pcie: host bridge /axi/pcie@120000 ranges:[ 0.396694] brcm-pcie 1000120000.pcie: No bus range found for /axi/pcie@120000, using [bus 00-ff][ 0.396705] brcm-pcie 1000120000.pcie: MEM 0x1f00000000..0x1ffffffffb -> 0x0000000000[ 0.396712] brcm-pcie 1000120000.pcie: MEM 0x1c00000000..0x1effffffff -> 0x0400000000[ 0.396720] brcm-pcie 1000120000.pcie: IB MEM 0x1f00000000..0x1f003fffff -> 0x0000000000[ 0.396725] brcm-pcie 1000120000.pcie: IB MEM 0x0000000000..0x0fffffffff -> 0x1000000000[ 0.398234] brcm-pcie 1000120000.pcie: Forcing gen 2[ 0.398471] brcm-pcie 1000120000.pcie: PCI host bridge to bus 0000:00[ 0.398474] pci_bus 0000:00: root bus resource [bus 00-ff][ 0.398478] pci_bus 0000:00: root bus resource [mem 0x1f00000000-0x1ffffffffb] (bus address [0x00000000-0xfffffffb])[ 0.398482] pci_bus 0000:00: root bus resource [mem 0x1c00000000-0x1effffffff pref] (bus address [0x400000000-0x6ffffffff])[ 0.398496] pci 0000:00:00.0: [14e4:2712] type 01 class 0x060400[ 0.398524] pci 0000:00:00.0: PME# supported from D0 D3hot[ 0.399479] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring[ 0.503638] brcm-pcie 1000120000.pcie: link up, 5.0 GT/s PCIe x4 (!SSC)[ 0.503677] pci 0000:01:00.0: [1de4:0001] type 00 class 0x020000[ 0.503695] pci 0000:01:00.0: reg 0x10: [mem 0xffffc000-0xffffffff][ 0.503704] pci 0000:01:00.0: reg 0x14: [mem 0xffc00000-0xffffffff][ 0.503711] pci 0000:01:00.0: reg 0x18: [mem 0xffff0000-0xffffffff][ 0.503783] pci 0000:01:00.0: supports D1[ 0.503786] pci 0000:01:00.0: PME# supported from D0 D1 D3hot D3cold[ 0.515643] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01[ 0.515653] pci 0000:00:00.0: BAR 8: assigned [mem 0x1f00000000-0x1f005fffff][ 0.515659] pci 0000:01:00.0: BAR 1: assigned [mem 0x1f00000000-0x1f003fffff][ 0.515665] pci 0000:01:00.0: BAR 2: assigned [mem 0x1f00400000-0x1f0040ffff][ 0.515669] pci 0000:01:00.0: BAR 0: assigned [mem 0x1f00410000-0x1f00413fff][ 0.515675] pci 0000:00:00.0: PCI bridge to [bus 01][ 0.515678] pci 0000:00:00.0: bridge window [mem 0x1f00000000-0x1f005fffff][ 0.515683] pci 0000:00:00.0: Max Payload Size set to 256/ 512 (was 128), Max Read Rq 512[ 0.515693] pci 0000:01:00.0: Max Payload Size set to 256/ 256 (was 128), Max Read Rq 512[ 0.515785] pcieport 0000:00:00.0: enabling device (0000 -> 0002)[ 0.515827] pcieport 0000:00:00.0: PME: Signaling with IRQ 38[ 0.515940] pcieport 0000:00:00.0: AER: enabled with IRQ 38[ 0.516044] rp1 0000:01:00.0: bar0 len 0x4000, start 0x1f00410000, end 0x1f00413fff, flags, 0x40200[ 0.516049] rp1 0000:01:00.0: bar1 len 0x400000, start 0x1f00000000, end 0x1f003fffff, flags, 0x40200[ 0.516058] rp1 0000:01:00.0: enabling device (0000 -> 0002)[ 0.517322] rp1 0000:01:00.0: chip_id 0x20001927[ 0.573338] Freeing initrd memory: 16724K[ 0.578388] macb 1f00100000.ethernet eth0: Cadence GEM rev 0x00070109 at 0x1f00100000 irq 106 (2c:cf:67:08:08:b1)[ 0.578984] dw_axi_dmac_platform 1f00188000.dma: DesignWare AXI DMA Controller, 8 channels[ 0.579286] xhci-hcd xhci-hcd.0: xHCI Host Controller[ 0.579293] xhci-hcd xhci-hcd.0: new USB bus registered, assigned bus number 1[ 0.579747] xhci-hcd xhci-hcd.0: hcc params 0x0240fe6d hci version 0x110 quirks 0x0000008000000810[ 0.579759] xhci-hcd xhci-hcd.0: irq 131, io mem 0x1f00200000[ 0.579833] xhci-hcd xhci-hcd.0: xHCI Host Controller[ 0.579837] xhci-hcd xhci-hcd.0: new USB bus registered, assigned bus number 2[ 0.579841] xhci-hcd xhci-hcd.0: Host supports USB 3.0 SuperSpeed[ 0.579894] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06[ 0.579898] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1[ 0.579901] usb usb1: Product: xHCI Host Controller[ 0.579903] usb usb1: Manufacturer: Linux 6.6.20+rpt-rpi-v8 xhci-hcd[ 0.579905] usb usb1: SerialNumber: xhci-hcd.0[ 0.580045] hub 1-0:1.0: USB hub found[ 0.580059] hub 1-0:1.0: 2 ports detected[ 0.580206] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06[ 0.580210] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1[ 0.580212] usb usb2: Product: xHCI Host Controller[ 0.580214] usb usb2: Manufacturer: Linux 6.6.20+rpt-rpi-v8 xhci-hcd[ 0.580216] usb usb2: SerialNumber: xhci-hcd.0[ 0.580310] hub 2-0:1.0: USB hub found[ 0.580322] hub 2-0:1.0: 1 port detected[ 0.580649] xhci-hcd xhci-hcd.1: xHCI Host Controller[ 0.580655] xhci-hcd xhci-hcd.1: new USB bus registered, assigned bus number 3[ 0.581108] xhci-hcd xhci-hcd.1: hcc params 0x0240fe6d hci version 0x110 quirks 0x0000008000000810[ 0.581120] xhci-hcd xhci-hcd.1: irq 136, io mem 0x1f00300000[ 0.581193] xhci-hcd xhci-hcd.1: xHCI Host Controller[ 0.581196] xhci-hcd xhci-hcd.1: new USB bus registered, assigned bus number 4[ 0.581200] xhci-hcd xhci-hcd.1: Host supports USB 3.0 SuperSpeed[ 0.581242] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06[ 0.581246] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1[ 0.581248] usb usb3: Product: xHCI Host Controller[ 0.581250] usb usb3: Manufacturer: Linux 6.6.20+rpt-rpi-v8 xhci-hcd[ 0.581253] usb usb3: SerialNumber: xhci-hcd.1[ 0.581356] hub 3-0:1.0: USB hub found[ 0.581369] hub 3-0:1.0: 2 ports detected[ 0.581503] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06[ 0.581506] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1[ 0.581508] usb usb4: Product: xHCI Host Controller[ 0.581511] usb usb4: Manufacturer: Linux 6.6.20+rpt-rpi-v8 xhci-hcd[ 0.581513] usb usb4: SerialNumber: xhci-hcd.1[ 0.581602] hub 4-0:1.0: USB hub found[ 0.581613] hub 4-0:1.0: 1 port detected[ 0.582299] bcm2712-iommu 1000005100.iommu: bcm2712_iommu_init: DEBUG_INFO = 0x20804774[ 0.582621] platform 1000800000.codec: bcm2712_iommu_probe_device: MMU 1000005100.iommu[ 0.582626] platform 1000800000.codec: bcm2712_iommu_device_group: MMU 1000005100.iommu[ 0.582631] platform 1000800000.codec: Adding to iommu group 0[ 0.582643] platform 1000880000.pisp_be: bcm2712_iommu_probe_device: MMU 1000005100.iommu[ 0.582647] platform 1000880000.pisp_be: bcm2712_iommu_device_group: MMU 1000005100.iommu[ 0.582651] platform 1000880000.pisp_be: Adding to iommu group 0[ 0.582678] platform 1000800000.codec: bcm2712_iommu_attach_dev: MMU 1000005100.iommu[ 0.582681] platform 1000880000.pisp_be: bcm2712_iommu_attach_dev: MMU 1000005100.iommu[ 0.582686] bcm2712-iommu 1000005100.iommu: bcm2712_iommu_probe: Success[ 0.583085] bcm2712-iommu 1000005200.iommu: bcm2712_iommu_init: DEBUG_INFO = 0x20804774[ 0.583371] platform axi:gpu: bcm2712_iommu_probe_device: MMU 1000005200.iommu[ 0.583375] platform axi:gpu: bcm2712_iommu_device_group: MMU 1000005200.iommu[ 0.583380] platform axi:gpu: Adding to iommu group 1[ 0.583404] platform axi:gpu: bcm2712_iommu_attach_dev: MMU 1000005200.iommu[ 0.583409] bcm2712-iommu 1000005200.iommu: bcm2712_iommu_probe: Success[ 0.583844] bcm2712-iommu 1000005280.iommu: bcm2712_iommu_init: DEBUG_INFO = 0x20804774[ 0.584149] bcm2712-iommu 1000005280.iommu: bcm2712_iommu_probe: Success[ 0.585001] sdhci-brcmstb 1000fff000.mmc: Got CD GPIO[ 0.585120] mmc0: CQHCI version 5.10[ 0.585416] mmc1: CQHCI version 5.10[ 0.585565] of_cfs_init[ 0.585597] of_cfs_init: OK[ 0.585687] clk: Disabling unused clocks[ 0.619634] mmc0: SDHCI controller on 1000fff000.mmc [1000fff000.mmc] using ADMA 64-bit[ 0.713732] mmc0: new ultra high speed SDR104 SDXC card at address 5048[ 0.713977] mmcblk0: mmc0:5048 SD256 232 GiB[ 0.715000] mmcblk0: p1 p2[ 0.715100] mmcblk0: mmc0:5048 SD256 232 GiB[ 0.774209] mmc1: SDHCI controller on 1001100000.mmc [1001100000.mmc] using ADMA 64-bit[ 0.778124] Freeing unused kernel memory: 4864K[ 0.778187] Run /init as init process[ 0.778189] with arguments:[ 0.778191] /init[ 0.778192] splash[ 0.778194] with environment:[ 0.778195] HOME=/[ 0.778196] TERM=linux[ 0.806751] mmc1: new ultra high speed DDR50 SDIO card at address 0001[ 1.135509] EXT4-fs (mmcblk0p2): mounted filesystem 4aa56689-dcb4-4759-90e6-179beae559ac ro with ordered data mode. Quota mode: none.[ 1.457505] NET: Registered PF_INET6 protocol family[ 1.457878] Segment Routing with IPv6[ 1.457887] In-situ OAM (IOAM) with IPv6[ 1.484250] systemd[1]: systemd 252.22-1~deb12u1 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 +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)[ 1.484260] systemd[1]: Detected architecture arm64.[ 1.492413] systemd[1]: Hostname set to <raspberrypi>.[ 1.562952] uart-pl011 107d001000.serial: no DMA platform data[ 1.842299] systemd[1]: Queued start job for default target graphical.target.[ 1.868289] systemd[1]: Created slice system-getty.slice - Slice /system/getty.[ 1.868613] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.[ 1.868871] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.[ 1.869130] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.[ 1.869282] systemd[1]: Created slice user.slice - User and Session Slice.[ 1.869369] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.[ 1.869558] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.[ 1.869586] systemd[1]: Expecting device dev-disk-by\x2dpartuuid-f7cb7169\x2d01.device - /dev/disk/by-partuuid/f7cb7169-01...[ 1.869599] systemd[1]: Expecting device dev-ttyAMA10.device - /dev/ttyAMA10...[ 1.869635] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.[ 1.869672] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.[ 1.869708] systemd[1]: Reached target slices.target - Slice Units.[ 1.869735] systemd[1]: Reached target swap.target - Swaps.[ 1.869768] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.[ 1.869910] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.[ 1.869976] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.[ 1.870234] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.[ 1.870358] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).[ 1.870493] systemd[1]: Listening on systemd-journald.socket - Journal Socket.[ 1.870651] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.[ 1.870746] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.[ 1.870906] systemd[1]: dev-hugepages.mount - Huge Pages File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/mm/hugepages).[ 1.871751] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...[ 1.872719] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...[ 1.873604] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...[ 1.873788] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).[ 1.876764] systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...[ 1.877927] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...[ 1.879116] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...[ 1.880395] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...[ 1.881886] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...[ 1.883343] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...[ 1.885186] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...[ 1.886762] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...[ 1.888555] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...[ 1.888918] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).[ 1.891882] systemd[1]: Starting systemd-journald.service - Journal Service...[ 1.896525] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...[ 1.897827] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...[ 1.899598] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...[ 1.901719] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.[ 1.902128] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.[ 1.902398] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.[ 1.902801] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.[ 1.903430] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com[ 1.904215] systemd[1]: modprobe@configfs.service: Deactivated successfully.[ 1.904388] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.[ 1.904796] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.[ 1.904924] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.[ 1.909584] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.[ 1.909836] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.[ 1.910205] systemd[1]: modprobe@loop.service: Deactivated successfully.[ 1.910818] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.[ 1.914622] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...[ 1.914765] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.[ 1.917635] fuse: init (API version 7.39)[ 1.924181] systemd[1]: modprobe@fuse.service: Deactivated successfully.[ 1.924353] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.[ 1.924580] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.[ 1.926091] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...[ 1.928835] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.[ 1.938732] i2c_dev: i2c /dev entries driver[ 1.940018] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.[ 1.941773] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...[ 1.946594] systemd[1]: modprobe@drm.service: Deactivated successfully.[ 1.948290] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.[ 1.948723] systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.[ 1.954063] EXT4-fs (mmcblk0p2): re-mounted 4aa56689-dcb4-4759-90e6-179beae559ac r/w. Quota mode: none.[ 1.956554] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.[ 1.956884] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).[ 1.956943] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).[ 1.958104] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...[ 1.959345] systemd[1]: Starting systemd-sysusers.service - Create System Users...[ 1.972340] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.[ 1.979779] systemd[1]: Started systemd-journald.service - Journal Service.[ 1.993997] systemd-journald[276]: Received client request to flush runtime journal.[ 2.489237] rpi-gpiomem 107d508500.gpiomem: window base 0x107d508500 size 0x00000040[ 2.491779] rpi-gpiomem 107d508500.gpiomem: initialised 1 regions as /dev/gpiomem1[ 2.491857] rpi-gpiomem 107d517c00.gpiomem: window base 0x107d517c00 size 0x00000040[ 2.492285] rpi-gpiomem 107d517c00.gpiomem: initialised 1 regions as /dev/gpiomem2[ 2.493720] rpi-gpiomem 107d504100.gpiomem: window base 0x107d504100 size 0x00000020[ 2.493964] rpi-gpiomem 107d504100.gpiomem: initialised 1 regions as /dev/gpiomem3[ 2.499717] rpi-gpiomem 107d510700.gpiomem: window base 0x107d510700 size 0x00000020[ 2.499800] rpi-gpiomem 107d510700.gpiomem: initialised 1 regions as /dev/gpiomem4[ 2.499924] rpi-gpiomem 1f000d0000.gpiomem: window base 0x1f000d0000 size 0x00030000[ 2.499981] rpi-gpiomem 1f000d0000.gpiomem: initialised 1 regions as /dev/gpiomem0[ 2.527993] input: pwr_button as /devices/platform/pwr_button/input/input0[ 2.534412] mc: Linux media interface: v0.10[ 2.555249] [drm] Initialized v3d 1.0.0 20180419 for 1002000000.v3d on minor 0[ 2.570152] brcmstb-i2c 107d508200.i2c: @97500hz registered in interrupt mode[ 2.577395] videodev: Linux video capture interface: v2.00[ 2.623827] brcmstb-i2c 107d508280.i2c: @97500hz registered in interrupt mode[ 2.631946] pispbe 1000880000.pisp_be: bcm2712_iommu_of_xlate: MMU 1000005100.iommu[ 2.632108] pispbe 1000880000.pisp_be: pispbe_probe: HW version: 0x02252700[ 2.632131] pispbe 1000880000.pisp_be: pispbe_probe: BatchStatus: 0x00000000[ 2.632134] pispbe 1000880000.pisp_be: pispbe_probe: Status: 0x00000000[ 2.632136] pispbe 1000880000.pisp_be: Register nodes for group 0[ 2.642083] rpivid_hevc: module is from the staging directory, the quality is unknown, you have been warned.[ 2.649400] rpivid 1000800000.codec: bcm2712_iommu_of_xlate: MMU 1000005100.iommu[ 2.654873] cfg80211: Loading compiled-in X.509 certificates for regulatory database[ 2.655558] pispbe 1000880000.pisp_be: input device node registered as /dev/video20[ 2.663573] rpivid 1000800000.codec: Device registered as /dev/video19[ 2.663918] pispbe 1000880000.pisp_be: tdn_input device node registered as /dev/video21[ 2.664154] pispbe 1000880000.pisp_be: stitch_input device node registered as /dev/video22[ 2.664619] Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'[ 2.665729] Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'[ 2.665736] pispbe 1000880000.pisp_be: hog_output device node registered as /dev/video23[ 2.666060] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'[ 2.666373] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'[ 2.670117] pispbe 1000880000.pisp_be: output0 device node registered as /dev/video24[ 2.671068] pispbe 1000880000.pisp_be: output1 device node registered as /dev/video25[ 2.679782] pispbe 1000880000.pisp_be: tdn_output device node registered as /dev/video26[ 2.679850] pispbe 1000880000.pisp_be: stitch_output device node registered as /dev/video27[ 2.679893] pispbe 1000880000.pisp_be: config device node registered as /dev/video28[ 2.680223] pispbe 1000880000.pisp_be: Register nodes for group 1[ 2.680279] pispbe 1000880000.pisp_be: input device node registered as /dev/video29[ 2.680314] pispbe 1000880000.pisp_be: tdn_input device node registered as /dev/video30[ 2.680350] pispbe 1000880000.pisp_be: stitch_input device node registered as /dev/video31[ 2.680386] pispbe 1000880000.pisp_be: hog_output device node registered as /dev/video32[ 2.680420] pispbe 1000880000.pisp_be: output0 device node registered as /dev/video33[ 2.680453] pispbe 1000880000.pisp_be: output1 device node registered as /dev/video34[ 2.680487] pispbe 1000880000.pisp_be: tdn_output device node registered as /dev/video35[ 2.680519] pispbe 1000880000.pisp_be: stitch_output device node registered as /dev/video36[ 2.680553] pispbe 1000880000.pisp_be: config device node registered as /dev/video37[ 2.704438] brcmfmac: F1 signature read @0x18000000=0x15264345[ 2.709528] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6[ 2.709773] usbcore: registered new interface driver brcmfmac[ 2.749697] vc4-drm axi:gpu: bcm2712_iommu_of_xlate: MMU 1000005200.iommu[ 2.753215] vc4-drm axi:gpu: bound 107c580000.hvs (ops vc4_hvs_ops [vc4])[ 2.763881] Registered IR keymap rc-cec[ 2.763962] rc rc0: vc4-hdmi-0 as /devices/platform/soc/107c701400.hdmi/rc/rc0[ 2.764021] input: vc4-hdmi-0 as /devices/platform/soc/107c701400.hdmi/rc/rc0/input1[ 2.768276] input: vc4-hdmi-0 HDMI Jack as /devices/platform/soc/107c701400.hdmi/sound/card0/input2[ 2.768402] vc4-drm axi:gpu: bound 107c701400.hdmi (ops vc4_hdmi_ops [vc4])[ 2.770094] Registered IR keymap rc-cec[ 2.770152] rc rc1: vc4-hdmi-1 as /devices/platform/soc/107c706400.hdmi/rc/rc1[ 2.770203] input: vc4-hdmi-1 as /devices/platform/soc/107c706400.hdmi/rc/rc1/input3[ 2.852027] Bluetooth: Core ver 2.22[ 2.852064] NET: Registered PF_BLUETOOTH protocol family[ 2.852067] Bluetooth: HCI device and connection manager initialized[ 2.852075] Bluetooth: HCI socket layer initialized[ 2.852080] Bluetooth: L2CAP socket layer initialized[ 2.852091] Bluetooth: SCO socket layer initialized[ 2.857548] input: vc4-hdmi-1 HDMI Jack as /devices/platform/soc/107c706400.hdmi/sound/card1/input4[ 2.860689] vc4-drm axi:gpu: bound 107c706400.hdmi (ops vc4_hdmi_ops [vc4])[ 2.861967] vc4-drm axi:gpu: bound 107c500000.mop (ops vc4_txp_ops [vc4])[ 2.863514] vc4-drm axi:gpu: bound 107c501000.moplet (ops vc4_txp_ops [vc4])[ 2.866309] vc4-drm axi:gpu: bound 107c410000.pixelvalve (ops vc4_crtc_ops [vc4])[ 2.878259] vc4-drm axi:gpu: bound 107c411000.pixelvalve (ops vc4_crtc_ops [vc4])[ 2.889590] brcmfmac_wcc: brcmf_wcc_attach: executing[ 2.893407] brcmfmac: brcmf_c_process_txcap_blob: no txcap_blob available (err=-2)[ 2.893701] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM4345/6 wl0: Apr 15 2021 03:03:20 version 7.45.234 (4ca95bb CY) FWID 01-996384e2[ 2.894164] [drm] Initialized vc4 0.0.0 20140616 for axi:gpu on minor 1[ 2.898962] vc4-drm axi:gpu: [drm] Cannot find any crtc or sizes[ 2.901140] vc4-drm axi:gpu: [drm] Cannot find any crtc or sizes[ 2.903205] vc4-drm axi:gpu: [drm] Cannot find any crtc or sizes[ 2.904557] Bluetooth: HCI UART driver ver 2.3[ 2.904568] Bluetooth: HCI UART protocol H4 registered[ 2.904603] Bluetooth: HCI UART protocol Three-wire (H5) registered[ 2.904771] hci_uart_bcm serial0-0: supply vbat not found, using dummy regulator[ 2.904841] hci_uart_bcm serial0-0: supply vddio not found, using dummy regulator[ 2.905944] Bluetooth: HCI UART protocol Broadcom registered[ 3.212627] alsactl[572]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set[ 3.212627] alsactl[573]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set[ 3.264246] Bluetooth: hci0: BCM: chip id 107[ 3.264453] Bluetooth: hci0: BCM: features 0x2f[ 3.265548] Bluetooth: hci0: BCM4345C0[ 3.265554] Bluetooth: hci0: BCM4345C0 (003.001.025) build 0000[ 3.266832] Bluetooth: hci0: BCM4345C0 'brcm/BCM4345C0.raspberrypi,5-model-b.hcd' Patch[ 3.676391] Adding 102396k swap on /var/swap. Priority:-2 extents:1 across:102396k SS[ 3.711918] Bluetooth: BNEP (Ethernet Emulation) ver 1.3[ 3.711927] Bluetooth: BNEP filters: protocol multicast[ 3.711933] Bluetooth: BNEP socket layer initialized[ 3.992303] Bluetooth: hci0: BCM: features 0x2f[ 3.993659] Bluetooth: hci0: BCM43455 37.4MHz Raspberry Pi 3+-0190[ 3.993662] Bluetooth: hci0: BCM4345C0 (003.001.025) build 0382[ 3.993979] Bluetooth: hci0: BCM: Using default device address (43:45:c0:00:1f:ac)[ 4.010768] Bluetooth: MGMT ver 1.22[ 4.018656] NET: Registered PF_ALG protocol family[ 4.393091] macb 1f00100000.ethernet eth0: PHY [1f00100000.ethernet-ffffffff:01] driver [Broadcom BCM54213PE] (irq=POLL)[ 4.393100] macb 1f00100000.ethernet eth0: configuring for phy/rgmii-id link mode[ 4.396396] pps pps0: new PPS source ptp0[ 4.396449] macb 1f00100000.ethernet: gem-ptp-timer ptp clock registered.[ 8.488776] macb 1f00100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control tx[ 13.059096] Key type cifs.spnego registered[ 13.059106] Key type cifs.idmap registered[ 13.059915] Use of the less secure dialect vers=1.0 is not recommended unless required for access to very old servers[ 13.059922] CIFS: VFS: Use of the less secure dialect vers=1.0 is not recommended unless required for access to very old servers[ 13.059929] CIFS: Attempting to mount //192.168.1.1/Plex[ 15.185377] Bluetooth: RFCOMM TTY layer initialized[ 15.185390] Bluetooth: RFCOMM socket layer initialized[ 15.185399] Bluetooth: RFCOMM ver 1.11[ 272.596841] CIFS: VFS: server 192.168.1.1 does not advertise interfaces[ 272.720716] CIFS: VFS: server 192.168.1.1 does not advertise interfaces[ 372.096402] usb 2-1: new SuperSpeed USB device number 2 using xhci-hcd[ 372.117484] usb 2-1: New USB device found, idVendor=152d, idProduct=0578, bcdDevice= 1.00[ 372.117489] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3[ 372.117492] usb 2-1: Product: USB3.0 External HDD[ 372.117495] usb 2-1: Manufacturer: JMicron[ 372.117497] usb 2-1: SerialNumber: 0000AB123600[ 372.122660] scsi host0: uas[ 372.123220] scsi 0:0:0:0: Direct-Access ST8000DM 004-2U9188 8101 PQ: 0 ANSI: 6[ 372.178325] sd 0:0:0:0: Attached scsi generic sg0 type 0[ 382.125350] sd 0:0:0:0: [sda] Spinning up disk...[ 385.156383] .ready[ 385.484015] sd 0:0:0:0: [sda] 15628053168 512-byte logical blocks: (8.00 TB/7.28 TiB)[ 385.484021] sd 0:0:0:0: [sda] 4096-byte physical blocks[ 385.484205] sd 0:0:0:0: [sda] Write Protect is off[ 385.484209] sd 0:0:0:0: [sda] Mode Sense: 53 00 00 08[ 385.484544] sd 0:0:0:0: [sda] Disabling FUA[ 385.484548] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA[ 385.484752] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes[ 385.484756] sd 0:0:0:0: [sda] Optimal transfer size 33553920 bytes not a multiple of preferred minimum block size (4096 bytes)[ 385.542633] sda: sda1 sda2[ 385.542942] sd 0:0:0:0: [sda] Attached SCSI disk[ 385.978554] ntfs3: Max link count 4000
Statistics: Posted by Ramshu — Sat Apr 13, 2024 5:18 pm