Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Image | Radxa ROCK 3B #7327

Open
MidG971 opened this issue Dec 26, 2024 · 28 comments
Open

Image | Radxa ROCK 3B #7327

MidG971 opened this issue Dec 26, 2024 · 28 comments
Labels
External bug 🐞 For bugs which are not caused by DietPi. Image request 💾 ROCK 3B
Milestone

Comments

@MidG971
Copy link

MidG971 commented Dec 26, 2024

Details:

  • Date | 2024-12-26 16:02:16
  • Program name | DietPi-Installer
  • Command | apt-get -y autopurge gawk original-awk
  • Exit code | 100
  • DietPi version | v9.9.0 (MichaIng/master)
  • Distro version | bullseye (ID=6,RASPBIAN=0)
  • Kernel version | Linux rock-3b 5.10.160-18-rk356x #425b07550 SMP Thu Oct 12 08:48:55 UTC 2023 aarch64 GNU/Linux
  • Architecture | arm64
  • Hardware model | (ID=22)
  • Power supply | (EG: RAVPower 5V 1A)
  • SD card | (EG: SanDisk Ultra 16 GB)

Steps to reproduce:

  1. Launch the script , choose generic device
  2. ...

Expected behaviour:

  • Install DietPi

Actual behaviour:

  • It fails , trying to delete something that doesn't exist apparently

Extra details:

  • cf attached log from

Additional logs:

Reading package lists...
Building dependency tree...
Reading state information...
Package 'gawk' is not installed, so not removed
Package 'original-awk' is not installed, so not removed
The following packages will be REMOVED:
  radxa-sddm-theme
0 upgraded, 0 newly installed, 1 to remove and 438 not upgraded.
1 not fully installed or removed.
After this operation, 17.4 kB disk space will be freed.
(Reading database ... 63364 files and directories currently installed.)
Removing radxa-sddm-theme (0.1.1) ...
rm: cannot remove '/usr/share/sddm/themes/breeze/Main.qml': No such file or directory
dpkg: error processing package radxa-sddm-theme (--remove):
 installed radxa-sddm-theme package post-removal script subprocess returned error exit status 1
dpkg: too many errors, stopping
Errors were encountered while processing:
 radxa-sddm-theme
Processing was halted because there were too many errors.
E: Sub-process /usr/bin/dpkg returned an error code (1)

log_failed_install_Rock3B.txt

@MichaIng
Copy link
Owner

That Radxa package postrm script tries to remove a file which does not exist. Create a dummy file at that location, then retry to purge it:

sudo mkdir -p /usr/share/sddm/themes/breeze
sudo touch /usr/share/sddm/themes/breeze/Main.qml
sudo apt purge radxa-sddm-theme
sudo rmdir -p /usr/share/sddm/themes/breeze

@MichaIng MichaIng added the External bug 🐞 For bugs which are not caused by DietPi. label Dec 27, 2024
@MidG971
Copy link
Author

MidG971 commented Dec 27, 2024

I did as requested, with slight changes:

root@rock-3b:/tmp/DietPi-Installer# sudo mkdir -p /usr/share/sddm/themes/breeze
root@rock-3b:/tmp/DietPi-Installer# sudo touch /usr/share/sddm/themes/breeze/Main.qml
root@rock-3b:/tmp/DietPi-Installer# sudo apt purge radxa-sddm-theme
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages will be REMOVED:
radxa-sddm-theme
0 upgraded, 0 newly installed, 1 to remove and 438 not upgraded.
1 not fully installed or removed.
After this operation, 17.4 kB disk space will be freed.
Do you want to continue? [Y/n]
(Reading database ... 63362 files and directories currently installed.)
Removing radxa-sddm-theme (0.1.1) ...
Removing 'diversion of /usr/share/sddm/themes/breeze/Main.qml to /usr/share/sddm/themes/breeze/Main.qml.bak by radxa-sddm-theme'
Processing triggers for desktop-file-utils (0.26-1) ...
Processing triggers for initramfs-tools (0.142+deb12u1) ...
update-initramfs: Generating /boot/initrd.img-5.10.160-38-rk356x
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for libglib2.0-0:arm64 (2.66.8-1+deb11u5) ...
Processing triggers for libc-bin (2.36-9+deb12u9) ...
Processing triggers for dbus (1.12.28-0+deb11u1) ...
Processing triggers for shared-mime-info (2.0-1) ...
Processing triggers for udev (247.3-7+deb11u6) ...
Processing triggers for libgdk-pixbuf-2.0-0:arm64 (2.42.2+dfsg-1+deb11u2) ...
Processing triggers for fontconfig (2.13.1-4.2) ...
root@rock-3b:/tmp/DietPi-Installer# sudo rmdir -p /usr/share/sddm/themes/breeze
rmdir: failed to remove directory '/usr/share': Directory not empty
root@rock-3b:/tmp/DietPi-Installer# sudo rm -d -f -r -v /usr/share/sddm/themes/breeze I did this manually, then exited the shell
root@rock-3b:/tmp/DietPi-Installer#

Afterwards the install is successful but I lose my two onboard NICs, the wlan is still ok, but I get some errors on the bluetooth side.. I've got the dmseg output linked. I tried to install the audio, but failed also.
dmesg_OK_install_NO_NICs_Rock3B.txt

@MidG971
Copy link
Author

MidG971 commented Dec 27, 2024

I know that, the board is in the kernel https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dts since v6.10...
Can I fellow this method you gave me previously for my other sbc (Rock4SE) :
image

If yes which binary should I use ?

@MichaIng
Copy link
Owner

Why did you use a vendor image, and not our ROCK 3A image? While it can work with any pre-image, there is not guarantee, as especially these vendor images are pretty messy and kinda malformed often. The Radxa package which tries to remove a non-existing file and even fails to uninstall completely, if that file does not exist, is a prefect example.

Please try our image first, before we start to debug an issue which might be entirely related to the vendor pre-image, like faulty firmware placed into the filesystem without APT package reference and such stuff.

@MidG971
Copy link
Author

MidG971 commented Dec 30, 2024

I used the vendor image because the Rock 3B is not supported nor proposed to be downloaded, only the Rock 3A. They do share the same CPU but the 3B has two NICs instead of one. Also there's the fact that for instance , there's a difference of implementation of the DRAM on the Rock 4 and Rock 4SE, I figured that I should choose the generic device road to be sure. I'll try the Rock 3A firmware on it and will give you the feedback.

@MichaIng
Copy link
Owner

MichaIng commented Dec 30, 2024

Ah right, I missed the little important difference 3A and 3B 😉.

Hmm, based on your logs, I guess the Debian Bookworm firmware packages cause the issue, as the Radxa image contains /etc/apt/apt.conf.d/no-bookworm-firmware.conf, which is removed by our installer. And then there is a package removed rockchip-iqfiles-rk356x, where I do not know what it contains.

However, I'd try something different, as you recognised, mainline Linux supports this SBC already. Do you have a WiFi adapter at hand, to establish Internet access with that one temporarily? If so:

  1. Flash the ROCK 3A image
  2. Set up Internet via WiFi adapter (or any other USB network adapter)
  3. Install a Linux 6.12 package I just built, once the build here has finished: https://github.com/MichaIng/DietPi/actions/runs/12545221217
    cd /tmp
    wget https://dietpi.com/downloads/binaries/testing/linux-{image,dtb}-current-rockchip64.deb
    dpkg -i linux-{image,dtb}-current-rockchip64.deb
  4. Apply the now available ROCK 3B device tree overlay
    G_CONFIG_INJECT 'fdtfile=' 'fdtfile=rockchip/rk3568-rock-3b.dtb' /boot/dietpiEnv.txt
    reboot

If this works, we can add some preliminary support to DietPi. If upstream U-Boot supports it as well, we can add support to our Armbian fork natively.

@MidG971
Copy link
Author

MidG971 commented Dec 30, 2024

It happens 😄
I have a Wifi adapter on the M.2 B slot, I'll do as you recommended.

@MichaIng
Copy link
Owner

Okay, kernel build has finished, hence this could be tried now.

@MidG971
Copy link
Author

MidG971 commented Dec 30, 2024

Using the Rock 3A image is fine as far as:

  • I added my wifi info in the config file before booting the board. It worked fine, no NICs, but Wifi OK.

  • When I pushed the new ROCK 3B device tree overlay , I lost the connection, I'm currently using serial console as I don't have access to a hdmi screen at the moment. After the first reboot, I tried to reboot numerous times, tried to access the serial console, with the default speeds 9600 / 115200 bps , I only get scrambled characters that one would get if the speed isn't correctly configured.

@MichaIng
Copy link
Owner

MichaIng commented Dec 30, 2024

Did you upgrade the kernel first, and does it contain the expected device tree?

ls -l /boot/dtb/rockchip/rk3568-rock-3b.dtb

Ah shit, my mistake, I built the edge kernel, while I wanted to build the current kernel ... I'll redo.

... build running: https://github.com/MichaIng/DietPi/actions/runs/12547993860
If you can access the ext4 filesystem on the SD card from elsewhere, editing /boot/dietpiEnv.txt to contain fdtfile=rockchip/rk3568-rock-3a.dtb will make the image bootable again. Once above build is done, now really current branch, repeat above steps.

@MidG971
Copy link
Author

MidG971 commented Dec 30, 2024

Its partially ok now :
i'll give you a detailed report when I get home, but to be short, leds dont turn on when cable are plugged and only one NICs up at the time. Its a mess to test right now as I'll have to figure out if the OS doesn't confuse the NICs. I do it later. Also the dietpi-config menu detects only one NIC

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute
       valid_lft forever preferred_lft forever
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
    link/ether e2:e1:76:03:12:f8 brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.100/24 brd 192.168.0.255 scope global eth0
       valid_lft forever preferred_lft forever
    inet 192.168.75.118/24 brd 192.168.75.255 scope global dynamic eth0
       valid_lft 28083sec preferred_lft 28083sec
    inet6 fe80::e0e1:76ff:fe03:12f8/64 scope link
       valid_lft forever preferred_lft forever
3: eth1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
    link/ether e2:e1:76:03:12:f9 brd ff:ff:ff:ff:ff:ff
4: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether c8:21:58:b7:a7:b9 brd ff:ff:ff:ff:ff:ff
    inet 192.168.75.215/24 brd 192.168.75.255 scope global dynamic wlan0
       valid_lft 28089sec preferred_lft 28089sec
    inet6 fe80::ca21:58ff:feb7:a7b9/64 scope link
       valid_lft forever preferred_lft forever

  • in the dietpi-config menu I can only see one NIC and it keep showing me this parameters, despite the changes I made ( switch to dhcp ) 👍

┌──────────────────────────────┤ DietPi-Config ├───────────────────────────────┐
│ Ethernet Details:                                                            │
│ Usage   : Sent = 0 MiB | Received = 0 MiB                                    │
│ Address : IP = 192.168.0.100 | Mask = 255.255.255.0 | Gateway =  | DNS =     │
│ 192.168.254.30                                                               │
│                                                                              │
│                        ●─ DHCP/STATIC IP ──────────────────────●             │
│            Change Mode : [DHCP]                                              │
│                        ●─ Additional Options ──────────────────●             │
│            Link Speed  : [auto (default)]                                    │
│            Disable     : Disable Ethernet adapter                            │
│                        ●─ Apply ───────────────────────────────●             │
│            Apply       : Save all changes and restart networking             │
│                                                                              │
│                                                                              │
│                     <Select>                     <Back>                      │
│                                                                              │
└──────────────────────────────────────────────────────────────────────────────┘

Thi

here's the journactl :

root@DietPi:~# journalctl
Dec 30 17:21:38 DietPi kernel: Booting Linux on physical CPU 0x0000000000 [0x412fd050]
Dec 30 17:21:38 DietPi kernel: Linux version 6.12.7-current-rockchip64 (build@armbian) (aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #1 SMP PREEMPT Fri Dec 27 13:02:20 UTC 2024
Dec 30 17:21:38 DietPi kernel: KASLR disabled due to lack of seed
Dec 30 17:21:38 DietPi kernel: Machine model: Radxa ROCK 3B
Dec 30 17:21:38 DietPi kernel: efi: UEFI not found.
Dec 30 17:21:38 DietPi kernel: NUMA: Faking a node at [mem 0x0000000000200000-0x00000001ffffffff]
Dec 30 17:21:38 DietPi kernel: NODE_DATA(0) allocated [mem 0x1fefdb640-0x1fefdddbf]
Dec 30 17:21:38 DietPi kernel: Zone ranges:
Dec 30 17:21:38 DietPi kernel:   DMA      [mem 0x0000000000200000-0x00000000ffffffff]
Dec 30 17:21:38 DietPi kernel:   DMA32    empty
Dec 30 17:21:38 DietPi kernel:   Normal   [mem 0x0000000100000000-0x00000001ffffffff]
Dec 30 17:21:38 DietPi kernel: Movable zone start for each node
Dec 30 17:21:38 DietPi kernel: Early memory node ranges
Dec 30 17:21:38 DietPi kernel:   node   0: [mem 0x0000000000200000-0x00000000efffffff]
Dec 30 17:21:38 DietPi kernel:   node   0: [mem 0x0000000100000000-0x00000001ffffffff]
Dec 30 17:21:38 DietPi kernel: Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
Dec 30 17:21:38 DietPi kernel: On node 0, zone DMA: 512 pages in unavailable ranges
Dec 30 17:21:38 DietPi kernel: cma: Reserved 128 MiB at 0x00000000e8000000 on node -1
Dec 30 17:21:38 DietPi kernel: psci: probing for conduit method from DT.
Dec 30 17:21:38 DietPi kernel: psci: PSCIv1.1 detected in firmware.
Dec 30 17:21:38 DietPi kernel: psci: Using standard PSCI v0.2 function IDs
Dec 30 17:21:38 DietPi kernel: psci: MIGRATE_INFO_TYPE not supported.
Dec 30 17:21:38 DietPi kernel: psci: SMC Calling Convention v1.2
Dec 30 17:21:38 DietPi kernel: percpu: Embedded 34 pages/cpu s98968 r8192 d32104 u139264
Dec 30 17:21:38 DietPi kernel: pcpu-alloc: s98968 r8192 d32104 u139264 alloc=34*4096
Dec 30 17:21:38 DietPi kernel: pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
Dec 30 17:21:38 DietPi kernel: Detected VIPT I-cache on CPU0
Dec 30 17:21:38 DietPi kernel: CPU features: detected: GIC system register CPU interface
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Virtualization Host Extensions
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Qualcomm erratum 1009, or ARM erratum 1286807, 2441009
Dec 30 17:21:38 DietPi kernel: CPU features: detected: ARM errata 1165522, 1319367, or 1530923
Dec 30 17:21:38 DietPi kernel: alternatives: applying boot alternatives
Dec 30 17:21:38 DietPi kernel: Kernel command line: root=UUID=463087c8-1d8f-4075-b7b1-4b86c641e99e rootfstype=ext4 rootwait console=ttyS2,1500000 console=tty1 consoleblank=0 coherent_pool=2M usb-storage.quirks= net.ifnames=0 androidboot.fwver=ddr-v1.21-2d653b3476,bl31-v1.44,uboot-rmbian-201-10/09/2024
Dec 30 17:21:38 DietPi kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Dec 30 17:21:38 DietPi kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Dec 30 17:21:38 DietPi kernel: Fallback order for Node 0: 0
Dec 30 17:21:38 DietPi kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2031104
Dec 30 17:21:38 DietPi kernel: Policy zone: Normal
Dec 30 17:21:38 DietPi kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
Dec 30 17:21:38 DietPi kernel: software IO TLB: area num 4.
Dec 30 17:21:38 DietPi kernel: software IO TLB: mapped [mem 0x00000000e4000000-0x00000000e8000000] (64MB)
Dec 30 17:21:38 DietPi kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Dec 30 17:21:38 DietPi kernel: rcu: Preemptible hierarchical RCU implementation.
Dec 30 17:21:38 DietPi kernel: rcu:         RCU event tracing is enabled.
Dec 30 17:21:38 DietPi kernel: rcu:         RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
Dec 30 17:21:38 DietPi kernel:         Trampoline variant of Tasks RCU enabled.
Dec 30 17:21:38 DietPi kernel:         Tracing variant of Tasks RCU enabled.
Dec 30 17:21:38 DietPi kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Dec 30 17:21:38 DietPi kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Dec 30 17:21:38 DietPi kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
Dec 30 17:21:38 DietPi kernel: RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
Dec 30 17:21:38 DietPi kernel: NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
Dec 30 17:21:38 DietPi kernel: GICv3: GIC: Using split EOI/Deactivate mode
Dec 30 17:21:38 DietPi kernel: GICv3: 320 SPIs implemented
Dec 30 17:21:38 DietPi kernel: GICv3: 0 Extended SPIs implemented
Dec 30 17:21:38 DietPi kernel: GICv3: MBI range [296:319]
Dec 30 17:21:38 DietPi kernel: GICv3: Using MBI frame 0x00000000fd410000
Dec 30 17:21:38 DietPi kernel: Root IRQ handler: gic_handle_irq
Dec 30 17:21:38 DietPi kernel: GICv3: GICv3 features: 16 PPIs
Dec 30 17:21:38 DietPi kernel: GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=1
Dec 30 17:21:38 DietPi kernel: GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000
Dec 30 17:21:38 DietPi kernel: ITS: No ITS available, not enabling LPIs
Dec 30 17:21:38 DietPi kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Dec 30 17:21:38 DietPi kernel: arch_timer: cp15 timer(s) running at 24.00MHz (phys).
Dec 30 17:21:38 DietPi kernel: clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
Dec 30 17:21:38 DietPi kernel: sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
Dec 30 17:21:38 DietPi kernel: Console: colour dummy device 80x25
Dec 30 17:21:38 DietPi kernel: printk: legacy console [tty1] enabled
Dec 30 17:21:38 DietPi kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
Dec 30 17:21:38 DietPi kernel: pid_max: default: 32768 minimum: 301
Dec 30 17:21:38 DietPi kernel: LSM: initializing lsm=capability,yama,apparmor
Dec 30 17:21:38 DietPi kernel: Yama: becoming mindful.
Dec 30 17:21:38 DietPi kernel: AppArmor: AppArmor initialized
Dec 30 17:21:38 DietPi kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Dec 30 17:21:38 DietPi kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Dec 30 17:21:38 DietPi kernel: rcu: Hierarchical SRCU implementation.
Dec 30 17:21:38 DietPi kernel: rcu:         Max phase no-delay instances is 1000.
Dec 30 17:21:38 DietPi kernel: Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
Dec 30 17:21:38 DietPi kernel: EFI services will not be available.
Dec 30 17:21:38 DietPi kernel: smp: Bringing up secondary CPUs ...
Dec 30 17:21:38 DietPi kernel: Detected VIPT I-cache on CPU1
Dec 30 17:21:38 DietPi kernel: GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000
Dec 30 17:21:38 DietPi kernel: CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
Dec 30 17:21:38 DietPi kernel: Detected VIPT I-cache on CPU2
Dec 30 17:21:38 DietPi kernel: GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000
Dec 30 17:21:38 DietPi kernel: CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
Dec 30 17:21:38 DietPi kernel: Detected VIPT I-cache on CPU3
Dec 30 17:21:38 DietPi kernel: GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000
Dec 30 17:21:38 DietPi kernel: CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
Dec 30 17:21:38 DietPi kernel: smp: Brought up 1 node, 4 CPUs
Dec 30 17:21:38 DietPi kernel: SMP: Total of 4 processors activated.
Dec 30 17:21:38 DietPi kernel: CPU: All CPU(s) started at EL2
Dec 30 17:21:38 DietPi kernel: CPU features: detected: 32-bit EL0 Support
Dec 30 17:21:38 DietPi kernel: CPU features: detected: 32-bit EL1 Support
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Data cache clean to the PoU not required for I/D coherence
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Common not Private translations
Dec 30 17:21:38 DietPi kernel: CPU features: detected: CRC32 instructions
Dec 30 17:21:38 DietPi kernel: CPU features: detected: RCpc load-acquire (LDAPR)
Dec 30 17:21:38 DietPi kernel: CPU features: detected: LSE atomic instructions
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Privileged Access Never
Dec 30 17:21:38 DietPi kernel: CPU features: detected: RAS Extension Support
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Speculative Store Bypassing Safe (SSBS)
Dec 30 17:21:38 DietPi kernel: alternatives: applying system-wide alternatives
Dec 30 17:21:38 DietPi kernel: Memory: 7721592K/8124416K available (16384K kernel code, 2760K rwdata, 5212K rodata, 4928K init, 787K bss, 266880K reserved, 131072K cma-reserved)
Dec 30 17:21:38 DietPi kernel: devtmpfs: initialized
Dec 30 17:21:38 DietPi kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Dec 30 17:21:38 DietPi kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Dec 30 17:21:38 DietPi kernel: 25184 pages in range for non-PLT usage
Dec 30 17:21:38 DietPi kernel: 516704 pages in range for PLT usage
Dec 30 17:21:38 DietPi kernel: pinctrl core: initialized pinctrl subsystem
Dec 30 17:21:38 DietPi kernel: DMI not present or invalid.
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Dec 30 17:21:38 DietPi kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Dec 30 17:21:38 DietPi kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Dec 30 17:21:38 DietPi kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Dec 30 17:21:38 DietPi kernel: audit: initializing netlink subsys (disabled)
Dec 30 17:21:38 DietPi kernel: audit: type=2000 audit(0.108:1): state=initialized audit_enabled=0 res=1
Dec 30 17:21:38 DietPi kernel: thermal_sys: Registered thermal governor 'fair_share'
Dec 30 17:21:38 DietPi kernel: thermal_sys: Registered thermal governor 'bang_bang'
Dec 30 17:21:38 DietPi kernel: thermal_sys: Registered thermal governor 'step_wise'
Dec 30 17:21:38 DietPi kernel: thermal_sys: Registered thermal governor 'user_space'
Dec 30 17:21:38 DietPi kernel: cpuidle: using governor menu
Dec 30 17:21:38 DietPi kernel: hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
Dec 30 17:21:38 DietPi kernel: ASID allocator initialised with 65536 entries
Dec 30 17:21:38 DietPi kernel: Serial: AMBA PL011 UART driver
Dec 30 17:21:38 DietPi kernel: /vop@fe040000: Fixed dependency cycle(s) with /hdmi@fe0a0000
Dec 30 17:21:38 DietPi kernel: /hdmi@fe0a0000: Fixed dependency cycle(s) with /vop@fe040000
Dec 30 17:21:38 DietPi kernel: /pcie@fe260000: Fixed dependency cycle(s) with /pcie@fe260000/legacy-interrupt-controller
Dec 30 17:21:38 DietPi kernel: gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation.
Dec 30 17:21:38 DietPi kernel: rockchip-gpio fdd60000.gpio: probed /pinctrl/gpio@fdd60000
Dec 30 17:21:38 DietPi kernel: gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.
Dec 30 17:21:38 DietPi kernel: rockchip-gpio fe740000.gpio: probed /pinctrl/gpio@fe740000
Dec 30 17:21:38 DietPi kernel: gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation.
Dec 30 17:21:38 DietPi kernel: rockchip-gpio fe750000.gpio: probed /pinctrl/gpio@fe750000
Dec 30 17:21:38 DietPi kernel: gpio gpiochip3: Static allocation of GPIO base is deprecated, use dynamic allocation.
Dec 30 17:21:38 DietPi kernel: rockchip-gpio fe760000.gpio: probed /pinctrl/gpio@fe760000
Dec 30 17:21:38 DietPi kernel: gpio gpiochip4: Static allocation of GPIO base is deprecated, use dynamic allocation.
Dec 30 17:21:38 DietPi kernel: rockchip-gpio fe770000.gpio: probed /pinctrl/gpio@fe770000
Dec 30 17:21:38 DietPi kernel: /pcie@fe280000: Fixed dependency cycle(s) with /pcie@fe280000/legacy-interrupt-controller
Dec 30 17:21:38 DietPi kernel: /hdmi@fe0a0000: Fixed dependency cycle(s) with /hdmi-con
Dec 30 17:21:38 DietPi kernel: /hdmi-con: Fixed dependency cycle(s) with /hdmi@fe0a0000
Dec 30 17:21:38 DietPi kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Dec 30 17:21:38 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
Dec 30 17:21:38 DietPi kernel: HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
Dec 30 17:21:38 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
Dec 30 17:21:38 DietPi kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Dec 30 17:21:38 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
Dec 30 17:21:38 DietPi kernel: HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
Dec 30 17:21:38 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
Dec 30 17:21:38 DietPi kernel: cryptd: max_cpu_qlen set to 1000
Dec 30 17:21:38 DietPi kernel: raid6: neonx8   gen()  1408 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: neonx4   gen()  1430 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: neonx2   gen()  1317 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: neonx1   gen()  1072 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: int64x8  gen()   912 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: int64x4  gen()  1047 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: int64x2  gen()   937 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: int64x1  gen()   668 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: using algorithm neonx4 gen() 1430 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: .... xor() 1102 MB/s, rmw enabled
Dec 30 17:21:38 DietPi kernel: raid6: using neon recovery algorithm
Dec 30 17:21:38 DietPi kernel: iommu: Default domain type: Translated
Dec 30 17:21:38 DietPi kernel: iommu: DMA domain TLB invalidation policy: strict mode
Dec 30 17:21:38 DietPi kernel: SCSI subsystem initialized
Dec 30 17:21:38 DietPi kernel: libata version 3.00 loaded.
Dec 30 17:21:38 DietPi kernel: usbcore: registered new interface driver usbfs
Dec 30 17:21:38 DietPi kernel: usbcore: registered new interface driver hub
Dec 30 17:21:38 DietPi kernel: usbcore: registered new device driver usb
Dec 30 17:21:38 DietPi kernel: pps_core: LinuxPPS API ver. 1 registered
Dec 30 17:21:38 DietPi kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
Dec 30 17:21:38 DietPi kernel: PTP clock support registered
Dec 30 17:21:38 DietPi kernel: EDAC MC: Ver: 3.0.0
Dec 30 17:21:38 DietPi kernel: scmi_core: SCMI protocol bus registered
Dec 30 17:21:38 DietPi kernel: NetLabel: Initializing
Dec 30 17:21:38 DietPi kernel: NetLabel:  domain hash size = 128
Dec 30 17:21:38 DietPi kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Dec 30 17:21:38 DietPi kernel: NetLabel:  unlabeled traffic allowed by default
Dec 30 17:21:38 DietPi kernel: vgaarb: loaded
Dec 30 17:21:38 DietPi kernel: clocksource: Switched to clocksource arch_sys_counter
Dec 30 17:21:38 DietPi kernel: VFS: Disk quotas dquot_6.6.0
Dec 30 17:21:38 DietPi kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Dec 30 17:21:38 DietPi kernel: AppArmor: AppArmor Filesystem Enabled
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_INET protocol family
Dec 30 17:21:38 DietPi kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Dec 30 17:21:38 DietPi kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Dec 30 17:21:38 DietPi kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Dec 30 17:21:38 DietPi kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Dec 30 17:21:38 DietPi kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Dec 30 17:21:38 DietPi kernel: TCP: Hash tables configured (established 65536 bind 65536)
Dec 30 17:21:38 DietPi kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Dec 30 17:21:38 DietPi kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_XDP protocol family
Dec 30 17:21:38 DietPi kernel: PCI: CLS 0 bytes, default 64
Dec 30 17:21:38 DietPi kernel: Trying to unpack rootfs image as initramfs...
Dec 30 17:21:38 DietPi kernel: kvm [1]: nv: 554 coarse grained trap handlers
Dec 30 17:21:38 DietPi kernel: kvm [1]: IPA Size Limit: 40 bits
Dec 30 17:21:38 DietPi kernel: kvm [1]: GICv3: no GICV resource entry
Dec 30 17:21:38 DietPi kernel: kvm [1]: disabling GICv2 emulation
Dec 30 17:21:38 DietPi kernel: kvm [1]: GIC system register CPU interface enabled
Dec 30 17:21:38 DietPi kernel: kvm [1]: vgic interrupt IRQ9
Dec 30 17:21:38 DietPi kernel: kvm [1]: VHE mode initialized successfully
Dec 30 17:21:38 DietPi kernel: Initialise system trusted keyrings
Dec 30 17:21:38 DietPi kernel: Key type blacklist registered
Dec 30 17:21:38 DietPi kernel: workingset: timestamp_bits=44 max_order=21 bucket_order=0
Dec 30 17:21:38 DietPi kernel: zbud: loaded
Dec 30 17:21:38 DietPi kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Dec 30 17:21:38 DietPi kernel: fuse: init (API version 7.41)
Dec 30 17:21:38 DietPi kernel: integrity: Platform Keyring initialized
Dec 30 17:21:38 DietPi kernel: xor: measuring software checksum speed
Dec 30 17:21:38 DietPi kernel:    8regs           :  1710 MB/sec
Dec 30 17:21:38 DietPi kernel:    32regs          :  1537 MB/sec
Dec 30 17:21:38 DietPi kernel:    arm64_neon      :  1728 MB/sec
Dec 30 17:21:38 DietPi kernel: xor: using function: arm64_neon (1728 MB/sec)
Dec 30 17:21:38 DietPi kernel: Key type asymmetric registered
Dec 30 17:21:38 DietPi kernel: Asymmetric key parser 'x509' registered
Dec 30 17:21:38 DietPi kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
Dec 30 17:21:38 DietPi kernel: io scheduler mq-deadline registered
Dec 30 17:21:38 DietPi kernel: io scheduler kyber registered
Dec 30 17:21:38 DietPi kernel: io scheduler bfq registered
Dec 30 17:21:38 DietPi kernel: Freeing initrd memory: 13744K
Dec 30 17:21:38 DietPi kernel: ledtrig-cpu: registered to indicate activity on CPUs
Dec 30 17:21:38 DietPi kernel: dma-pl330 fe530000.dma-controller: Loaded driver for PL330 DMAC-241330
Dec 30 17:21:38 DietPi kernel: dma-pl330 fe530000.dma-controller:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Dec 30 17:21:38 DietPi kernel: dma-pl330 fe550000.dma-controller: Loaded driver for PL330 DMAC-241330
Dec 30 17:21:38 DietPi kernel: dma-pl330 fe550000.dma-controller:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Dec 30 17:21:38 DietPi kernel: Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
Dec 30 17:21:38 DietPi kernel: printk: legacy console [ttyS2] disabled
Dec 30 17:21:38 DietPi kernel: fe660000.serial: ttyS2 at MMIO 0xfe660000 (irq = 25, base_baud = 1500000) is a 16550A
Dec 30 17:21:38 DietPi kernel: printk: legacy console [ttyS2] enabled
Dec 30 17:21:38 DietPi kernel: Serial: AMBA driver
Dec 30 17:21:38 DietPi kernel: loop: module loaded
Dec 30 17:21:38 DietPi kernel: Key type psk registered
Dec 30 17:21:38 DietPi kernel: thunder_xcv, ver 1.0
Dec 30 17:21:38 DietPi kernel: thunder_bgx, ver 1.0
Dec 30 17:21:38 DietPi kernel: nicpf, ver 1.0
Dec 30 17:21:38 DietPi kernel: usbcore: registered new interface driver usb-storage
Dec 30 17:21:38 DietPi kernel: mousedev: PS/2 mouse device common for all mice
Dec 30 17:21:38 DietPi kernel: i2c_dev: i2c /dev entries driver
Dec 30 17:21:38 DietPi kernel: fan53555-regulator 0-001c: FAN53555 Option[12] Rev[15] Detected!
Dec 30 17:21:38 DietPi kernel: rtc-hym8563 5-0051: registered as rtc0
Dec 30 17:21:38 DietPi kernel: rtc-hym8563 5-0051: setting system clock to 2024-12-30T16:21:34 UTC (1735575694)
Dec 30 17:21:38 DietPi kernel: sdhci: Secure Digital Host Controller Interface driver
Dec 30 17:21:38 DietPi kernel: sdhci: Copyright(c) Pierre Ossman
Dec 30 17:21:38 DietPi kernel: Synopsys Designware Multimedia Card Interface Driver
Dec 30 17:21:38 DietPi kernel: sdhci-pltfm: SDHCI platform and OF driver helper
Dec 30 17:21:38 DietPi kernel: arm-scmi arm-scmi.1.auto: Using scmi_smc_transport
Dec 30 17:21:38 DietPi kernel: arm-scmi arm-scmi.1.auto: SCMI max-rx-timeout: 30ms
Dec 30 17:21:38 DietPi kernel: scmi_protocol scmi_dev.1: Enabled polling mode TX channel - prot_id:16
Dec 30 17:21:38 DietPi kernel: arm-scmi arm-scmi.1.auto: SCMI Notifications - Core Enabled.
Dec 30 17:21:38 DietPi kernel: arm-scmi arm-scmi.1.auto: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
Dec 30 17:21:38 DietPi kernel: SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
Dec 30 17:21:38 DietPi kernel: hid: raw HID events driver (C) Jiri Kosina
Dec 30 17:21:38 DietPi kernel: usbcore: registered new interface driver usbhid
Dec 30 17:21:38 DietPi kernel: usbhid: USB HID core driver
Dec 30 17:21:38 DietPi kernel: rockchip-dfi fe230000.dfi: dfi initialized, dram type: 0x8, channels: 1
Dec 30 17:21:38 DietPi kernel: hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 (0,8000003f) counters available
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_INET6 protocol family
Dec 30 17:21:38 DietPi kernel: Segment Routing with IPv6
Dec 30 17:21:38 DietPi kernel: In-situ OAM (IOAM) with IPv6
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_PACKET protocol family
Dec 30 17:21:38 DietPi kernel: 8021q: 802.1Q VLAN Support v1.8
Dec 30 17:21:38 DietPi kernel: Key type dns_resolver registered
Dec 30 17:21:38 DietPi kernel: registered taskstats version 1
Dec 30 17:21:38 DietPi kernel: Loading compiled-in X.509 certificates
Dec 30 17:21:38 DietPi kernel: zswap: loaded using pool zstd/z3fold
Dec 30 17:21:38 DietPi kernel: Demotion targets for Node 0: null
Dec 30 17:21:38 DietPi kernel: Key type .fscrypt registered
Dec 30 17:21:38 DietPi kernel: Key type fscrypt-provisioning registered
Dec 30 17:21:38 DietPi kernel: Btrfs loaded, zoned=yes, fsverity=yes
Dec 30 17:21:38 DietPi kernel: Key type encrypted registered
Dec 30 17:21:38 DietPi kernel: AppArmor: AppArmor sha256 policy hashing enabled
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie: host bridge /pcie@fe260000 ranges:
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie:       IO 0x00f4100000..0x00f41fffff -> 0x00f4100000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie:      MEM 0x00f4200000..0x00f5ffffff -> 0x00f4200000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie:      MEM 0x0300000000..0x033fffffff -> 0x0040000000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie: iATU: unroll T, 8 ob, 8 ib, align 64K, limit 8G
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie: PCIe Gen.1 x1 link up
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie: PCI host bridge to bus 0000:00
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: root bus resource [bus 00-0f]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0xf4100000-0xf41fffff])
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: root bus resource [mem 0xf4200000-0xf5ffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: root bus resource [mem 0x300000000-0x33fffffff] (bus address [0x40000000-0x7fffffff])
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: [1d87:3566] type 01 class 0x060400 PCIe Root Port
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: ROM [mem 0x00000000-0x0000ffff pref]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: PCI bridge to [bus 01-ff]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0:   bridge window [mem 0x00000000-0x000fffff]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: supports D1 D2
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: PME# supported from D0 D1 D3hot
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
Dec 30 17:21:38 DietPi kernel: pci 0000:01:00.0: [8086:095a] type 00 class 0x028000 PCIe Endpoint
Dec 30 17:21:38 DietPi kernel: pci 0000:01:00.0: BAR 0 [mem 0x00000000-0x00001fff 64bit]
Dec 30 17:21:38 DietPi kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: bridge window [mem 0xf4200000-0xf42fffff]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: ROM [mem 0xf4300000-0xf430ffff pref]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0000:01:00.0: BAR 0 [mem 0xf4200000-0xf4201fff 64bit]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: PCI bridge to [bus 01-ff]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0:   bridge window [mem 0xf4200000-0xf42fffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: resource 4 [io  0x0000-0xfffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: resource 5 [mem 0xf4200000-0xf5ffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: resource 6 [mem 0x300000000-0x33fffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:01: resource 1 [mem 0xf4200000-0xf42fffff]
Dec 30 17:21:38 DietPi kernel: pcieport 0000:00:00.0: PME: Signaling with IRQ 39
Dec 30 17:21:38 DietPi kernel: pcieport 0000:00:00.0: AER: enabled with IRQ 39
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000808002000010
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: irq 41, io mem 0xfd000000
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
Dec 30 17:21:38 DietPi kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
Dec 30 17:21:38 DietPi kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 30 17:21:38 DietPi kernel: usb usb1: Product: xHCI Host Controller
Dec 30 17:21:38 DietPi kernel: usb usb1: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
Dec 30 17:21:38 DietPi kernel: usb usb1: SerialNumber: xhci-hcd.2.auto
Dec 30 17:21:38 DietPi kernel: hub 1-0:1.0: USB hub found
Dec 30 17:21:38 DietPi kernel: hub 1-0:1.0: 1 port detected
Dec 30 17:21:38 DietPi kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Dec 30 17:21:38 DietPi kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
Dec 30 17:21:38 DietPi kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 30 17:21:38 DietPi kernel: usb usb2: Product: xHCI Host Controller
Dec 30 17:21:38 DietPi kernel: usb usb2: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
Dec 30 17:21:38 DietPi kernel: usb usb2: SerialNumber: xhci-hcd.2.auto
Dec 30 17:21:38 DietPi kernel: hub 2-0:1.0: USB hub found
Dec 30 17:21:38 DietPi kernel: hub 2-0:1.0: 1 port detected
Dec 30 17:21:38 DietPi kernel: ehci-platform fd800000.usb: EHCI Host Controller
Dec 30 17:21:38 DietPi kernel: ohci-platform fd840000.usb: Generic Platform OHCI controller
Dec 30 17:21:38 DietPi kernel: ehci-platform fd800000.usb: new USB bus registered, assigned bus number 3
Dec 30 17:21:38 DietPi kernel: ohci-platform fd840000.usb: new USB bus registered, assigned bus number 4
Dec 30 17:21:38 DietPi kernel: ohci-platform fd840000.usb: irq 43, io mem 0xfd840000
Dec 30 17:21:38 DietPi kernel: ehci-platform fd800000.usb: irq 42, io mem 0xfd800000
Dec 30 17:21:38 DietPi kernel: ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
Dec 30 17:21:38 DietPi kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
Dec 30 17:21:38 DietPi kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 30 17:21:38 DietPi kernel: usb usb3: Product: EHCI Host Controller
Dec 30 17:21:38 DietPi kernel: usb usb3: Manufacturer: Linux 6.12.7-current-rockchip64 ehci_hcd
Dec 30 17:21:38 DietPi kernel: usb usb3: SerialNumber: fd800000.usb
Dec 30 17:21:38 DietPi kernel: hub 3-0:1.0: USB hub found
Dec 30 17:21:38 DietPi kernel: hub 3-0:1.0: 1 port detected
Dec 30 17:21:38 DietPi kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.12
Dec 30 17:21:38 DietPi kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 30 17:21:38 DietPi kernel: usb usb4: Product: Generic Platform OHCI controller
Dec 30 17:21:38 DietPi kernel: usb usb4: Manufacturer: Linux 6.12.7-current-rockchip64 ohci_hcd
Dec 30 17:21:38 DietPi kernel: usb usb4: SerialNumber: fd840000.usb
Dec 30 17:21:38 DietPi kernel: hub 4-0:1.0: USB hub found
Dec 30 17:21:38 DietPi kernel: hub 4-0:1.0: 1 port detected
Dec 30 17:21:38 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: IDMAC supports 32-bit address mode.
Dec 30 17:21:38 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: Using internal DMA controller.
Dec 30 17:21:38 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: Version ID is 270a
Dec 30 17:21:38 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: DW MMC controller at irq 69,32 bit host data width,256 deep fifo
Dec 30 17:21:38 DietPi kernel: WCN: marlin_init entry!
Dec 30 17:21:38 DietPi kernel: of_cfs_init
Dec 30 17:21:38 DietPi kernel: of_cfs_init: OK
Dec 30 17:21:38 DietPi kernel: clk: Disabling unused clocks
Dec 30 17:21:38 DietPi kernel: PM: genpd: Disabling unused power domains
Dec 30 17:21:38 DietPi kernel: mmc_host mmc1: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
Dec 30 17:21:38 DietPi kernel: mmc0: SDHCI controller on fe310000.mmc [fe310000.mmc] using ADMA
Dec 30 17:21:38 DietPi kernel: Freeing unused kernel memory: 4928K
Dec 30 17:21:38 DietPi kernel: Run /init as init process
Dec 30 17:21:38 DietPi kernel:   with arguments:
Dec 30 17:21:38 DietPi kernel:     /init
Dec 30 17:21:38 DietPi kernel:   with environment:
Dec 30 17:21:38 DietPi kernel:     HOME=/
Dec 30 17:21:38 DietPi kernel:     TERM=linux
Dec 30 17:21:38 DietPi kernel: mmc0: new HS200 MMC card at address 0001
Dec 30 17:21:38 DietPi kernel: mmcblk0: mmc0:0001 A3A561 57.6 GiB
Dec 30 17:21:38 DietPi kernel: usb 3-1: new high-speed USB device number 2 using ehci-platform
Dec 30 17:21:38 DietPi kernel:  mmcblk0: p1
Dec 30 17:21:38 DietPi kernel: mmcblk0boot0: mmc0:0001 A3A561 4.00 MiB
Dec 30 17:21:38 DietPi kernel: mmcblk0boot1: mmc0:0001 A3A561 4.00 MiB
Dec 30 17:21:38 DietPi kernel: mmcblk0rpmb: mmc0:0001 A3A561 16.0 MiB, chardev (243:0)
Dec 30 17:21:38 DietPi kernel: usb 3-1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
Dec 30 17:21:38 DietPi kernel: usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Dec 30 17:21:38 DietPi kernel: usb 3-1: Product: USB 2.0 Hub
Dec 30 17:21:38 DietPi kernel: hub 3-1:1.0: USB hub found
Dec 30 17:21:38 DietPi kernel: hub 3-1:1.0: 4 ports detected
Dec 30 17:21:38 DietPi kernel: rk808-rtc rk808-rtc.6.auto: registered as rtc1
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: IRQ sfty not found
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Can not read property: tx_delay.
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: set tx_delay to 0x30
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Can not read property: rx_delay.
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: set rx_delay to 0x10
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: clock input from PHY
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: init for RGMII_ID
Dec 30 17:21:38 DietPi kernel: rockchip-vop2 fe040000.vop: Adding to iommu group 0
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: TSO supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Enabled RFS Flow TC (entries=10)
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Using 32/32 bits DMA host/device width
Dec 30 17:21:38 DietPi kernel: rockchip-drm display-subsystem: bound fe040000.vop (ops vop2_component_ops [rockchipdrm])
Dec 30 17:21:38 DietPi kernel: dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
Dec 30 17:21:38 DietPi kernel: dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
Dec 30 17:21:38 DietPi kernel: rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops dw_hdmi_rockchip_ops [rockchipdrm])
Dec 30 17:21:38 DietPi kernel: [drm] Initialized rockchip 1.0.0 for display-subsystem on minor 0
Dec 30 17:21:38 DietPi kernel: rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes
Dec 30 17:21:38 DietPi kernel: rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes
Dec 30 17:21:38 DietPi kernel: phy phy-fe8c0000.phy.6: lane number 0, val 1
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: host bridge /pcie@fe280000 ranges:
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie:       IO 0x00f0100000..0x00f01fffff -> 0x00f0100000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie:      MEM 0x00f0200000..0x00f1ffffff -> 0x00f0200000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie:      MEM 0x0380000000..0x03bfffffff -> 0x0040000000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: iATU: unroll T, 8 ob, 8 ib, align 64K, limit 8G
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: IRQ sfty not found
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (input).
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Can not read property: tx_delay.
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: set tx_delay to 0x30
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Can not read property: rx_delay.
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: set rx_delay to 0x10
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: clock input from PHY
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: init for RGMII_ID
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Enabled RFS Flow TC (entries=10)
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Using 32/32 bits DMA host/device width
Dec 30 17:21:38 DietPi kernel: mdio_bus stmmac-0: MDIO device at address 1 is missing.
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: PCIe Gen.3 x2 link up
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: PCI host bridge to bus 0002:00
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: root bus resource [bus 00-0f]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: root bus resource [io  0x100000-0x1fffff] (bus address [0xf0100000-0xf01fffff])
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: root bus resource [mem 0xf0200000-0xf1ffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: root bus resource [mem 0x380000000-0x3bfffffff] (bus address [0x40000000-0x7fffffff])
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: [1d87:3566] type 01 class 0x060400 PCIe Root Port
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: BAR 0 [mem 0x00000000-0x3fffffff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: BAR 1 [mem 0x00000000-0x3fffffff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: ROM [mem 0x00000000-0x0000ffff pref]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: PCI bridge to [bus 01-ff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0:   bridge window [io  0x0000-0x0fff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: supports D1 D2
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: PME# supported from D0 D1 D3hot
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: [10ec:5765] type 00 class 0x010802 PCIe Endpoint
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: BAR 0 [mem 0x00000000-0x00003fff 64bit]
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: BAR 5 [mem 0x00000000-0x00001fff]
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0002:00:00.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: BAR 0 [mem 0x380000000-0x3bfffffff]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: can't assign; no space
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: failed to assign
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: bridge window [mem 0xf0200000-0xf02fffff]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: ROM [mem 0xf0300000-0xf030ffff pref]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: BAR 0 [mem 0xf0200000-0xf0203fff 64bit]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: BAR 5 [mem 0xf0204000-0xf0205fff]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: PCI bridge to [bus 01-ff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0:   bridge window [mem 0xf0200000-0xf02fffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: Some PCI device resources are unassigned, try booting with pci=realloc
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: resource 4 [io  0x100000-0x1fffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: resource 5 [mem 0xf0200000-0xf1ffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: resource 6 [mem 0x380000000-0x3bfffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:01: resource 1 [mem 0xf0200000-0xf02fffff]
Dec 30 17:21:38 DietPi kernel: pcieport 0002:00:00.0: PME: Signaling with IRQ 79
Dec 30 17:21:38 DietPi kernel: pcieport 0002:00:00.0: AER: enabled with IRQ 79
Dec 30 17:21:38 DietPi kernel: nvme nvme0: pci function 0002:01:00.0
Dec 30 17:21:38 DietPi kernel: nvme 0002:01:00.0: enabling device (0000 -> 0002)
Dec 30 17:21:38 DietPi kernel: EXT4-fs (mmcblk0p1): mounted filesystem 463087c8-1d8f-4075-b7b1-4b86c641e99e ro with ordered data mode. Quota mode: none.
Dec 30 17:21:38 DietPi kernel: hwmon hwmon2: temp1_input not attached to any thermal zone
Dec 30 17:21:38 DietPi kernel: nvme nvme0: allocated 64 MiB host memory buffer.
Dec 30 17:21:38 DietPi kernel: nvme nvme0: 4/0/0 default/read/poll queues
Dec 30 17:21:38 DietPi kernel: nvme nvme0: Ignoring bogus Namespace Identifiers
Dec 30 17:21:38 DietPi systemd[1]: Inserted module 'autofs4'
Dec 30 17:21:38 DietPi systemd[1]: systemd 252.31-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)
Dec 30 17:21:38 DietPi systemd[1]: Detected architecture arm64.
Dec 30 17:21:38 DietPi systemd[1]: Hostname set to <DietPi>.
Dec 30 17:21:38 DietPi kernel: dw-apb-uart fe660000.serial: forbid DMA for kernel console
Dec 30 17:21:38 DietPi systemd[1]: Queued start job for default target graphical.target.
Dec 30 17:21:38 DietPi systemd[1]: Created slice system-getty.slice - Slice /system/getty.
Dec 30 17:21:38 DietPi systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
Dec 30 17:21:38 DietPi systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
Dec 30 17:21:38 DietPi systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
Dec 30 17:21:38 DietPi systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
Dec 30 17:21:38 DietPi systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
Dec 30 17:21:38 DietPi systemd[1]: Expecting device dev-ttyS2.device - /dev/ttyS2...
Dec 30 17:21:38 DietPi systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
Dec 30 17:21:38 DietPi systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
Dec 30 17:21:38 DietPi systemd[1]: Reached target paths.target - Path Units.
Dec 30 17:21:38 DietPi systemd[1]: Reached target remote-fs.target - Remote File Systems.
Dec 30 17:21:38 DietPi systemd[1]: Reached target slices.target - Slice Units.
Dec 30 17:21:38 DietPi systemd[1]: Reached target swap.target - Swaps.
Dec 30 17:21:38 DietPi systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-journald.socket - Journal Socket.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
Dec 30 17:21:38 DietPi systemd[1]: Reached target sockets.target - Socket Units.
Dec 30 17:21:38 DietPi systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
Dec 30 17:21:38 DietPi systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
Dec 30 17:21:38 DietPi systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
Dec 30 17:21:38 DietPi systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
Dec 30 17:21:38 DietPi systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...
Dec 30 17:21:38 DietPi systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
Dec 30 17:21:38 DietPi systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
Dec 30 17:21:38 DietPi systemd[1]: Starting [email protected] - Load Kernel Module configfs...
Dec 30 17:21:38 DietPi systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
Dec 30 17:21:38 DietPi systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
Dec 30 17:21:38 DietPi systemd[1]: Starting [email protected] - Load Kernel Module fuse...
Dec 30 17:21:38 DietPi systemd[1]: Starting [email protected] - Load Kernel Module loop...
Dec 30 17:21:38 DietPi 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).
Dec 30 17:21:38 DietPi kernel: device-mapper: uevent: version 1.0.3
Dec 30 17:21:38 DietPi kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: [email protected]
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-journald.service - Journal Service...
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
Dec 30 17:21:38 DietPi systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
Dec 30 17:21:38 DietPi systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
Dec 30 17:21:38 DietPi systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
Dec 30 17:21:38 DietPi systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
Dec 30 17:21:38 DietPi systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.
Dec 30 17:21:38 DietPi systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
Dec 30 17:21:38 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:21:38 DietPi systemd[1]: Finished [email protected] - Load Kernel Module configfs.
Dec 30 17:21:38 DietPi systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Dec 30 17:21:38 DietPi systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
Dec 30 17:21:38 DietPi systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
Dec 30 17:21:38 DietPi systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
Dec 30 17:21:38 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:21:38 DietPi systemd[1]: Finished [email protected] - Load Kernel Module fuse.
Dec 30 17:21:38 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:21:38 DietPi systemd[1]: Finished [email protected] - Load Kernel Module loop.
Dec 30 17:21:38 DietPi systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
Dec 30 17:21:38 DietPi systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
Dec 30 17:21:38 DietPi systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
Dec 30 17:21:38 DietPi systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
Dec 30 17:21:38 DietPi kernel: EXT4-fs (mmcblk0p1): re-mounted 463087c8-1d8f-4075-b7b1-4b86c641e99e r/w. Quota mode: none.
Dec 30 17:21:38 DietPi systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
Dec 30 17:21:38 DietPi systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Dec 30 17:21:38 DietPi systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-sysusers.service - Create System Users...
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-sysusers.service - Create System Users.
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
Dec 30 17:21:38 DietPi systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
Dec 30 17:21:38 DietPi systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
Dec 30 17:21:38 DietPi systemd-journald[223]: Journal started
Dec 30 17:21:38 DietPi systemd-journald[223]: Runtime Journal (/run/log/journal/b7ef18856b3d4b109ff379e5dcdf17ec) is 8.0M, max 76.9M, 68.9M free.
Dec 30 17:21:38 DietPi systemd[1]: Started systemd-journald.service - Journal Service.
Dec 30 17:21:38 DietPi systemd-random-seed[233]: Kernel entropy pool is not initialized yet, waiting until it is.
Dec 30 17:21:38 DietPi fake-hwclock[206]: Current system time: 2024-12-30 16:21:37
Dec 30 17:21:38 DietPi fake-hwclock[206]: fake-hwclock saved clock information is in the past: 2024-12-30 16:21:23
Dec 30 17:21:38 DietPi fake-hwclock[206]: To set system time to this saved clock anyway, use "force"
Dec 30 17:21:38 DietPi systemd-udevd[238]: Using default interface naming scheme 'v252'.
Dec 30 17:21:38 DietPi systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files.
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
Dec 30 17:21:38 DietPi systemd[1]: Starting ifupdown-pre.service - Helper to synchronize boot up for ifupdown...
Dec 30 17:21:38 DietPi systemd[1]: Mounting tmp.mount - /tmp...
Dec 30 17:21:38 DietPi systemd[1]: Mounting var-log.mount - /var/log...
Dec 30 17:21:38 DietPi systemd[1]: Mounted tmp.mount - /tmp.
Dec 30 17:21:38 DietPi systemd[1]: Mounted var-log.mount - /var/log.
Dec 30 17:21:38 DietPi systemd[1]: Reached target local-fs.target - Local File Systems.
Dec 30 17:21:38 DietPi systemd[1]: Starting console-setup.service - Set console font and keymap...
Dec 30 17:21:38 DietPi systemd[1]: systemd-binfmt.service - Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Dec 30 17:21:39 DietPi systemd[1]: Starting systemd-journal-flush.service - Flush Journal to Persistent Storage...
Dec 30 17:21:39 DietPi systemd-journald[223]: Runtime Journal (/run/log/journal/b7ef18856b3d4b109ff379e5dcdf17ec) is 8.0M, max 76.9M, 68.9M free.
Dec 30 17:21:39 DietPi systemd-journald[223]: Received client request to flush runtime journal.
Dec 30 17:21:39 DietPi systemd[1]: Finished systemd-journal-flush.service - Flush Journal to Persistent Storage.
Dec 30 17:21:39 DietPi systemd[1]: Starting systemd-tmpfiles-setup.service - Create System Files and Directories...
Dec 30 17:21:39 DietPi systemd[1]: Finished console-setup.service - Set console font and keymap.
Dec 30 17:21:39 DietPi systemd[1]: Finished systemd-tmpfiles-setup.service - Create System Files and Directories.
Dec 30 17:21:39 DietPi systemd[1]: Found device dev-ttyS2.device - /dev/ttyS2.
Dec 30 17:21:39 DietPi systemd[1]: Starting systemd-timesyncd.service - Network Time Synchronization...
Dec 30 17:21:39 DietPi systemd[1]: Starting systemd-update-utmp.service - Record System Boot/Shutdown in UTMP...
Dec 30 17:21:39 DietPi systemd[1]: Expecting device sys-subsystem-net-devices-eth0.device - /sys/subsystem/net/devices/eth0...
Dec 30 17:21:39 DietPi systemd[1]: Finished systemd-update-utmp.service - Record System Boot/Shutdown in UTMP.
Dec 30 17:21:39 DietPi systemd[1]: Found device sys-subsystem-net-devices-eth0.device - /sys/subsystem/net/devices/eth0.
Dec 30 17:21:39 DietPi kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Dec 30 17:21:39 DietPi systemd[1]: Started systemd-timesyncd.service - Network Time Synchronization.
Dec 30 17:21:39 DietPi systemd[1]: Reached target sysinit.target - System Initialization.
Dec 30 17:21:39 DietPi systemd[1]: Started systemd-tmpfiles-clean.timer - Daily Cleanup of Temporary Directories.
Dec 30 17:21:39 DietPi systemd[1]: Reached target time-set.target - System Time Set.
Dec 30 17:21:39 DietPi systemd[1]: Started dpkg-db-backup.timer - Daily dpkg database backup timer.
Dec 30 17:21:39 DietPi systemd[1]: Started fstrim.timer - Discard unused blocks once a week.
Dec 30 17:21:39 DietPi systemd[1]: Reached target timers.target - Timer Units.
Dec 30 17:21:39 DietPi systemd[1]: Reached target usb-gadget.target - Hardware activated USB gadget.
Dec 30 17:21:39 DietPi systemd[1]: systemd-pcrphase-sysinit.service - TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Dec 30 17:21:39 DietPi systemd[1]: Reached target basic.target - Basic System.
Dec 30 17:21:39 DietPi kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Dec 30 17:21:39 DietPi kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Dec 30 17:21:39 DietPi systemd[1]: Started cron.service - Regular background program processing daemon.
Dec 30 17:21:39 DietPi systemd[1]: Starting dietpi-ramlog.service - DietPi-RAMlog...
Dec 30 17:21:39 DietPi systemd[1]: systemd-pcrphase.service - TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Dec 30 17:21:39 DietPi kernel: Intel(R) Wireless WiFi driver for Linux
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: Detected crf-id 0x0, cnv-id 0x0 wfpm id 0x0
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: PCI dev 095a/5410, rev=0x210, rfid=0xd55555d5
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 7265
Dec 30 17:21:39 DietPi cron[295]: (CRON) INFO (pidfile fd = 3)
Dec 30 17:21:39 DietPi cron[295]: (CRON) INFO (Running @reboot jobs)
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: Found debug destination: EXTERNAL_DRAM
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: Found debug configuration: 0
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: loaded firmware version 29.f2390aa8.0 7265D-29.ucode op_mode iwlmvm
Dec 30 17:21:39 DietPi kernel: mc: Linux media interface: v0.10
Dec 30 17:21:40 DietPi kernel: input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-pwrkey.5.auto/input/input0
Dec 30 17:21:40 DietPi kernel: videodev: Linux video capture interface: v2.00
Dec 30 17:21:40 DietPi systemd[1]: Finished dietpi-ramlog.service - DietPi-RAMlog.
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: Allocated 0x00400000 bytes for firmware monitor.
Dec 30 17:21:40 DietPi systemd[1]: Starting dietpi-preboot.service - DietPi-PreBoot...
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: base HW address: c8:21:58:b7:a7:b9, OTP minor version: 0x0
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: will run requests pump with realtime priority
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Registers crypto algos
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register ecb(aes) as ecb-aes-rk2
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register cbc(aes) as cbc-aes-rk2
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register xts(aes) as xts-aes-rk2
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register md5 as rk2-md5 3
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register sha1 as rk2-sha1 4
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register sha256 as rk2-sha256 5
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register sha384 as rk2-sha384 6
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register sha512 as rk2-sha512 7
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register sm3 as rk2-sm3 8
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: clock rate = 594000000
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: bus_clock rate = 500000000
Dec 30 17:21:40 DietPi kernel: rockchip-rga fdeb0000.rga: HW Version: 0x03.02
Dec 30 17:21:40 DietPi kernel: rockchip-rga fdeb0000.rga: Registered rockchip-rga as /dev/video0
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: mali-g52 id 0x7402 major 0x1 minor 0x0 status 0x0
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: features: 00000000,00000cf7, issues: 00000000,00000400
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: Features: L2:0x07110206 Shader:0x00000002 Tiler:0x00000209 Mem:0x1 MMU:0x00002823 AS:0xff JS:0x7
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: shader_present=0x1 l2_present=0x1
Dec 30 17:21:40 DietPi kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Dec 30 17:21:40 DietPi kernel: rockchip_vdec2: module is from the staging directory, the quality is unknown, you have been warned.
Dec 30 17:21:40 DietPi kernel: [drm] Initialized panfrost 1.2.0 for fde60000.gpu on minor 1
Dec 30 17:21:40 DietPi kernel: hantro-vpu fdea0000.video-codec: Adding to iommu group 1
Dec 30 17:21:40 DietPi kernel: random: crng init done
Dec 30 17:21:40 DietPi kernel: hantro-vpu fdea0000.video-codec: registered rockchip,rk3328-vpu-dec as /dev/video2
Dec 30 17:21:40 DietPi kernel: hantro-vpu fdee0000.video-codec: Adding to iommu group 2
Dec 30 17:21:40 DietPi kernel: hantro-vpu fdee0000.video-codec: registered rockchip,rk3568-vepu-enc as /dev/video3
Dec 30 17:21:40 DietPi kernel: Registered IR keymap rc-empty
Dec 30 17:21:40 DietPi kernel: rc rc0: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0
Dec 30 17:21:40 DietPi kernel: rc rc0: lirc_dev: driver gpio_ir_recv registered at minor = 0, raw IR receiver, no transmitter
Dec 30 17:21:40 DietPi kernel: input: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0/input1
Dec 30 17:21:40 DietPi systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
Dec 30 17:21:40 DietPi DietPi-PreBoot[324]:  DietPi-CPU_set
Dec 30 17:21:40 DietPi DietPi-PreBoot[324]: ─────────────────────────────────────────────────────
Dec 30 17:21:40 DietPi DietPi-PreBoot[324]:  Mode: Applying CPU governor settings: schedutil
Dec 30 17:21:40 DietPi DietPi-PreBoot[324]: [ INFO ] DietPi-CPU_set | Setting CPU frequency limits : Max = Disabled MHz | Min = Disabled MHz
Dec 30 17:21:40 DietPi systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Dec 30 17:21:40 DietPi systemd[1]: systemd-machine-id-commit.service - Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Dec 30 17:21:40 DietPi DietPi-PreBoot[324]: [  OK  ] DietPi-CPU_set | Applied CPU governor settings: schedutil
Dec 30 17:21:40 DietPi systemd[1]: Finished dietpi-preboot.service - DietPi-PreBoot.
Dec 30 17:21:40 DietPi systemd[1]: Listening on systemd-rfkill.socket - Load/Save RF Kill Switch Status /dev/rfkill Watch.
Dec 30 17:21:40 DietPi systemd[1]: Starting systemd-rfkill.service - Load/Save RF Kill Switch Status...
Dec 30 17:21:40 DietPi systemd[1]: Started systemd-rfkill.service - Load/Save RF Kill Switch Status.
Dec 30 17:21:40 DietPi systemd[1]: Reached target sound.target - Sound Card.
Dec 30 17:21:40 DietPi systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device - /sys/subsystem/net/devices/wlan0...
Dec 30 17:21:40 DietPi systemd[1]: Found device sys-subsystem-net-devices-wlan0.device - Wireless 7265 (Dual Band Wireless-AC 7265 [Stone Peak 2 AC]).
Dec 30 17:21:40 DietPi systemd[1]: Finished ifupdown-pre.service - Helper to synchronize boot up for ifupdown.
Dec 30 17:21:40 DietPi systemd[1]: Reached target network-pre.target - Preparation for Network.
Dec 30 17:21:40 DietPi systemd[1]: Starting [email protected] - ifup for eth0...
Dec 30 17:21:40 DietPi systemd[1]: Starting [email protected] - ifup for wlan0...
Dec 30 17:21:40 DietPi systemd[1]: Starting networking.service - Raise network interfaces...
Dec 30 17:21:40 DietPi kernel: warning: `iwconfig' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
Dec 30 17:21:40 DietPi dhclient[399]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:21:40 DietPi ifup[399]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:21:40 DietPi ifup[399]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:21:40 DietPi ifup[399]: All rights reserved.
Dec 30 17:21:40 DietPi ifup[399]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:21:40 DietPi dhclient[399]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:21:40 DietPi dhclient[399]: All rights reserved.
Dec 30 17:21:40 DietPi dhclient[399]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:21:40 DietPi dhclient[399]:
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
Dec 30 17:21:40 DietPi wpa_supplicant[398]: Successfully initialized wpa_supplicant
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 30 17:21:40 DietPi kernel: dwmac4: Master AXI performs any burst length
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii-id link mode
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: FW already configured (0) - re-configuring
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: Registered PHC clock: iwlwifi-PTP, with index: 1
Dec 30 17:21:40 DietPi systemd[1]: Finished networking.service - Raise network interfaces.
Dec 30 17:21:40 DietPi dhclient[399]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:21:40 DietPi ifup[399]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:21:40 DietPi ifup[399]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:21:40 DietPi ifup[399]: Sending on   Socket/fallback
Dec 30 17:21:40 DietPi dhclient[399]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:21:40 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 4
Dec 30 17:21:40 DietPi dhclient[399]: Sending on   Socket/fallback
Dec 30 17:21:40 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 4
Dec 30 17:21:41 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=WORLD
Dec 30 17:21:41 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=USER type=COUNTRY alpha2=GB
Dec 30 17:21:41 DietPi dhclient[450]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:21:41 DietPi ifup[450]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:21:41 DietPi ifup[450]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:21:41 DietPi ifup[450]: All rights reserved.
Dec 30 17:21:41 DietPi ifup[450]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:21:41 DietPi dhclient[450]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:21:41 DietPi dhclient[450]: All rights reserved.
Dec 30 17:21:41 DietPi dhclient[450]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:21:41 DietPi dhclient[450]:
Dec 30 17:21:41 DietPi dhclient[450]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:21:41 DietPi ifup[450]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:21:41 DietPi ifup[450]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:21:41 DietPi ifup[450]: Sending on   Socket/fallback
Dec 30 17:21:41 DietPi dhclient[450]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:21:41 DietPi ifup[450]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 8
Dec 30 17:21:41 DietPi dhclient[450]: Sending on   Socket/fallback
Dec 30 17:21:41 DietPi dhclient[450]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 8
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=FR
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:21:44 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:20 (local address=c8:21:58:b7:a7:b9)
Dec 30 17:21:44 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: Trying to associate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:21:44 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:20 (try 2/3)
Dec 30 17:21:44 DietPi kernel: wlan0: authenticated
Dec 30 17:21:44 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:21:44 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:20 (capab=0x1431 status=0 aid=1)
Dec 30 17:21:44 DietPi kernel: wlan0: associated
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: Associated with f0:1d:2d:14:25:20
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:20 [PTK=CCMP GTK=CCMP]
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:20 completed [id=0 id_str=]
Dec 30 17:21:44 DietPi kernel: wlan0: Limiting TX power to 14 (17 - 3) dBm as advertised by f0:1d:2d:14:25:20
Dec 30 17:21:45 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
Dec 30 17:21:45 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
Dec 30 17:21:45 DietPi systemd[1]: systemd-rfkill.service: Deactivated successfully.
Dec 30 17:21:49 DietPi dhclient[450]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 15
Dec 30 17:21:49 DietPi ifup[450]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 15
Dec 30 17:21:49 DietPi dhclient[450]: DHCPOFFER of 192.168.75.115 from 192.168.254.30
Dec 30 17:21:49 DietPi ifup[450]: DHCPOFFER of 192.168.75.115 from 192.168.254.30
Dec 30 17:21:49 DietPi ifup[450]: DHCPREQUEST for 192.168.75.115 on wlan0 to 255.255.255.255 port 67
Dec 30 17:21:49 DietPi dhclient[450]: DHCPREQUEST for 192.168.75.115 on wlan0 to 255.255.255.255 port 67
Dec 30 17:21:49 DietPi dhclient[450]: DHCPACK of 192.168.75.115 from 192.168.254.30
Dec 30 17:21:49 DietPi ifup[450]: DHCPACK of 192.168.75.115 from 192.168.254.30
Dec 30 17:21:49 DietPi dhclient[450]: bound to 192.168.75.115 -- renewal in 11114 seconds.
Dec 30 17:21:49 DietPi ifup[450]: bound to 192.168.75.115 -- renewal in 11114 seconds.
Dec 30 17:21:49 DietPi systemd[1]: Finished [email protected] - ifup for wlan0.
Dec 30 17:21:55 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
Dec 30 17:21:55 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
Dec 30 17:22:05 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 12
Dec 30 17:22:05 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 12
Dec 30 17:22:06 DietPi kernel: vdd_npu: disabling
Dec 30 17:22:09 DietPi systemd-timesyncd[289]: Contacted time server 162.159.200.123:123 (2.debian.pool.ntp.org).
Dec 30 17:22:09 DietPi systemd-timesyncd[289]: Initial clock synchronization to Mon 2024-12-30 16:22:09.206058 GMT.
Dec 30 17:22:17 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 15
Dec 30 17:22:17 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 15
Dec 30 17:22:32 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 9
Dec 30 17:22:32 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 9
Dec 30 17:22:38 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:22:41 DietPi dhclient[399]: No DHCPOFFERS received.
Dec 30 17:22:41 DietPi ifup[399]: No DHCPOFFERS received.
Dec 30 17:22:41 DietPi ifup[399]: No working leases in persistent database - sleeping.
Dec 30 17:22:41 DietPi dhclient[399]: No working leases in persistent database - sleeping.
Dec 30 17:22:41 DietPi systemd[1]: Finished [email protected] - ifup for eth0.
Dec 30 17:22:41 DietPi systemd[1]: Reached target network.target - Network.
Dec 30 17:22:41 DietPi systemd[1]: Reached target network-online.target - Network is Online.
Dec 30 17:22:41 DietPi systemd[1]: Started dietpi-postboot.service - DietPi-PostBoot.
Dec 30 17:22:41 DietPi systemd[1]: Started dropbear.service - Lightweight SSH server.
Dec 30 17:22:41 DietPi systemd[1]: Starting systemd-user-sessions.service - Permit User Sessions...
Dec 30 17:22:41 DietPi dropbear[512]: [512] Dec 30 16:22:41 Failed loading /etc/dropbear/dropbear_dss_host_key
Dec 30 17:22:41 DietPi dropbear[512]: [512] Dec 30 16:22:41 Not backgrounding
Dec 30 17:22:41 DietPi systemd[1]: Finished systemd-user-sessions.service - Permit User Sessions.
Dec 30 17:22:41 DietPi systemd[1]: Started [email protected] - Getty on tty1.
Dec 30 17:22:41 DietPi systemd[1]: Started [email protected] - Serial Getty on ttyS2.
Dec 30 17:22:41 DietPi systemd[1]: Reached target getty.target - Login Prompts.
Dec 30 17:22:41 DietPi systemd[1]: Reached target multi-user.target - Multi-User System.
Dec 30 17:22:41 DietPi systemd[1]: Reached target graphical.target - Graphical Interface.
Dec 30 17:22:41 DietPi systemd[1]: Starting systemd-update-utmp-runlevel.service - Record Runlevel Change in UTMP...
Dec 30 17:22:41 DietPi systemd[1]: systemd-update-utmp-runlevel.service: Deactivated successfully.
Dec 30 17:22:41 DietPi systemd[1]: Finished systemd-update-utmp-runlevel.service - Record Runlevel Change in UTMP.
Dec 30 17:22:41 DietPi systemd[1]: Startup finished in 4.371s (kernel) + 1min 5.378s (userspace) = 1min 9.749s.
Dec 30 17:22:41 DietPi systemd[1]: Stopping systemd-timesyncd.service - Network Time Synchronization...
Dec 30 17:22:41 DietPi systemd[1]: systemd-timesyncd.service: Deactivated successfully.
Dec 30 17:22:41 DietPi systemd[1]: Stopped systemd-timesyncd.service - Network Time Synchronization.
Dec 30 17:22:46 DietPi kernel: sysrq: HELP : loglevel(0-9) reboot(b) crash(c) terminate-all-tasks(e) memory-full-oom-kill(f) kill-all-tasks(i) thaw-filesystems(j) sak(k) show-backtrace-all-active-cpus(l) show-memory-usage(m) nice-all-RT-tasks(n) poweroff(o) show-registers(p) show-all-timers(q) unraw(r) sync(s) show-task-states(t) unmount(u) show-blocked-tasks(w) dump-ftrace-buffer(z) replay-kernel-logs(R)
Dec 30 17:22:46 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:22:54 DietPi login[515]: pam_unix(login:session): session opened for user root(uid=0) by LOGIN(uid=0)
Dec 30 17:22:54 DietPi login[1075]: ROOT LOGIN  on '/dev/ttyS2'
Dec 30 17:23:21 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 100Mbps/Full - flow control off
Dec 30 17:23:40 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:23:50 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:04 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:09 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:13 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:17 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:18 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:21 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:24 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:25 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:26 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:29 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:33 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:36 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:39 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:41 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:47 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:54 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:56 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:58 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:07 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:14 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:18 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:19 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:24 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:28 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:32 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:35 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:06 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:12 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Down
Dec 30 17:26:16 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:20 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:22 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5
Dec 30 17:26:23 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:26 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:27 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
Dec 30 17:26:28 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:29 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:19, missed_beacons_since_rx:1
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:20, missed_beacons_since_rx:2
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:21, missed_beacons_since_rx:3
Dec 30 17:26:29 DietPi kernel: wlan0: Connection to AP f0:1d:2d:14:25:20 lost
Dec 30 17:26:29 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:20 reason=4 locally_generated=1
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:23, missed_beacons_since_rx:1
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:26:30 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:2f (local address=c8:21:58:b7:a7:b9)
Dec 30 17:26:30 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: Trying to associate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:26:30 DietPi kernel: wlan0: authenticated
Dec 30 17:26:30 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:26:30 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:2f (capab=0x1111 status=0 aid=1)
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: Associated with f0:1d:2d:14:25:2f
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:26:30 DietPi kernel: wlan0: associated
Dec 30 17:26:30 DietPi kernel: wlan0: Limiting TX power to 17 (20 - 3) dBm as advertised by f0:1d:2d:14:25:2f
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:2f [PTK=CCMP GTK=CCMP]
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:2f completed [id=0 id_str=]
Dec 30 17:26:37 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 15
Dec 30 17:26:49 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 30 17:26:50 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Down
Dec 30 17:26:52 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 19
Dec 30 17:26:53 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 30 17:27:12 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
Dec 30 17:27:12 DietPi dhclient[399]: DHCPOFFER of 192.168.75.118 from 192.168.254.30
Dec 30 17:27:12 DietPi dhclient[399]: DHCPREQUEST for 192.168.75.118 on eth0 to 255.255.255.255 port 67
Dec 30 17:27:12 DietPi dhclient[399]: DHCPACK of 192.168.75.118 from 192.168.254.30
Dec 30 17:27:12 DietPi dhclient[399]: bound to 192.168.75.118 -- renewal in 11650 seconds.
Dec 30 17:27:44 DietPi systemd[1]: Reloading.
Dec 30 17:27:45 DietPi systemd[1]: Stopping [email protected] - ifup for eth0...
Dec 30 17:27:45 DietPi ifdown[2130]: RTNETLINK answers: No such process
Dec 30 17:27:45 DietPi ifdown[2132]: Error: ipv4: Address not found.
Dec 30 17:27:45 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Down
Dec 30 17:27:45 DietPi dhclient[399]: receive_packet failed on eth0: Network is down
Dec 30 17:27:45 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:27:45 DietPi systemd[1]: Stopped [email protected] - ifup for eth0.
Dec 30 17:27:45 DietPi systemd[1]: Starting [email protected] - ifup for eth0...
Dec 30 17:27:45 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
Dec 30 17:27:46 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 30 17:27:46 DietPi kernel: dwmac4: Master AXI performs any burst length
Dec 30 17:27:46 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
Dec 30 17:27:46 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
Dec 30 17:27:46 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
Dec 30 17:27:46 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii-id link mode
Dec 30 17:27:46 DietPi ifup[2161]: RTNETLINK answers: File exists
Dec 30 17:27:46 DietPi ifup[2144]: ifup: failed to bring up eth0
Dec 30 17:27:46 DietPi systemd[1]: [email protected]: Main process exited, code=exited, status=1/FAILURE
Dec 30 17:27:46 DietPi systemd[1]: [email protected]: Failed with result 'exit-code'.
Dec 30 17:27:46 DietPi systemd[1]: Failed to start [email protected] - ifup for eth0.
Dec 30 17:27:46 DietPi systemd[1]: Stopping [email protected] - ifup for wlan0...
Dec 30 17:27:46 DietPi dhclient[2176]: Killed old client process
Dec 30 17:27:46 DietPi ifdown[2176]: Killed old client process
Dec 30 17:27:47 DietPi dhclient[2176]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:27:47 DietPi ifdown[2176]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:27:47 DietPi ifdown[2176]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:27:47 DietPi ifdown[2176]: All rights reserved.
Dec 30 17:27:47 DietPi ifdown[2176]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:27:47 DietPi dhclient[2176]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:27:47 DietPi dhclient[2176]: All rights reserved.
Dec 30 17:27:47 DietPi dhclient[2176]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:27:47 DietPi dhclient[2176]:
Dec 30 17:27:47 DietPi dhclient[2176]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:47 DietPi ifdown[2176]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:47 DietPi ifdown[2176]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:47 DietPi ifdown[2176]: Sending on   Socket/fallback
Dec 30 17:27:47 DietPi dhclient[2176]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:47 DietPi dhclient[2176]: Sending on   Socket/fallback
Dec 30 17:27:47 DietPi dhclient[2176]: DHCPRELEASE of 192.168.75.115 on wlan0 to 192.168.254.30 port 67
Dec 30 17:27:47 DietPi ifdown[2176]: DHCPRELEASE of 192.168.75.115 on wlan0 to 192.168.254.30 port 67
Dec 30 17:27:47 DietPi kernel: wlan0: deauthenticating from f0:1d:2d:14:25:2f by local choice (Reason: 3=DEAUTH_LEAVING)
Dec 30 17:27:47 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:2f reason=3 locally_generated=1
Dec 30 17:27:47 DietPi wpa_supplicant[445]: BSSID f0:1d:2d:14:25:2f ignore list count incremented to 2, ignoring for 10 seconds
Dec 30 17:27:47 DietPi wpa_supplicant[445]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:27:47 DietPi wpa_supplicant[445]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:27:47 DietPi wpa_supplicant[445]: nl80211: deinit ifname=p2p-dev-wlan0 disabled_11b_rates=0
Dec 30 17:27:47 DietPi wpa_supplicant[445]: p2p-dev-wlan0: CTRL-EVENT-TERMINATING
Dec 30 17:27:47 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:27:47 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:27:47 DietPi wpa_supplicant[445]: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
Dec 30 17:27:47 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-TERMINATING
Dec 30 17:27:47 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:27:47 DietPi systemd[1]: Stopped [email protected] - ifup for wlan0.
Dec 30 17:27:47 DietPi systemd[1]: Starting [email protected] - ifup for wlan0...
Dec 30 17:27:47 DietPi wpa_supplicant[2211]: Successfully initialized wpa_supplicant
Dec 30 17:27:47 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:27:47 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:27:47 DietPi kernel: iwlwifi 0000:01:00.0: FW already configured (0) - re-configuring
Dec 30 17:27:47 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=WORLD
Dec 30 17:27:47 DietPi dhclient[2219]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:27:47 DietPi ifup[2219]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:27:47 DietPi ifup[2219]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:27:47 DietPi ifup[2219]: All rights reserved.
Dec 30 17:27:47 DietPi ifup[2219]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:27:47 DietPi dhclient[2219]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:27:47 DietPi dhclient[2219]: All rights reserved.
Dec 30 17:27:47 DietPi dhclient[2219]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:27:47 DietPi dhclient[2219]:
Dec 30 17:27:48 DietPi dhclient[2219]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:48 DietPi ifup[2219]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:48 DietPi ifup[2219]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:48 DietPi ifup[2219]: Sending on   Socket/fallback
Dec 30 17:27:48 DietPi dhclient[2219]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:48 DietPi ifup[2219]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5
Dec 30 17:27:48 DietPi dhclient[2219]: Sending on   Socket/fallback
Dec 30 17:27:48 DietPi dhclient[2219]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5
Dec 30 17:27:50 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=FR
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:27:51 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:20 (local address=c8:21:58:b7:a7:b9)
Dec 30 17:27:51 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:27:51 DietPi kernel: wlan0: authenticated
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: Trying to associate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:27:51 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:27:51 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:20 (capab=0x1431 status=0 aid=1)
Dec 30 17:27:51 DietPi kernel: wlan0: associated
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: Associated with f0:1d:2d:14:25:20
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:20 [PTK=CCMP GTK=CCMP]
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:20 completed [id=0 id_str=]
Dec 30 17:27:52 DietPi dhclient[2219]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 12
Dec 30 17:27:52 DietPi ifup[2219]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 12
Dec 30 17:27:52 DietPi dhclient[2219]: DHCPOFFER of 192.168.75.215 from 192.168.75.116
Dec 30 17:27:52 DietPi ifup[2219]: DHCPOFFER of 192.168.75.215 from 192.168.75.116
Dec 30 17:27:52 DietPi ifup[2219]: DHCPREQUEST for 192.168.75.215 on wlan0 to 255.255.255.255 port 67
Dec 30 17:27:52 DietPi dhclient[2219]: DHCPREQUEST for 192.168.75.215 on wlan0 to 255.255.255.255 port 67
Dec 30 17:27:52 DietPi dhclient[2219]: DHCPACK of 192.168.75.215 from 192.168.75.116
Dec 30 17:27:52 DietPi ifup[2219]: DHCPACK of 192.168.75.215 from 192.168.75.116
Dec 30 17:27:52 DietPi dhclient[2219]: bound to 192.168.75.215 -- renewal in 13853 seconds.
Dec 30 17:27:52 DietPi ifup[2219]: bound to 192.168.75.215 -- renewal in 13853 seconds.
Dec 30 17:27:53 DietPi systemd[1]: Finished [email protected] - ifup for wlan0.
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:19, missed_beacons_since_rx:1
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:20, missed_beacons_since_rx:2
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:21, missed_beacons_since_rx:3
Dec 30 17:27:53 DietPi kernel: wlan0: Connection to AP f0:1d:2d:14:25:20 lost
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:20 reason=4 locally_generated=1
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: BSSID f0:1d:2d:14:25:20 ignore list count incremented to 2, ignoring for 10 seconds
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:27:54 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:2f (local address=c8:21:58:b7:a7:b9)
Dec 30 17:27:54 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: Trying to associate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:27:54 DietPi kernel: wlan0: authenticated
Dec 30 17:27:54 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:27:54 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:2f (capab=0x1111 status=0 aid=3)
Dec 30 17:27:54 DietPi kernel: wlan0: associated
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: Associated with f0:1d:2d:14:25:2f
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:2f [PTK=CCMP GTK=CCMP]
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:2f completed [id=0 id_str=]
Dec 30 17:27:54 DietPi kernel: wlan0: Limiting TX power to 17 (20 - 3) dBm as advertised by f0:1d:2d:14:25:2f
Dec 30 17:28:26 DietPi systemd[1]: Reloading.
Dec 30 17:28:27 DietPi systemd[1]: Starting [email protected] - ifup for eth0...
Dec 30 17:28:27 DietPi dhclient[2476]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:27 DietPi ifup[2476]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:27 DietPi ifup[2476]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:27 DietPi ifup[2476]: All rights reserved.
Dec 30 17:28:27 DietPi ifup[2476]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:27 DietPi dhclient[2476]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:27 DietPi dhclient[2476]: All rights reserved.
Dec 30 17:28:27 DietPi dhclient[2476]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:27 DietPi dhclient[2476]:
Dec 30 17:28:27 DietPi dhclient[2476]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:28:27 DietPi ifup[2476]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:28:27 DietPi ifup[2476]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:28:27 DietPi ifup[2476]: Sending on   Socket/fallback
Dec 30 17:28:27 DietPi dhclient[2476]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:28:27 DietPi ifup[2476]: DHCPREQUEST for 192.168.75.118 on eth0 to 255.255.255.255 port 67
Dec 30 17:28:27 DietPi dhclient[2476]: Sending on   Socket/fallback
Dec 30 17:28:27 DietPi dhclient[2476]: DHCPREQUEST for 192.168.75.118 on eth0 to 255.255.255.255 port 67
Dec 30 17:28:27 DietPi dhclient[2476]: DHCPACK of 192.168.75.118 from 192.168.254.30
Dec 30 17:28:27 DietPi ifup[2476]: DHCPACK of 192.168.75.118 from 192.168.254.30
Dec 30 17:28:27 DietPi dhclient[2476]: bound to 192.168.75.118 -- renewal in 10804 seconds.
Dec 30 17:28:27 DietPi ifup[2476]: bound to 192.168.75.118 -- renewal in 10804 seconds.
Dec 30 17:28:27 DietPi systemd[1]: Finished [email protected] - ifup for eth0.
Dec 30 17:28:27 DietPi systemd[1]: Stopping [email protected] - ifup for wlan0...
Dec 30 17:28:27 DietPi dhclient[2526]: Killed old client process
Dec 30 17:28:27 DietPi ifdown[2526]: Killed old client process
Dec 30 17:28:28 DietPi dhclient[2526]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:28 DietPi ifdown[2526]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:28 DietPi ifdown[2526]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:28 DietPi ifdown[2526]: All rights reserved.
Dec 30 17:28:28 DietPi ifdown[2526]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:28 DietPi dhclient[2526]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:28 DietPi dhclient[2526]: All rights reserved.
Dec 30 17:28:28 DietPi dhclient[2526]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:28 DietPi dhclient[2526]:
Dec 30 17:28:28 DietPi dhclient[2526]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:28 DietPi ifdown[2526]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:28 DietPi ifdown[2526]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:28 DietPi ifdown[2526]: Sending on   Socket/fallback
Dec 30 17:28:28 DietPi dhclient[2526]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:28 DietPi dhclient[2526]: Sending on   Socket/fallback
Dec 30 17:28:28 DietPi dhclient[2526]: DHCPRELEASE of 192.168.75.215 on wlan0 to 192.168.75.116 port 67
Dec 30 17:28:28 DietPi ifdown[2526]: DHCPRELEASE of 192.168.75.215 on wlan0 to 192.168.75.116 port 67
Dec 30 17:28:28 DietPi kernel: wlan0: deauthenticating from f0:1d:2d:14:25:2f by local choice (Reason: 3=DEAUTH_LEAVING)
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:2f reason=3 locally_generated=1
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: nl80211: deinit ifname=p2p-dev-wlan0 disabled_11b_rates=0
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: p2p-dev-wlan0: CTRL-EVENT-TERMINATING
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-TERMINATING
Dec 30 17:28:28 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:28:28 DietPi systemd[1]: Stopped [email protected] - ifup for wlan0.
Dec 30 17:28:28 DietPi systemd[1]: Starting [email protected] - ifup for wlan0...
Dec 30 17:28:28 DietPi wpa_supplicant[2561]: Successfully initialized wpa_supplicant
Dec 30 17:28:28 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:28:29 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:28:29 DietPi kernel: iwlwifi 0000:01:00.0: FW already configured (0) - re-configuring
Dec 30 17:28:29 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=WORLD
Dec 30 17:28:29 DietPi dhclient[2569]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:29 DietPi ifup[2569]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:29 DietPi ifup[2569]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:29 DietPi ifup[2569]: All rights reserved.
Dec 30 17:28:29 DietPi ifup[2569]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:29 DietPi dhclient[2569]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:29 DietPi dhclient[2569]: All rights reserved.
Dec 30 17:28:29 DietPi dhclient[2569]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:29 DietPi dhclient[2569]:
Dec 30 17:28:29 DietPi dhclient[2569]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:29 DietPi ifup[2569]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:29 DietPi ifup[2569]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:29 DietPi ifup[2569]: Sending on   Socket/fallback
Dec 30 17:28:29 DietPi dhclient[2569]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:29 DietPi ifup[2569]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5
Dec 30 17:28:29 DietPi dhclient[2569]: Sending on   Socket/fallback
Dec 30 17:28:29 DietPi dhclient[2569]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=FR
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:28:32 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:20 (local address=c8:21:58:b7:a7:b9)
Dec 30 17:28:32 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: Trying to associate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:28:32 DietPi kernel: wlan0: authenticated
Dec 30 17:28:32 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:28:32 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:20 (capab=0x1431 status=0 aid=1)
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: Associated with f0:1d:2d:14:25:20
Dec 30 17:28:32 DietPi kernel: wlan0: associated
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:28:32 DietPi kernel: wlan0: Limiting TX power to 14 (17 - 3) dBm as advertised by f0:1d:2d:14:25:20
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:20 [PTK=CCMP GTK=CCMP]
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:20 completed [id=0 id_str=]
Dec 30 17:28:34 DietPi dhclient[2569]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 13
Dec 30 17:28:34 DietPi ifup[2569]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 13
Dec 30 17:28:34 DietPi dhclient[2569]: DHCPOFFER of 192.168.75.215 from 192.168.75.116
Dec 30 17:28:34 DietPi ifup[2569]: DHCPOFFER of 192.168.75.215 from 192.168.75.116
Dec 30 17:28:34 DietPi ifup[2569]: DHCPREQUEST for 192.168.75.215 on wlan0 to 255.255.255.255 port 67
Dec 30 17:28:34 DietPi dhclient[2569]: DHCPREQUEST for 192.168.75.215 on wlan0 to 255.255.255.255 port 67
Dec 30 17:28:34 DietPi dhclient[2569]: DHCPACK of 192.168.75.215 from 192.168.75.116
Dec 30 17:28:34 DietPi ifup[2569]: DHCPACK of 192.168.75.215 from 192.168.75.116
Dec 30 17:28:34 DietPi dhclient[2569]: bound to 192.168.75.215 -- renewal in 13553 seconds.
Dec 30 17:28:34 DietPi ifup[2569]: bound to 192.168.75.215 -- renewal in 13553 seconds.
Dec 30 17:28:34 DietPi systemd[1]: Finished [email protected] - ifup for wlan0.
Dec 30 17:28:38 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:28:40 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:20 reason=4 locally_generated=1
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: BSSID f0:1d:2d:14:25:20 ignore list count incremented to 2, ignoring for 10 seconds
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:28:41 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:2f (local address=c8:21:58:b7:a7:b9)
Dec 30 17:28:41 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: Trying to associate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:28:41 DietPi kernel: wlan0: authenticated
Dec 30 17:28:41 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:28:41 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:2f (capab=0x1111 status=0 aid=1)
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: Associated with f0:1d:2d:14:25:2f
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:28:41 DietPi kernel: wlan0: associated
Dec 30 17:28:41 DietPi kernel: wlan0: Limiting TX power to 17 (20 - 3) dBm as advertised by f0:1d:2d:14:25:2f
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:2f [PTK=CCMP GTK=CCMP]
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:2f completed [id=0 id_str=]
Dec 30 17:31:41 DietPi kernel: wlan0: deauthenticated from f0:1d:2d:14:25:2f (Reason: 1=UNSPECIFIED)
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:2f reason=1
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: BSSID f0:1d:2d:14:25:2f ignore list count incremented to 2, ignoring for 10 seconds
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:31:41 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:20 (local address=c8:21:58:b7:a7:b9)
Dec 30 17:31:41 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: Trying to associate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:31:41 DietPi kernel: wlan0: authenticated
Dec 30 17:31:41 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:31:41 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:20 (capab=0x1431 status=0 aid=1)
Dec 30 17:31:41 DietPi kernel: wlan0: associated
Dec 30 17:31:41 DietPi kernel: wlan0: deauthenticated from f0:1d:2d:14:25:20 (Reason: 12=<unknown>)
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: Associated with f0:1d:2d:14:25:20
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:20 reason=12
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: BSSID f0:1d:2d:14:25:20 ignore list count incremented to 3, ignoring for 60 seconds
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:31:42 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:2f (local address=c8:21:58:b7:a7:b9)
Dec 30 17:31:42 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: Trying to associate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:31:42 DietPi kernel: wlan0: authenticated
Dec 30 17:31:42 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:31:42 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:2f (capab=0x1111 status=0 aid=3)
Dec 30 17:31:42 DietPi kernel: wlan0: associated
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: Associated with f0:1d:2d:14:25:2f
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:2f [PTK=CCMP GTK=CCMP]
Dec 30 17:31:42 DietPi kernel: wlan0: Limiting TX power to 17 (20 - 3) dBm as advertised by f0:1d:2d:14:25:2f
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:2f completed [id=0 id_str=]
Dec 30 17:34:01 DietPi kernel: wlan0: disassociated from f0:1d:2d:14:25:2f (Reason: 1=UNSPECIFIED)
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:2f reason=1
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: BSSID f0:1d:2d:14:25:2f ignore list count incremented to 2, ignoring for 10 seconds
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:34:01 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:2f (local address=c8:21:58:b7:a7:b9)
Dec 30 17:34:01 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: Trying to associate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:34:01 DietPi kernel: wlan0: authenticated
Dec 30 17:34:01 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:34:01 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:2f (capab=0x1111 status=0 aid=3)
Dec 30 17:34:01 DietPi kernel: wlan0: associated
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: Associated with f0:1d:2d:14:25:2f
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:2f [PTK=CCMP GTK=CCMP]
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:2f completed [id=0 id_str=]
Dec 30 17:34:01 DietPi kernel: wlan0: Limiting TX power to 17 (20 - 3) dBm as advertised by f0:1d:2d:14:25:2f

@Joulinar
Copy link
Collaborator

dietpi-config is not supporting 2 ethernet adapter. This is a known limitation actually. 2nd NIC adapter would need to be configured manually.

@MidG971
Copy link
Author

MidG971 commented Dec 31, 2024

@Joulinar : I wasn't aware of that, my bad.

Report:

Below I've got the two NICs plugged to my router, only eth0 aka eth2 physically is up. Even with a fresh restart eth1 aka eth1 physically stays down.

root@DietPi:~# ethtool eth0
Settings for eth0:
        Supported ports: [ TP    MII ]
        Supported link modes:   10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Full
        Supported pause frame use: Symmetric Receive-only
        Supports auto-negotiation: Yes
        Supported FEC modes: Not reported
        Advertised link modes:  10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Full
        Advertised pause frame use: Symmetric Receive-only
        Advertised auto-negotiation: Yes
        Advertised FEC modes: Not reported
        Link partner advertised link modes:  10baseT/Half 10baseT/Full
                                             100baseT/Half 100baseT/Full
                                             1000baseT/Full
        Link partner advertised pause frame use: Symmetric Receive-only
        Link partner advertised auto-negotiation: Yes
        Link partner advertised FEC modes: Not reported
        Speed: 1000Mb/s
        Duplex: Full
        Auto-negotiation: on
        master-slave cfg: preferred slave
        master-slave status: slave
        Port: Twisted Pair
        PHYAD: 1
        Transceiver: external
        MDI-X: Unknown
        Supports Wake-on: ug
        Wake-on: d
        Current message level: 0x0000003f (63)
                               drv probe link timer ifdown ifup
        Link detected: yes
root@DietPi:~# ethtool eth1
Settings for eth1:
        Supported ports: [ TP    AUI     MII     FIBRE   BNC     Backplane ]
        Supported link modes:   10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Half 1000baseT/Full
                                1000baseKX/Full
                                1000baseX/Full
                                100baseT1/Full
                                1000baseT1/Full
                                100baseFX/Half 100baseFX/Full
                                10baseT1L/Full
                                10baseT1S/Full
                                10baseT1S/Half
                                10baseT1S_P2MP/Half
        Supported pause frame use: Symmetric Receive-only
        Supports auto-negotiation: Yes
        Supported FEC modes: Not reported
        Advertised link modes:  Not reported
        Advertised pause frame use: No
        Advertised auto-negotiation: No
        Advertised FEC modes: Not reported
        Speed: Unknown!
        Duplex: Half
        Auto-negotiation: off
        Port: MII
        PHYAD: 0
        Transceiver: internal
        Supports Wake-on: ug
        Wake-on: d
        Current message level: 0x0000003f (63)
                               drv probe link timer ifdown ifup
        Link detected: no
 

@MidG971
Copy link
Author

MidG971 commented Dec 31, 2024

Here's more info :
dmesg :

root@DietPi:~# dmesg
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    0.000000] Linux version 6.12.7-current-rockchip64 (build@armbian) (aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #1 SMP PREEMPT Fri Dec 27 13:02:20 UTC 2024
[    0.000000] KASLR disabled due to lack of seed
[    0.000000] Machine model: Radxa ROCK 3A
[    0.000000] efi: UEFI not found.
[    0.000000] NUMA: Faking a node at [mem 0x0000000000200000-0x00000001ffffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x1fefd8080-0x1fefda7ff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000200000-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 0x0000000000200000-0x00000000efffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
[    0.000000] On node 0, zone DMA: 512 pages in unavailable ranges
[    0.000000] cma: Reserved 128 MiB at 0x00000000e8000000 on node -1
[    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 34 pages/cpu s98968 r8192 d32104 u139264
[    0.000000] pcpu-alloc: s98968 r8192 d32104 u139264 alloc=34*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Qualcomm erratum 1009, or ARM erratum 1286807, 2441009
[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Kernel command line: root=UUID=463087c8-1d8f-4075-b7b1-4b86c641e99e rootfstype=ext4 rootwait console=ttyS2,1500000 console=tty1 consoleblank=0 coherent_pool=2M usb-storage.quirks= net.ifnames=0 androidboot.fwver=ddr-v1.21-2d653b3476,bl31-v1.44,uboot-rmbian-201-10/09/2024
[    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] Fallback order for Node 0: 0
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2031104
[    0.000000] Policy zone: Normal
[    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.000000] software IO TLB: area num 4.
[    0.000000] software IO TLB: mapped [mem 0x00000000e4000000-0x00000000e8000000] (64MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    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]  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] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.000000] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 320 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: MBI range [296:319]
[    0.000000] GICv3: Using MBI frame 0x00000000fd410000
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: GICv3 features: 16 PPIs
[    0.000000] GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=1
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000
[    0.000000] ITS: No ITS available, not enabling LPIs
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    0.001453] Console: colour dummy device 80x25
[    0.001475] printk: legacy console [tty1] enabled
[    0.002424] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
[    0.002471] pid_max: default: 32768 minimum: 301
[    0.002602] LSM: initializing lsm=capability,yama,apparmor
[    0.002718] Yama: becoming mindful.
[    0.003061] AppArmor: AppArmor initialized
[    0.003260] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.003343] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.028348] rcu: Hierarchical SRCU implementation.
[    0.028397] rcu:     Max phase no-delay instances is 1000.
[    0.028908] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.032686] EFI services will not be available.
[    0.035781] smp: Bringing up secondary CPUs ...
[    0.047972] Detected VIPT I-cache on CPU1
[    0.048080] GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000
[    0.048140] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[    0.060034] Detected VIPT I-cache on CPU2
[    0.060132] GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000
[    0.060183] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[    0.072101] Detected VIPT I-cache on CPU3
[    0.072200] GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000
[    0.072247] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[    0.072435] smp: Brought up 1 node, 4 CPUs
[    0.072586] SMP: Total of 4 processors activated.
[    0.072606] CPU: All CPU(s) started at EL2
[    0.072626] CPU features: detected: 32-bit EL0 Support
[    0.072644] CPU features: detected: 32-bit EL1 Support
[    0.072667] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.072695] CPU features: detected: Common not Private translations
[    0.072715] CPU features: detected: CRC32 instructions
[    0.072740] CPU features: detected: RCpc load-acquire (LDAPR)
[    0.072760] CPU features: detected: LSE atomic instructions
[    0.072780] CPU features: detected: Privileged Access Never
[    0.072799] CPU features: detected: RAS Extension Support
[    0.072822] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.072923] alternatives: applying system-wide alternatives
[    0.077802] Memory: 7721564K/8124416K available (16384K kernel code, 2760K rwdata, 5212K rodata, 4928K init, 787K bss, 266900K reserved, 131072K cma-reserved)
[    0.080766] devtmpfs: initialized
[    0.104907] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.104998] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.109265] 25184 pages in range for non-PLT usage
[    0.109293] 516704 pages in range for PLT usage
[    0.109793] pinctrl core: initialized pinctrl subsystem
[    0.110593] DMI not present or invalid.
[    0.115742] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.117915] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[    0.119187] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.120401] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.120520] audit: initializing netlink subsys (disabled)
[    0.120895] audit: type=2000 audit(0.116:1): state=initialized audit_enabled=0 res=1
[    0.124340] thermal_sys: Registered thermal governor 'fair_share'
[    0.124355] thermal_sys: Registered thermal governor 'bang_bang'
[    0.124384] thermal_sys: Registered thermal governor 'step_wise'
[    0.124406] thermal_sys: Registered thermal governor 'user_space'
[    0.124532] cpuidle: using governor menu
[    0.124914] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.125157] ASID allocator initialised with 65536 entries
[    0.125597] Serial: AMBA PL011 UART driver
[    0.143152] /vop@fe040000: Fixed dependency cycle(s) with /hdmi@fe0a0000
[    0.143305] /hdmi@fe0a0000: Fixed dependency cycle(s) with /vop@fe040000
[    0.148928] /pcie@fe260000: Fixed dependency cycle(s) with /pcie@fe260000/legacy-interrupt-controller
[    0.171453] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.172127] rockchip-gpio fdd60000.gpio: probed /pinctrl/gpio@fdd60000
[    0.172643] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.173077] rockchip-gpio fe740000.gpio: probed /pinctrl/gpio@fe740000
[    0.173515] gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.174012] rockchip-gpio fe750000.gpio: probed /pinctrl/gpio@fe750000
[    0.174674] gpio gpiochip3: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.175103] rockchip-gpio fe760000.gpio: probed /pinctrl/gpio@fe760000
[    0.175641] gpio gpiochip4: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.176052] rockchip-gpio fe770000.gpio: probed /pinctrl/gpio@fe770000
[    0.180706] /pcie@fe280000: Fixed dependency cycle(s) with /pcie@fe280000/legacy-interrupt-controller
[    0.181301] /hdmi@fe0a0000: Fixed dependency cycle(s) with /hdmi-con
[    0.181430] /hdmi-con: Fixed dependency cycle(s) with /hdmi@fe0a0000
[    0.190337] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.190388] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    0.190414] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.190435] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    0.190458] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.190478] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    0.190499] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.190518] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.192586] cryptd: max_cpu_qlen set to 1000
[    0.260145] raid6: neonx8   gen()  1408 MB/s
[    0.328286] raid6: neonx4   gen()  1430 MB/s
[    0.396418] raid6: neonx2   gen()  1319 MB/s
[    0.464562] raid6: neonx1   gen()  1071 MB/s
[    0.532691] raid6: int64x8  gen()   911 MB/s
[    0.600842] raid6: int64x4  gen()  1048 MB/s
[    0.668978] raid6: int64x2  gen()   936 MB/s
[    0.737125] raid6: int64x1  gen()   687 MB/s
[    0.737153] raid6: using algorithm neonx4 gen() 1430 MB/s
[    0.805258] raid6: .... xor() 1101 MB/s, rmw enabled
[    0.805284] raid6: using neon recovery algorithm
[    0.806863] iommu: Default domain type: Translated
[    0.806903] iommu: DMA domain TLB invalidation policy: strict mode
[    0.807881] SCSI subsystem initialized
[    0.808212] libata version 3.00 loaded.
[    0.808549] usbcore: registered new interface driver usbfs
[    0.808620] usbcore: registered new interface driver hub
[    0.808689] usbcore: registered new device driver usb
[    0.809449] pps_core: LinuxPPS API ver. 1 registered
[    0.809478] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    0.809526] PTP clock support registered
[    0.809598] EDAC MC: Ver: 3.0.0
[    0.810178] scmi_core: SCMI protocol bus registered
[    0.812054] NetLabel: Initializing
[    0.812091] NetLabel:  domain hash size = 128
[    0.812112] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.812226] NetLabel:  unlabeled traffic allowed by default
[    0.812552] vgaarb: loaded
[    0.813292] clocksource: Switched to clocksource arch_sys_counter
[    0.814081] VFS: Disk quotas dquot_6.6.0
[    0.814174] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.815040] AppArmor: AppArmor Filesystem Enabled
[    0.830528] NET: Registered PF_INET protocol family
[    0.831235] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.839093] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.839376] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.839596] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.840810] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.842850] TCP: Hash tables configured (established 65536 bind 65536)
[    0.843142] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.843375] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.843839] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.843911] NET: Registered PF_XDP protocol family
[    0.843951] PCI: CLS 0 bytes, default 64
[    0.844373] Trying to unpack rootfs image as initramfs...
[    0.854865] kvm [1]: nv: 554 coarse grained trap handlers
[    0.855558] kvm [1]: IPA Size Limit: 40 bits
[    0.855669] kvm [1]: GICv3: no GICV resource entry
[    0.855702] kvm [1]: disabling GICv2 emulation
[    0.855766] kvm [1]: GIC system register CPU interface enabled
[    0.855827] kvm [1]: vgic interrupt IRQ9
[    0.855908] kvm [1]: VHE mode initialized successfully
[    0.859175] Initialise system trusted keyrings
[    0.859303] Key type blacklist registered
[    0.859771] workingset: timestamp_bits=44 max_order=21 bucket_order=0
[    0.859875] zbud: loaded
[    0.860742] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.861665] fuse: init (API version 7.41)
[    0.864758] integrity: Platform Keyring initialized
[    0.937826] xor: measuring software checksum speed
[    0.939790]    8regs           :  1717 MB/sec
[    0.941972]    32regs          :  1528 MB/sec
[    0.943911]    arm64_neon      :  1727 MB/sec
[    0.943937] xor: using function: arm64_neon (1727 MB/sec)
[    0.943971] Key type asymmetric registered
[    0.943992] Asymmetric key parser 'x509' registered
[    0.944189] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.944626] io scheduler mq-deadline registered
[    0.944659] io scheduler kyber registered
[    0.944748] io scheduler bfq registered
[    1.831874] Freeing initrd memory: 13744K
[    1.835872] ledtrig-cpu: registered to indicate activity on CPUs
[    1.843948] dma-pl330 fe530000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.844008] dma-pl330 fe530000.dma-controller:       DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.847709] dma-pl330 fe550000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.847770] dma-pl330 fe550000.dma-controller:       DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.851378] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[    1.857843] fe650000.serial: ttyS1 at MMIO 0xfe650000 (irq = 25, base_baud = 1500000) is a 16550A
[    1.858397] serial serial0: tty port ttyS1 registered
[    1.860263] fe660000.serial: ttyS2 at MMIO 0xfe660000 (irq = 26, base_baud = 1500000) is a 16550A
[    1.860545] printk: legacy console [ttyS2] enabled
[    1.981011] Serial: AMBA driver
[    1.994502] loop: module loaded
[    1.996794] Key type psk registered
[    2.003010] thunder_xcv, ver 1.0
[    2.003395] thunder_bgx, ver 1.0
[    2.003740] nicpf, ver 1.0
[    2.008297] usbcore: registered new interface driver usb-storage
[    2.011545] mousedev: PS/2 mouse device common for all mice
[    2.012777] i2c_dev: i2c /dev entries driver
[    2.028371] rtc-hym8563 5-0051: registered as rtc0
[    2.029894] rtc-hym8563 5-0051: setting system clock to 2024-12-31T01:15:12 UTC (1735607712)
[    2.038467] sdhci: Secure Digital Host Controller Interface driver
[    2.039058] sdhci: Copyright(c) Pierre Ossman
[    2.039513] Synopsys Designware Multimedia Card Interface Driver
[    2.041175] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.044413] arm-scmi arm-scmi.1.auto: Using scmi_smc_transport
[    2.044969] arm-scmi arm-scmi.1.auto: SCMI max-rx-timeout: 30ms
[    2.045785] scmi_protocol scmi_dev.1: Enabled polling mode TX channel - prot_id:16
[    2.046881] arm-scmi arm-scmi.1.auto: SCMI Notifications - Core Enabled.
[    2.047564] arm-scmi arm-scmi.1.auto: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[    2.050455] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    2.051458] hid: raw HID events driver (C) Jiri Kosina
[    2.052056] usbcore: registered new interface driver usbhid
[    2.052574] usbhid: USB HID core driver
[    2.054737] rockchip-dfi fe230000.dfi: dfi initialized, dram type: 0x8, channels: 1
[    2.057633] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 (0,8000003f) counters available
[    2.060356] NET: Registered PF_INET6 protocol family
[    2.121139] Segment Routing with IPv6
[    2.121640] In-situ OAM (IOAM) with IPv6
[    2.122152] NET: Registered PF_PACKET protocol family
[    2.122913] 8021q: 802.1Q VLAN Support v1.8
[    2.123375] Key type dns_resolver registered
[    2.137234] registered taskstats version 1
[    2.137884] Loading compiled-in X.509 certificates
[    2.157705] zswap: loaded using pool zstd/z3fold
[    2.158574] Demotion targets for Node 0: null
[    2.159493] Key type .fscrypt registered
[    2.159867] Key type fscrypt-provisioning registered
[    2.163949] Btrfs loaded, zoned=yes, fsverity=yes
[    2.164662] Key type encrypted registered
[    2.165055] AppArmor: AppArmor sha256 policy hashing enabled
[    2.212251] fan53555-regulator 0-001c: FAN53555 Option[12] Rev[15] Detected!
[    2.322249] dwmmc_rockchip fe000000.mmc: IDMAC supports 32-bit address mode.
[    2.322649] dwmmc_rockchip fe2b0000.mmc: IDMAC supports 32-bit address mode.
[    2.323007] dwmmc_rockchip fe000000.mmc: Using internal DMA controller.
[    2.323613] dwmmc_rockchip fe2b0000.mmc: Using internal DMA controller.
[    2.324191] dwmmc_rockchip fe000000.mmc: Version ID is 270a
[    2.324772] dwmmc_rockchip fe2b0000.mmc: Version ID is 270a
[    2.324847] dwmmc_rockchip fe000000.mmc: DW MMC controller at irq 64,32 bit host data width,256 deep fifo
[    2.325403] dwmmc_rockchip fe2b0000.mmc: DW MMC controller at irq 65,32 bit host data width,256 deep fifo
[    2.327380] dwmmc_rockchip fe000000.mmc: allocated mmc-pwrseq
[    2.328102] mmc_host mmc2: card is non-removable.
[    2.329867] dwmmc_rockchip fe2b0000.mmc: Got CD GPIO
[    2.336779] rockchip-dw-pcie 3c0000000.pcie: host bridge /pcie@fe260000 ranges:
[    2.337611] rockchip-dw-pcie 3c0000000.pcie:       IO 0x00f4100000..0x00f41fffff -> 0x00f4100000
[    2.338472] rockchip-dw-pcie 3c0000000.pcie:      MEM 0x00f4200000..0x00f5ffffff -> 0x00f4200000
[    2.339293] rockchip-dw-pcie 3c0000000.pcie:      MEM 0x0300000000..0x033fffffff -> 0x0040000000
[    2.340382] rockchip-dw-pcie 3c0000000.pcie: iATU: unroll T, 8 ob, 8 ib, align 64K, limit 8G
[    2.345900] mmc_host mmc1: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[    2.361330] mmc0: SDHCI controller on fe310000.mmc [fe310000.mmc] using ADMA
[    2.449398] mmc_host mmc2: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[    2.462161] mmc0: new HS200 MMC card at address 0001
[    2.463753] mmcblk0: mmc0:0001 A3A561 57.6 GiB
[    2.469646]  mmcblk0: p1
[    2.470806] mmcblk0boot0: mmc0:0001 A3A561 4.00 MiB
[    2.473658] mmcblk0boot1: mmc0:0001 A3A561 4.00 MiB
[    2.476201] mmcblk0rpmb: mmc0:0001 A3A561 16.0 MiB, chardev (243:0)
[    2.537338] rockchip-dw-pcie 3c0000000.pcie: PCIe Gen.1 x1 link up
[    2.538631] rockchip-dw-pcie 3c0000000.pcie: PCI host bridge to bus 0000:00
[    2.539299] pci_bus 0000:00: root bus resource [bus 00-0f]
[    2.539812] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0xf4100000-0xf41fffff])
[    2.540677] pci_bus 0000:00: root bus resource [mem 0xf4200000-0xf5ffffff]
[    2.541392] pci_bus 0000:00: root bus resource [mem 0x300000000-0x33fffffff] (bus address [0x40000000-0x7fffffff])
[    2.542376] pci 0000:00:00.0: [1d87:3566] type 01 class 0x060400 PCIe Root Port
[    2.543076] pci 0000:00:00.0: ROM [mem 0x00000000-0x0000ffff pref]
[    2.543644] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[    2.544131] pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff]
[    2.544688] pci 0000:00:00.0:   bridge window [mem 0x00000000-0x000fffff]
[    2.545345] pci 0000:00:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    2.546135] pci 0000:00:00.0: supports D1 D2
[    2.546538] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[    2.556725] pci_bus 0000:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
[    2.557987] pci 0000:01:00.0: [8086:095a] type 00 class 0x028000 PCIe Endpoint
[    2.558794] pci 0000:01:00.0: BAR 0 [mem 0x00000000-0x00001fff 64bit]
[    2.560116] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    2.569560] pci 0000:00:00.0: bridge window [mem 0xf4200000-0xf42fffff]: assigned
[    2.570260] pci 0000:00:00.0: ROM [mem 0xf4300000-0xf430ffff pref]: assigned
[    2.570914] pci 0000:01:00.0: BAR 0 [mem 0xf4200000-0xf4201fff 64bit]: assigned
[    2.571641] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[    2.572130] pci 0000:00:00.0:   bridge window [mem 0xf4200000-0xf42fffff]
[    2.572756] pci_bus 0000:00: resource 4 [io  0x0000-0xfffff]
[    2.573311] pci_bus 0000:00: resource 5 [mem 0xf4200000-0xf5ffffff]
[    2.573891] pci_bus 0000:00: resource 6 [mem 0x300000000-0x33fffffff]
[    2.574480] pci_bus 0000:01: resource 1 [mem 0xf4200000-0xf42fffff]
[    2.577974] pcieport 0000:00:00.0: PME: Signaling with IRQ 70
[    2.579035] pcieport 0000:00:00.0: AER: enabled with IRQ 70
[    2.600301] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller
[    2.600860] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 1
[    2.601824] xhci-hcd xhci-hcd.8.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000808002000010
[    2.602753] xhci-hcd xhci-hcd.8.auto: irq 71, io mem 0xfcc00000
[    2.603522] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller
[    2.604046] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 2
[    2.604756] xhci-hcd xhci-hcd.8.auto: Host supports USB 3.0 SuperSpeed
[    2.605683] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[    2.606445] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.607106] usb usb1: Product: xHCI Host Controller
[    2.607555] usb usb1: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
[    2.608194] usb usb1: SerialNumber: xhci-hcd.8.auto
[    2.609490] hub 1-0:1.0: USB hub found
[    2.609905] hub 1-0:1.0: 1 port detected
[    2.610882] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.611849] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[    2.612609] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.613269] usb usb2: Product: xHCI Host Controller
[    2.613926] usb usb2: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
[    2.614568] usb usb2: SerialNumber: xhci-hcd.8.auto
[    2.615706] hub 2-0:1.0: USB hub found
[    2.616118] hub 2-0:1.0: 1 port detected
[    2.621114] xhci-hcd xhci-hcd.9.auto: xHCI Host Controller
[    2.621765] xhci-hcd xhci-hcd.9.auto: new USB bus registered, assigned bus number 3
[    2.622676] xhci-hcd xhci-hcd.9.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000808002000010
[    2.623597] xhci-hcd xhci-hcd.9.auto: irq 72, io mem 0xfd000000
[    2.624368] xhci-hcd xhci-hcd.9.auto: xHCI Host Controller
[    2.624891] xhci-hcd xhci-hcd.9.auto: new USB bus registered, assigned bus number 4
[    2.625636] xhci-hcd xhci-hcd.9.auto: Host supports USB 3.0 SuperSpeed
[    2.626551] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[    2.627314] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.627973] usb usb3: Product: xHCI Host Controller
[    2.628422] usb usb3: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
[    2.629061] usb usb3: SerialNumber: xhci-hcd.9.auto
[    2.630298] hub 3-0:1.0: USB hub found
[    2.630714] hub 3-0:1.0: 1 port detected
[    2.631702] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.632667] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[    2.633541] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.634209] usb usb4: Product: xHCI Host Controller
[    2.634660] usb usb4: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
[    2.635301] usb usb4: SerialNumber: xhci-hcd.9.auto
[    2.636454] hub 4-0:1.0: USB hub found
[    2.636867] hub 4-0:1.0: 1 port detected
[    2.640038] WCN: marlin_init entry!
[    2.641110] of_cfs_init
[    2.641364] ehci-platform fd800000.usb: EHCI Host Controller
[    2.641402] ohci-platform fd840000.usb: Generic Platform OHCI controller
[    2.641415] ehci-platform fd800000.usb: new USB bus registered, assigned bus number 5
[    2.641461] of_cfs_init: OK
[    2.641463] ohci-platform fd840000.usb: new USB bus registered, assigned bus number 6
[    2.641659] ohci-platform fd840000.usb: irq 75, io mem 0xfd840000
[    2.641834] ehci-platform fd880000.usb: EHCI Host Controller
[    2.641868] ohci-platform fd8c0000.usb: Generic Platform OHCI controller
[    2.641869] ehci-platform fd880000.usb: new USB bus registered, assigned bus number 7
[    2.641901] ohci-platform fd8c0000.usb: new USB bus registered, assigned bus number 8
[    2.642036] ehci-platform fd880000.usb: irq 74, io mem 0xfd880000
[    2.642057] ohci-platform fd8c0000.usb: irq 76, io mem 0xfd8c0000
[    2.642095] ehci-platform fd800000.usb: irq 73, io mem 0xfd800000
[    2.642827] clk: Disabling unused clocks
[    2.650615] PM: genpd: Disabling unused power domains
[    2.653358] ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
[    2.654320] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[    2.655084] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.655744] usb usb5: Product: EHCI Host Controller
[    2.656194] usb usb5: Manufacturer: Linux 6.12.7-current-rockchip64 ehci_hcd
[    2.656833] usb usb5: SerialNumber: fd800000.usb
[    2.658072] hub 5-0:1.0: USB hub found
[    2.658487] hub 5-0:1.0: 1 port detected
[    2.669317] ehci-platform fd880000.usb: USB 2.0 started, EHCI 1.00
[    2.670229] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[    2.670993] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.671653] usb usb7: Product: EHCI Host Controller
[    2.672103] usb usb7: Manufacturer: Linux 6.12.7-current-rockchip64 ehci_hcd
[    2.672743] usb usb7: SerialNumber: fd880000.usb
[    2.673946] hub 7-0:1.0: USB hub found
[    2.674361] hub 7-0:1.0: 1 port detected
[    2.701643] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.12
[    2.702413] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.703073] usb usb6: Product: Generic Platform OHCI controller
[    2.703615] usb usb6: Manufacturer: Linux 6.12.7-current-rockchip64 ohci_hcd
[    2.704255] usb usb6: SerialNumber: fd840000.usb
[    2.705542] hub 6-0:1.0: USB hub found
[    2.705959] hub 6-0:1.0: 1 port detected
[    2.707154] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.12
[    2.707920] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.708582] usb usb8: Product: Generic Platform OHCI controller
[    2.709123] usb usb8: Manufacturer: Linux 6.12.7-current-rockchip64 ohci_hcd
[    2.709808] usb usb8: SerialNumber: fd8c0000.usb
[    2.710985] hub 8-0:1.0: USB hub found
[    2.711397] hub 8-0:1.0: 1 port detected
[    2.714829] Freeing unused kernel memory: 4928K
[    2.715466] Run /init as init process
[    2.715816]   with arguments:
[    2.715826]     /init
[    2.715836]   with environment:
[    2.715845]     HOME=/
[    2.715853]     TERM=linux
[    2.881367] usb 3-1: new low-speed USB device number 2 using xhci-hcd
[    2.905369] usb 5-1: new high-speed USB device number 2 using ehci-platform
[    3.021522] usb 3-1: New USB device found, idVendor=093a, idProduct=2510, bcdDevice= 1.00
[    3.022308] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.022970] usb 3-1: Product: USB Optical Mouse
[    3.023397] usb 3-1: Manufacturer: PixArt
[    3.046045] input: PixArt USB Optical Mouse as /devices/platform/fd000000.usb/xhci-hcd.9.auto/usb3/3-1/3-1:1.0/0003:093A:2510.0001/input/input0
[    3.048660] hid-generic 0003:093A:2510.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-xhci-hcd.9.auto-1/input0
[    3.050804] usb 5-1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
[    3.051585] usb 5-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.052569] usb 5-1: Product: USB 2.0 Hub
[    3.055128] hub 5-1:1.0: USB hub found
[    3.055700] hub 5-1:1.0: 4 ports detected
[    3.453372] usb 5-1.1: new low-speed USB device number 3 using ehci-platform
[    3.669514] rk808-rtc rk808-rtc.5.auto: registered as rtc1
[    3.670734] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[    3.671345] rk_gmac-dwmac fe010000.ethernet: IRQ sfty not found
[    3.672978] usb 5-1.1: New USB device found, idVendor=045e, idProduct=0752, bcdDevice= 1.10
[    3.672997] rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
[    3.673016] rk_gmac-dwmac fe010000.ethernet: Can not read property: tx_delay.
[    3.673039] usb 5-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.673061] rk_gmac-dwmac fe010000.ethernet: set tx_delay to 0x30
[    3.673078] usb 5-1.1: Product: Wired Keyboard 400
[    3.673101] rk_gmac-dwmac fe010000.ethernet: Can not read property: rx_delay.
[    3.673114] usb 5-1.1: Manufacturer: Microsoft
[    3.673128] rk_gmac-dwmac fe010000.ethernet: set rx_delay to 0x10
[    3.679950] input: Microsoft Wired Keyboard 400 as /devices/platform/fd800000.usb/usb5/5-1/5-1.1/5-1.1:1.0/0003:045E:0752.0002/input/input1
[    3.681663] rockchip-vop2 fe040000.vop: Adding to iommu group 0
[    3.686391] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[    3.687105] rk_gmac-dwmac fe010000.ethernet: clock input from PHY
[    3.692553] rockchip-drm display-subsystem: bound fe040000.vop (ops vop2_component_ops [rockchipdrm])
[    3.694721] rk_gmac-dwmac fe010000.ethernet: init for RGMII_ID
[    3.696697] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    3.697452] rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
[    3.698739] dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
[    3.698873] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[    3.700365] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[    3.701073] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[    3.701757] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[    3.702503] rk_gmac-dwmac fe010000.ethernet: TSO supported
[    3.703026] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    3.704161] rk_gmac-dwmac fe010000.ethernet: Enabled RFS Flow TC (entries=10)
[    3.704846] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[    3.705543] rk_gmac-dwmac fe010000.ethernet: Using 32/32 bits DMA host/device width
[    3.802530] dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
[    3.811875] rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops dw_hdmi_rockchip_ops [rockchipdrm])
[    3.827850] phy phy-fe8c0000.phy.7: lane number 0, val 1
[    3.829040] rockchip-dw-pcie 3c0800000.pcie: host bridge /pcie@fe280000 ranges:
[    3.830478] rockchip-dw-pcie 3c0800000.pcie:       IO 0x00f0100000..0x00f01fffff -> 0x00f0100000
[    3.831332] rockchip-dw-pcie 3c0800000.pcie:      MEM 0x00f0200000..0x00f1ffffff -> 0x00f0200000
[    3.832145] rockchip-dw-pcie 3c0800000.pcie:      MEM 0x0380000000..0x03bfffffff -> 0x0040000000
[    3.834425] [drm] Initialized rockchip 1.0.0 for display-subsystem on minor 0
[    3.840568] rockchip-dw-pcie 3c0800000.pcie: iATU: unroll T, 8 ob, 8 ib, align 64K, limit 8G
[    3.953749] hid-generic 0003:045E:0752.0002: input,hidraw1: USB HID v1.11 Keyboard [Microsoft Wired Keyboard 400] on usb-fd800000.usb-1.1/input0
[    4.041454] rockchip-dw-pcie 3c0800000.pcie: PCIe Gen.3 x2 link up
[    4.042606] Console: switching to colour frame buffer device 240x67
[    4.053572] rockchip-dw-pcie 3c0800000.pcie: PCI host bridge to bus 0002:00
[    4.053615] pci_bus 0002:00: root bus resource [bus 00-0f]
[    4.053633] pci_bus 0002:00: root bus resource [io  0x100000-0x1fffff] (bus address [0xf0100000-0xf01fffff])
[    4.053644] pci_bus 0002:00: root bus resource [mem 0xf0200000-0xf1ffffff]
[    4.053656] pci_bus 0002:00: root bus resource [mem 0x380000000-0x3bfffffff] (bus address [0x40000000-0x7fffffff])
[    4.053711] pci 0002:00:00.0: [1d87:3566] type 01 class 0x060400 PCIe Root Port
[    4.053739] pci 0002:00:00.0: BAR 0 [mem 0x00000000-0x3fffffff]
[    4.053754] pci 0002:00:00.0: BAR 1 [mem 0x00000000-0x3fffffff]
[    4.053767] pci 0002:00:00.0: ROM [mem 0x00000000-0x0000ffff pref]
[    4.053778] pci 0002:00:00.0: PCI bridge to [bus 01-ff]
[    4.053792] pci 0002:00:00.0:   bridge window [io  0x0000-0x0fff]
[    4.053802] pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff]
[    4.053816] pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    4.053902] pci 0002:00:00.0: supports D1 D2
[    4.053912] pci 0002:00:00.0: PME# supported from D0 D1 D3hot
[    4.082015] pci_bus 0002:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
[    4.082158] pci 0002:01:00.0: [10ec:5765] type 00 class 0x010802 PCIe Endpoint
[    4.082263] pci 0002:01:00.0: BAR 0 [mem 0x00000000-0x00003fff 64bit]
[    4.082386] pci 0002:01:00.0: BAR 5 [mem 0x00000000-0x00001fff]
[    4.083109] pci 0002:01:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0002:00:00.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    4.089576] pci 0002:00:00.0: BAR 0 [mem 0x380000000-0x3bfffffff]: assigned
[    4.089612] pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: can't assign; no space
[    4.089624] pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: failed to assign
[    4.089640] pci 0002:00:00.0: bridge window [mem 0xf0200000-0xf02fffff]: assigned
[    4.089653] pci 0002:00:00.0: ROM [mem 0xf0300000-0xf030ffff pref]: assigned
[    4.089671] pci 0002:01:00.0: BAR 0 [mem 0xf0200000-0xf0203fff 64bit]: assigned
[    4.089724] pci 0002:01:00.0: BAR 5 [mem 0xf0204000-0xf0205fff]: assigned
[    4.089748] pci 0002:00:00.0: PCI bridge to [bus 01-ff]
[    4.089762] pci 0002:00:00.0:   bridge window [mem 0xf0200000-0xf02fffff]
[    4.089778] pci_bus 0002:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    4.089787] pci_bus 0002:00: resource 4 [io  0x100000-0x1fffff]
[    4.089797] pci_bus 0002:00: resource 5 [mem 0xf0200000-0xf1ffffff]
[    4.089806] pci_bus 0002:00: resource 6 [mem 0x380000000-0x3bfffffff]
[    4.089817] pci_bus 0002:01: resource 1 [mem 0xf0200000-0xf02fffff]
[    4.093546] pcieport 0002:00:00.0: PME: Signaling with IRQ 82
[    4.094245] pcieport 0002:00:00.0: AER: enabled with IRQ 82
[    4.095219] nvme nvme0: pci function 0002:01:00.0
[    4.095262] nvme 0002:01:00.0: enabling device (0000 -> 0002)
[    4.126731] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
[    4.242935] hwmon hwmon2: temp1_input not attached to any thermal zone
[    4.286193] nvme nvme0: allocated 64 MiB host memory buffer.
[    4.330408] nvme nvme0: 4/0/0 default/read/poll queues
[    4.353107] nvme nvme0: Ignoring bogus Namespace Identifiers
[    4.786681] EXT4-fs (mmcblk0p1): mounted filesystem 463087c8-1d8f-4075-b7b1-4b86c641e99e ro with ordered data mode. Quota mode: none.
[    5.233861] systemd[1]: Inserted module 'autofs4'
[    5.289796] systemd[1]: systemd 252.31-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)
[    5.303292] systemd[1]: Detected architecture arm64.
[    5.328897] systemd[1]: Hostname set to <DietPi>.
[    5.545043] dw-apb-uart fe660000.serial: forbid DMA for kernel console
[    6.029949] systemd[1]: Queued start job for default target graphical.target.
[    6.068311] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[    6.083513] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[    6.098206] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[    6.112564] systemd[1]: Created slice user.slice - User and Session Slice.
[    6.125035] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[    6.138021] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    6.151875] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    6.165486] systemd[1]: Expecting device dev-ttyS2.device - /dev/ttyS2...
[    6.178563] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[    6.191726] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[    6.205180] systemd[1]: Reached target paths.target - Path Units.
[    6.218156] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[    6.231275] systemd[1]: Reached target slices.target - Slice Units.
[    6.244408] systemd[1]: Reached target swap.target - Swaps.
[    6.257579] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[    6.272081] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[    6.286470] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[    6.302275] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[    6.317837] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    6.333680] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[    6.354701] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    6.370314] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    6.409823] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    6.432337] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    6.454800] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    6.477176] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[    6.505383] systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...
[    6.531294] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[    6.555099] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    6.580046] systemd[1]: Starting [email protected] - Load Kernel Module configfs...
[    6.604805] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[    6.628844] systemd[1]: Starting [email protected] - Load Kernel Module drm...
[    6.638028] device-mapper: uevent: version 1.0.3
[    6.641808] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: [email protected]
[    6.694251] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[    6.718081] systemd[1]: Starting [email protected] - Load Kernel Module fuse...
[    6.741224] systemd[1]: Starting [email protected] - Load Kernel Module loop...
[    6.757342] 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).
[    6.778015] systemd[1]: Starting systemd-journald.service - Journal Service...
[    6.838255] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    6.863050] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    6.887852] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    6.924509] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    6.941880] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    6.959653] EXT4-fs (mmcblk0p1): re-mounted 463087c8-1d8f-4075-b7b1-4b86c641e99e r/w. Quota mode: none.
[    6.960972] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    6.990626] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[    7.008099] systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.
[    7.026797] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[    7.044535] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    7.062551] systemd[1]: [email protected]: Deactivated successfully.
[    7.071567] systemd[1]: Finished [email protected] - Load Kernel Module configfs.
[    7.089962] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[    7.099423] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[    7.117058] systemd[1]: [email protected]: Deactivated successfully.
[    7.126289] systemd[1]: Finished [email protected] - Load Kernel Module drm.
[    7.143949] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[    7.153104] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[    7.171687] systemd[1]: [email protected]: Deactivated successfully.
[    7.180875] systemd[1]: Finished [email protected] - Load Kernel Module fuse.
[    7.198470] systemd[1]: [email protected]: Deactivated successfully.
[    7.207245] systemd[1]: Finished [email protected] - Load Kernel Module loop.
[    7.224311] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[    7.241930] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[    7.301844] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[    7.324363] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[    7.340490] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[    7.349394] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[    7.390261] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[    7.406756] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[    7.422558] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[    7.448566] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[    7.477758] systemd[1]: Started systemd-journald.service - Journal Service.
[    7.906053] systemd-journald[238]: Received client request to flush runtime journal.
[    9.445710] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    9.494682] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    9.495249] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    9.538831] mc: Linux media interface: v0.10
[    9.547134] input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-pwrkey.4.auto/input/input2
[    9.549529] Intel(R) Wireless WiFi driver for Linux
[    9.550187] iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
[    9.568828] iwlwifi 0000:01:00.0: Detected crf-id 0x0, cnv-id 0x0 wfpm id 0x0
[    9.568854] iwlwifi 0000:01:00.0: PCI dev 095a/5410, rev=0x210, rfid=0xd55555d5
[    9.568867] iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 7265
[    9.675379] iwlwifi 0000:01:00.0: Found debug destination: EXTERNAL_DRAM
[    9.675407] iwlwifi 0000:01:00.0: Found debug configuration: 0
[    9.676388] iwlwifi 0000:01:00.0: loaded firmware version 29.f2390aa8.0 7265D-29.ucode op_mode iwlmvm
[    9.693976] panfrost fde60000.gpu: clock rate = 594000000
[    9.694019] panfrost fde60000.gpu: bus_clock rate = 500000000
[    9.720548] panfrost fde60000.gpu: mali-g52 id 0x7402 major 0x1 minor 0x0 status 0x0
[    9.720571] panfrost fde60000.gpu: features: 00000000,00000cf7, issues: 00000000,00000400
[    9.720578] panfrost fde60000.gpu: Features: L2:0x07110206 Shader:0x00000002 Tiler:0x00000209 Mem:0x1 MMU:0x00002823 AS:0xff JS:0x7
[    9.720586] panfrost fde60000.gpu: shader_present=0x1 l2_present=0x1
[    9.774184] random: crng init done
[    9.780206] videodev: Linux video capture interface: v2.00
[    9.802258] [drm] Initialized panfrost 1.2.0 for fde60000.gpu on minor 1
[    9.830561] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[    9.832789] iwlwifi 0000:01:00.0: Allocated 0x00400000 bytes for firmware monitor.
[    9.838003] iwlwifi 0000:01:00.0: base HW address: c8:21:58:b7:a7:b9, OTP minor version: 0x0
[    9.867414] rk2-crypto fe380000.crypto: will run requests pump with realtime priority
[    9.867505] rk2-crypto fe380000.crypto: Registers crypto algos
[    9.867514] rk2-crypto fe380000.crypto: Register ecb(aes) as ecb-aes-rk2
[    9.867574] rk2-crypto fe380000.crypto: Register cbc(aes) as cbc-aes-rk2
[    9.867594] rk2-crypto fe380000.crypto: Register xts(aes) as xts-aes-rk2
[    9.867609] rk2-crypto fe380000.crypto: Register md5 as rk2-md5 3
[    9.867625] rk2-crypto fe380000.crypto: Register sha1 as rk2-sha1 4
[    9.867641] rk2-crypto fe380000.crypto: Register sha256 as rk2-sha256 5
[    9.867656] rk2-crypto fe380000.crypto: Register sha384 as rk2-sha384 6
[    9.867671] rk2-crypto fe380000.crypto: Register sha512 as rk2-sha512 7
[    9.867685] rk2-crypto fe380000.crypto: Register sm3 as rk2-sm3 8
[    9.873093] rockchip-rga fdeb0000.rga: HW Version: 0x03.02
[    9.874354] rockchip-rga fdeb0000.rga: Registered rockchip-rga as /dev/video0
[    9.889853] rockchip_vdec2: module is from the staging directory, the quality is unknown, you have been warned.
[    9.904068] Bluetooth: Core ver 2.22
[    9.929355] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    9.931250] NET: Registered PF_BLUETOOTH protocol family
[    9.931270] Bluetooth: HCI device and connection manager initialized
[    9.931289] Bluetooth: HCI socket layer initialized
[    9.931297] Bluetooth: L2CAP socket layer initialized
[    9.931325] Bluetooth: SCO socket layer initialized
[    9.947047] hantro-vpu fdea0000.video-codec: Adding to iommu group 1
[    9.986139] hantro-vpu fdea0000.video-codec: registered rockchip,rk3328-vpu-dec as /dev/video2
[    9.988976] Bluetooth: HCI UART driver ver 2.3
[    9.989000] Bluetooth: HCI UART protocol H4 registered
[    9.989005] Bluetooth: HCI UART protocol BCSP registered
[    9.989085] Bluetooth: HCI UART protocol LL registered
[    9.989092] Bluetooth: HCI UART protocol ATH3K registered
[    9.990970] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    9.991270] Bluetooth: HCI UART protocol Intel registered
[    9.992509] Bluetooth: HCI UART protocol Broadcom registered
[    9.992572] Bluetooth: HCI UART protocol QCA registered
[    9.992579] Bluetooth: HCI UART protocol AG6XX registered
[    9.992614] Bluetooth: HCI UART protocol Marvell registered
[   10.009940] hantro-vpu fdee0000.video-codec: Adding to iommu group 2
[   10.011966] hantro-vpu fdee0000.video-codec: registered rockchip,rk3568-vepu-enc as /dev/video3
[   10.137558] of_dma_request_slave_channel: dma-names property of node '/serial@fe650000' missing or empty
[   10.137590] dw-apb-uart fe650000.serial: failed to request DMA
[   10.503229] warning: `iwconfig' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[   10.613001] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[   10.692501] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[   10.694648] iwlwifi 0000:01:00.0: FW already configured (0) - re-configuring
[   10.699262] iwlwifi 0000:01:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0
[   11.969457] mmc_host mmc2: Bus speed (slot 0) = 375000Hz (slot req 375000Hz, actual 375000HZ div = 0)
[   12.265402] Bluetooth: hci0: command 0x0c03 tx timeout
[   12.273731] Bluetooth: hci0: BCM: Reset failed (-110)
[   14.420584] wlan0: authenticate with 3a:07:16:e3:53:80 (local address=c8:21:58:b7:a7:b9)
[   14.421613] wlan0: send auth to 3a:07:16:e3:53:80 (try 1/3)
[   14.454150] wlan0: authenticated
[   14.457441] wlan0: associate with 3a:07:16:e3:53:80 (try 1/3)
[   14.462986] wlan0: RX AssocResp from 3a:07:16:e3:53:80 (capab=0x1111 status=0 aid=3)
[   14.466868] wlan0: associated
[   14.468851] wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by 3a:07:16:e3:53:80

lsmod :

root@DietPi:~# lsmod
Module                  Size  Used by
snd_soc_hdmi_codec     20480  1
hci_uart              135168  0
btqca                  20480  1 hci_uart
btrtl                  28672  1 hci_uart
btintel                49152  1 hci_uart
crct10dif_ce           12288  1
btbcm                  20480  1 hci_uart
hantro_vpu            249856  0
bluetooth             663552  6 btrtl,btqca,btintel,hci_uart,btbcm
rockchip_vdec2         28672  0
display_connector      16384  0
snd_soc_simple_card    20480  0
rockchip_rga           20480  0
snd_soc_rk817          40960  1
snd_soc_simple_card_utils    24576  1 snd_soc_simple_card
v4l2_vp9               20480  1 hantro_vpu
v4l2_jpeg              12288  1 hantro_vpu
snd_soc_rockchip_i2s_tdm    20480  4
v4l2_h264              16384  2 hantro_vpu,rockchip_vdec2
videobuf2_dma_contig    20480  2 hantro_vpu,rockchip_vdec2
snd_soc_core          204800  5 snd_soc_rockchip_i2s_tdm,snd_soc_hdmi_codec,snd_soc_rk817,snd_soc_simple_card_utils,snd_soc_simple_card
videobuf2_dma_sg       16384  1 rockchip_rga
v4l2_mem2mem           24576  3 hantro_vpu,rockchip_rga,rockchip_vdec2
videobuf2_memops       16384  2 videobuf2_dma_contig,videobuf2_dma_sg
snd_compress           24576  1 snd_soc_core
snd_pcm_dmaengine      12288  1 snd_soc_core
videobuf2_v4l2         20480  4 hantro_vpu,rockchip_rga,rockchip_vdec2,v4l2_mem2mem
rk_crypto2             36864  0
snd_pcm               106496  5 snd_soc_hdmi_codec,snd_compress,snd_soc_simple_card_utils,snd_soc_core,snd_pcm_dmaengine
iwlmvm                401408  0
mac80211              880640  1 iwlmvm
rockchip_rng           12288  0
sm3_generic            12288  1 rk_crypto2
snd_timer              36864  1 snd_pcm
dw_hdmi_cec            12288  0
rng_core               16384  1 rockchip_rng
libarc4                12288  1 mac80211
sm3                    20480  1 sm3_generic
videodev              237568  5 videobuf2_v4l2,hantro_vpu,rockchip_rga,rockchip_vdec2,v4l2_mem2mem
panfrost               73728  0
snd                    77824  5 snd_soc_hdmi_codec,snd_timer,snd_compress,snd_soc_core,snd_pcm
dw_hdmi_i2s_audio      12288  0
rk817_charger          20480  0
videobuf2_common       53248  8 videobuf2_dma_contig,videobuf2_v4l2,hantro_vpu,rockchip_rga,videobuf2_dma_sg,rockchip_vdec2,v4l2_mem2mem,videobuf2_memops
soundcore              12288  1 snd
iwlwifi               290816  1 iwlmvm
gpu_sched              36864  1 panfrost
mc                     53248  6 videodev,videobuf2_v4l2,hantro_vpu,videobuf2_common,rockchip_vdec2,v4l2_mem2mem
rk805_pwrkey           12288  0
drm_shmem_helper       20480  1 panfrost
cfg80211              815104  3 iwlmvm,iwlwifi,mac80211
rfkill                 24576  6 iwlmvm,bluetooth,cfg80211
cpufreq_dt             16384  0
binfmt_misc            20480  1
dm_mod                126976  0
ip_tables              28672  0
x_tables               36864  1 ip_tables
autofs4                45056  2
phy_rockchip_snps_pcie3    16384  1
spi_rockchip_sfc       16384  0
realtek                36864  0
rockchipdrm           176128  0
dwmac_rk               28672  0
stmmac_platform        20480  1 dwmac_rk
drm_dma_helper         16384  2 rockchipdrm
dw_hdmi_qp             20480  1 rockchipdrm
dw_hdmi                45056  2 dw_hdmi_i2s_audio,rockchipdrm
stmmac                241664  2 stmmac_platform,dwmac_rk
cec                    45056  2 dw_hdmi_cec,dw_hdmi
dw_mipi_dsi            16384  1 rockchipdrm
pcs_xpcs               24576  1 stmmac
rtc_rk808              16384  0
analogix_dp            40960  1 rockchipdrm
drm_display_helper    131072  4 rockchipdrm,dw_hdmi,analogix_dp,dw_hdmi_qp
drm_kms_helper        122880  9 dw_mipi_dsi,drm_dma_helper,display_connector,drm_shmem_helper,drm_display_helper,rockchipdrm,dw_hdmi,analogix_dp,dw_hdmi_qp
drm                   442368  13 gpu_sched,drm_kms_helper,dw_mipi_dsi,drm_dma_helper,display_connector,drm_shmem_helper,drm_display_helper,rockchipdrm,dw_hdmi,panfrost,analogix_dp,dw_hdmi_qp
drm_panel_orientation_quirks    28672  1 drm

from the vendor image :

rock@rock-3b:~$ sudo dmesg
[   11.535537] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[   11.535574] Linux version 5.10.160-18-rk356x (runner@86af808c3373) (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #425b07550 SMP Thu Oct 12 08:48:55 UTC 2023
[   11.546806] Machine model: Radxa ROCK 3 Model B
[   11.546915] Malformed early option 'earlycon'
[   11.547188] efi: UEFI not found.
[   11.547477] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-logo@00000000': base 0x0000000000000000, size 0 MiB
[   11.547505] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-cubic-lut@00000000': base 0x0000000000000000, size 0 MiB
[   11.762442] Zone ranges:
[   11.762458]   DMA      [mem 0x0000000000200000-0x00000000ffffffff]
[   11.762475]   DMA32    empty
[   11.762485]   Normal   [mem 0x0000000100000000-0x00000001ffffffff]
[   11.762498] Movable zone start for each node
[   11.762503] Early memory node ranges
[   11.762511]   node   0: [mem 0x0000000000200000-0x00000000efffffff]
[   11.762526]   node   0: [mem 0x0000000100000000-0x00000001ffffffff]
[   11.762538] Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
[   11.762547] On node 0 totalpages: 2031104
[   11.762557]   DMA zone: 15352 pages used for memmap
[   11.762563]   DMA zone: 0 pages reserved
[   11.762570]   DMA zone: 982528 pages, LIFO batch:63
[   11.762578]   Normal zone: 16384 pages used for memmap
[   11.762585]   Normal zone: 1048576 pages, LIFO batch:63
[   11.829664] cma: Reserved 16 MiB at 0x00000000ef000000
[   11.829806] psci: probing for conduit method from DT.
[   11.829825] psci: PSCIv1.1 detected in firmware.
[   11.829831] psci: Using standard PSCI v0.2 function IDs
[   11.829840] psci: MIGRATE_INFO_TYPE not supported.
[   11.829850] psci: SMC Calling Convention v1.2
[   11.830394] percpu: Embedded 32 pages/cpu s93544 r8192 d29336 u131072
[   11.830457] pcpu-alloc: s93544 r8192 d29336 u131072 alloc=32*4096
[   11.830470] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[   11.830653] Detected VIPT I-cache on CPU0
[   11.830729] CPU features: detected: GIC system register CPU interface
[   11.830738] CPU features: detected: Virtualization Host Extensions
[   11.830754] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[   11.830774] alternatives: patching kernel code
[   11.831302] Built 1 zonelists, mobility grouping on.  Total pages: 1999368
[   11.831319] Kernel command line: root=UUID=d7611020-2d80-4f32-b67d-5fb55de6949d quiet splash loglevel=4 rw earlycon consoleblank=0 console=tty0 console=ttyFIQ0,1500000n8 console=ttyAML0,115200n8 console=ttyS2,1500000n8 console=ttyS0,1500000n8 coherent_pool=2M irqchip.gicv3_pseudo_nmi=0 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory swapaccount=1
[   11.834822] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[   11.836144] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[   11.836155] mem auto-init: stack:off, heap alloc:off, heap free:off
[   11.857319] software IO TLB: mapped [mem 0x00000000e80b7000-0x00000000ec0b7000] (64MB)
[   11.995366] Memory: 7843044K/8124416K available (13632K kernel code, 3132K rwdata, 4932K rodata, 5760K init, 606K bss, 264988K reserved, 16384K cma-reserved)
[   11.995593] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[   11.995651] ftrace: allocating 53289 entries in 209 pages
[   12.133253] ftrace: allocated 209 pages with 4 groups
[   12.133733] rcu: Hierarchical RCU implementation.
[   12.133744] rcu:     RCU event tracing is enabled.
[   12.133752] rcu:     RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[   12.133759]  Rude variant of Tasks RCU enabled.
[   12.133764]  Tracing variant of Tasks RCU enabled.
[   12.133772] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[   12.133778] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[   12.141307] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[   12.144349] GICv3: GIC: Using split EOI/Deactivate mode
[   12.144365] GICv3: 320 SPIs implemented
[   12.144372] GICv3: 0 Extended SPIs implemented
[   12.144431] GICv3: Distributor has no Range Selector support
[   12.144447] GICv3: 16 PPIs implemented
[   12.144496] GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000
[   12.144722] ITS [mem 0xfd440000-0xfd45ffff]
[   12.144830] ITS@0x00000000fd440000: allocated 8192 Devices @410000 (indirect, esz 8, psz 64K, shr 0)
[   12.144885] ITS@0x00000000fd440000: allocated 32768 Interrupt Collections @420000 (flat, esz 2, psz 64K, shr 0)
[   12.144898] ITS: using cache flushing for cmd queue
[   12.145479] GICv3: using LPI property table @0x0000000000430000
[   12.145652] GIC: using cache flushing for LPI property table
[   12.145665] GICv3: CPU0: using allocated LPI pending table @0x0000000000440000
[   12.194537] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[   12.194557] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[   12.194573] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[   12.196494] Console: colour dummy device 80x25
[   12.196556] printk: console [tty0] enabled
[   12.196607] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[   12.196626] pid_max: default: 32768 minimum: 301
[   12.196816] LSM: Security Framework initializing
[   12.196951] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[   12.197002] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[   12.200371] rcu: Hierarchical SRCU implementation.
[   12.201589] Platform MSI: interrupt-controller@fd440000 domain created
[   12.202303] PCI/MSI: /interrupt-controller@fd400000/interrupt-controller@fd440000 domain created
[   12.202797] EFI services will not be available.
[   12.203462] smp: Bringing up secondary CPUs ...
[   12.204721] Detected VIPT I-cache on CPU1
[   12.204780] GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000
[   12.204810] GICv3: CPU1: using allocated LPI pending table @0x0000000000450000
[   12.204887] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[   12.206255] Detected VIPT I-cache on CPU2
[   12.206306] GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000
[   12.206332] GICv3: CPU2: using allocated LPI pending table @0x0000000000460000
[   12.206392] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[   12.207791] Detected VIPT I-cache on CPU3
[   12.207841] GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000
[   12.207866] GICv3: CPU3: using allocated LPI pending table @0x0000000000470000
[   12.207924] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[   12.208125] smp: Brought up 1 node, 4 CPUs
[   12.208147] SMP: Total of 4 processors activated.
[   12.208156] CPU features: detected: Privileged Access Never
[   12.208163] CPU features: detected: User Access Override
[   12.208171] CPU features: detected: 32-bit EL0 Support
[   12.208178] CPU features: detected: Common not Private translations
[   12.208185] CPU features: detected: RAS Extension Support
[   12.208191] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[   12.208198] CPU features: detected: CRC32 instructions
[   12.208205] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[   12.208213] CPU features: detected: 32-bit EL1 Support
[   12.208220] CPU features: detected: RCpc load-acquire (LDAPR)
[   12.208336] CPU: All CPU(s) started at EL2
[   12.212864] devtmpfs: initialized
[   12.254697] Registered cp15_barrier emulation handler
[   12.254725] Registered setend emulation handler
[   12.255045] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[   12.255072] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[   12.256177] pinctrl core: initialized pinctrl subsystem
[   12.256688] regulator-dummy: no parameters, enabled
[   12.257212] DMI not present or invalid.
[   12.258341] NET: Registered protocol family 16
[   12.261671] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[   12.262380] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[   12.262531] audit: initializing netlink subsys (disabled)
[   12.262879] audit: type=2000 audit(0.066:1): state=initialized audit_enabled=0 res=1
[   12.267306] Registered FIQ tty driver
[   12.268063] thermal_sys: Registered thermal governor 'fair_share'
[   12.268074] thermal_sys: Registered thermal governor 'step_wise'
[   12.268081] thermal_sys: Registered thermal governor 'user_space'
[   12.268089] thermal_sys: Registered thermal governor 'power_allocator'
[   12.268833] thermal thermal_zone1: power_allocator: sustainable_power will be estimated
[   12.268947] cpuidle: using governor menu
[   12.269792] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[   12.270035] ASID allocator initialised with 65536 entries
[   12.273701] ramoops: dmesg-0 0x20000@0x0000000000110000
[   12.273744] ramoops: console 0x80000@0x0000000000130000
[   12.273774] ramoops: pmsg    0x50000@0x00000000001b0000
[   12.273927] printk: console [ramoops-1] enabled
[   12.273938] pstore: Registered ramoops as persistent store backend
[   12.273947] ramoops: using 0xf0000@0x110000, ecc: 0
[   12.358722] rockchip-gpio fdd60000.gpio0: probed /pinctrl/gpio0@fdd60000
[   12.359808] rockchip-gpio fe740000.gpio1: probed /pinctrl/gpio1@fe740000
[   12.360882] rockchip-gpio fe750000.gpio2: probed /pinctrl/gpio2@fe750000
[   12.362142] rockchip-gpio fe760000.gpio3: probed /pinctrl/gpio3@fe760000
[   12.363240] rockchip-gpio fe770000.gpio4: probed /pinctrl/gpio4@fe770000
[   12.363522] rockchip-pinctrl pinctrl: probed pinctrl
[   12.399471] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[   12.399489] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[   12.399499] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[   12.399509] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[   12.408281] fiq_debugger fiq_debugger.0: IRQ fiq not found
[   12.408333] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[   12.408366] fiq_debugger_probe: could not install nmi irq handler
[   12.408670] printk: console [ttyFIQ0] enabled
[   12.408997] Registered fiq debugger ttyFIQ0
[   12.409910] dc_12v: 12000 mV, enabled
[   12.410249] reg-fixed-voltage dc-12v: dc_12v supplying 12000000uV
[   12.410471] reg-fixed-voltage vcc3v3-sys: Looking up vin-supply from device tree
[   12.410490] vcc3v3_sys: supplied by dc_12v
[   12.410508] dc_12v: could not add device link regulator.2: -ENOENT
[   12.410583] vcc3v3_sys: 3300 mV, enabled
[   12.410894] reg-fixed-voltage vcc3v3-sys: vcc3v3_sys supplying 3300000uV
[   12.411106] reg-fixed-voltage vcc5v0-sys: Looking up vin-supply from device tree
[   12.411125] vcc5v0_sys: supplied by dc_12v
[   12.411142] dc_12v: could not add device link regulator.3: -ENOENT
[   12.411213] vcc5v0_sys: 5000 mV, enabled
[   12.411509] reg-fixed-voltage vcc5v0-sys: vcc5v0_sys supplying 5000000uV
[   12.411997] vcc5v0_host: no parameters, enabled
[   12.412315] reg-fixed-voltage vcc5v0-host-regulator: vcc5v0_host supplying 0uV
[   12.412712] vcc5v0_otg: no parameters, enabled
[   12.413058] reg-fixed-voltage vcc5v0-otg-regulator: vcc5v0_otg supplying 0uV
[   12.413276] reg-fixed-voltage pcie30-avdd0v9: Looking up vin-supply from device tree
[   12.413297] pcie30_avdd0v9: supplied by vcc3v3_sys
[   12.413315] vcc3v3_sys: could not add device link regulator.6: -ENOENT
[   12.413414] pcie30_avdd0v9: 900 mV, enabled
[   12.413700] reg-fixed-voltage pcie30-avdd0v9: pcie30_avdd0v9 supplying 900000uV
[   12.413912] reg-fixed-voltage pcie30-avdd1v8: Looking up vin-supply from device tree
[   12.413932] pcie30_avdd1v8: supplied by vcc3v3_sys
[   12.413949] vcc3v3_sys: could not add device link regulator.7: -ENOENT
[   12.414022] pcie30_avdd1v8: 1800 mV, enabled
[   12.414350] reg-fixed-voltage pcie30-avdd1v8: pcie30_avdd1v8 supplying 1800000uV
[   12.415131] pcie30_3v3: 100 <--> 3300 mV at 3300 mV, enabled
[   12.416124] iommu: Default domain type: Translated
[   12.416506] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up vpu-supply from device tree
[   12.416547] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up vpu-supply property in node /power-management@fdd90000/power-controller failed
[   12.417528] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rga-supply from device tree
[   12.417568] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rga-supply property in node /power-management@fdd90000/power-controller failed
[   12.419416] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvenc-supply from device tree
[   12.419457] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvenc-supply property in node /power-management@fdd90000/power-controller failed
[   12.420192] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvdec-supply from device tree
[   12.420231] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvdec-supply property in node /power-management@fdd90000/power-controller failed
[   12.422196] SCSI subsystem initialized
[   12.422264] libata version 3.00 loaded.
[   12.422587] usbcore: registered new interface driver usbfs
[   12.422663] usbcore: registered new interface driver hub
[   12.422737] usbcore: registered new device driver usb
[   12.422966] mc: Linux media interface: v0.10
[   12.423035] videodev: Linux video capture interface: v2.00
[   12.423218] pps_core: LinuxPPS API ver. 1 registered
[   12.423228] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[   12.423259] PTP clock support registered
[   12.424454] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
[   12.424551] arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[   12.429539] rockchip-cpuinfo cpuinfo: SoC            : 35682000
[   12.429558] rockchip-cpuinfo cpuinfo: Serial         : 6cf0ff55b2e2d6ee
[   12.429612] rockchip-cpuinfo cpuinfo: soc_is_rk3566t: 00000000
[   12.431236] clocksource: Switched to clocksource arch_sys_counter
[   13.431581] VFS: Disk quotas dquot_6.6.0
[   13.431676] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[   13.449668] NET: Registered protocol family 2
[   13.450208] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[   13.456928] tcp_listen_portaddr_hash hash table entries: 4096 (order: 5, 163840 bytes, linear)
[   13.457205] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[   13.457738] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[   13.459683] TCP: Hash tables configured (established 65536 bind 65536)
[   13.460256] MPTCP token hash table entries: 8192 (order: 6, 393216 bytes, linear)
[   13.460672] UDP hash table entries: 4096 (order: 6, 393216 bytes, linear)
[   13.461064] UDP-Lite hash table entries: 4096 (order: 6, 393216 bytes, linear)
[   13.461850] NET: Registered protocol family 1
[   13.462891] RPC: Registered named UNIX socket transport module.
[   13.462900] RPC: Registered udp transport module.
[   13.462907] RPC: Registered tcp transport module.
[   13.462913] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   13.464522] PCI: CLS 0 bytes, default 64
[   13.465555] Trying to unpack rootfs image as initramfs...
[   14.169132] Freeing initrd memory: 14128K
[   14.172293] rockchip-thermal fe710000.tsadc: tsadc is probed successfully!
[   14.174455] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 counters available
[   14.176046] kvm [1]: IPA Size Limit: 40 bits
[   14.176076] kvm [1]: GICv3: no GICV resource entry
[   14.176085] kvm [1]: disabling GICv2 emulation
[   14.176092] kvm [1]: GIC system register CPU interface enabled
[   14.176333] kvm [1]: vgic interrupt IRQ9
[   14.176648] kvm [1]: VHE mode initialized successfully
[   14.183972] Initialise system trusted keyrings
[   14.184317] workingset: timestamp_bits=46 max_order=21 bucket_order=0
[   14.195942] NFS: Registering the id_resolver key type
[   14.195993] Key type id_resolver registered
[   14.196001] Key type id_legacy registered
[   14.196150] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[   14.196161] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[   14.198088] Key type asymmetric registered
[   14.198101] Asymmetric key parser 'x509' registered
[   14.198163] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)
[   14.198460] io scheduler mq-deadline registered
[   14.198481] io scheduler kyber registered
[   14.201919] phy phy-fe850000.phy.0: Looking up phy-supply from device tree
[   14.201950] phy phy-fe850000.phy.0: Looking up phy-supply property in node /phy@fe850000 failed
[   14.204218] phy phy-fe8a0000.usb2-phy.1: Looking up phy-supply from device tree
[   14.204254] vcc5v0_host: could not add device link phy-fe8a0000.usb2-phy.1: -ENOENT
[   14.204635] phy phy-fe8a0000.usb2-phy.2: Looking up phy-supply from device tree
[   14.204663] phy phy-fe8a0000.usb2-phy.2: Looking up phy-supply property in node /usb2-phy@fe8a0000/otg-port failed
[   14.204812] phy phy-fe8a0000.usb2-phy.2: Looking up vbus-supply from device tree
[   14.207396] phy phy-fe8b0000.usb2-phy.3: Looking up phy-supply from device tree
[   14.207436] vcc5v0_host: could not add device link phy-fe8b0000.usb2-phy.3: -ENOENT
[   14.207790] phy phy-fe8b0000.usb2-phy.4: Looking up phy-supply from device tree
[   14.207821] vcc5v0_host: could not add device link phy-fe8b0000.usb2-phy.4: -ENOENT
[   14.208179] phy phy-fe8b0000.usb2-phy.4: Looking up vbus-supply from device tree
[   14.208205] phy phy-fe8b0000.usb2-phy.4: Looking up vbus-supply property in node /usb2-phy@fe8b0000/otg-port failed
[   14.212316] phy phy-fe820000.phy.5: Looking up phy-supply from device tree
[   14.212345] phy phy-fe820000.phy.5: Looking up phy-supply property in node /phy@fe820000 failed
[   14.213074] phy phy-fe830000.phy.6: Looking up phy-supply from device tree
[   14.213098] phy phy-fe830000.phy.6: Looking up phy-supply property in node /phy@fe830000 failed
[   14.213715] phy phy-fe840000.phy.7: Looking up phy-supply from device tree
[   14.213737] phy phy-fe840000.phy.7: Looking up phy-supply property in node /phy@fe840000 failed
[   14.216487] rockchip-snps-pcie3-phy fe8c0000.phy: failed to find rockchip,pipe_grf regmap
[   14.216531] phy phy-fe8c0000.phy.8: Looking up phy-supply from device tree
[   14.216553] phy phy-fe8c0000.phy.8: Looking up phy-supply property in node /phy@fe8c0000 failed
[   14.221459] rk-pcie 3c0000000.pcie: invalid prsnt-gpios property in node
[   14.221485] rk-pcie 3c0000000.pcie: Looking up vpcie3v3-supply from device tree
[   14.222270] rk-pcie 3c0800000.pcie: invalid prsnt-gpios property in node
[   14.222294] rk-pcie 3c0800000.pcie: Looking up vpcie3v3-supply from device tree
[   14.222850] rk-pcie 3c0000000.pcie: IRQ msi not found
[   14.222927] rk-pcie 3c0000000.pcie: use outband MSI support
[   14.222939] rk-pcie 3c0000000.pcie: Missing *config* reg space
[   14.222989] rk-pcie 3c0000000.pcie: host bridge /pcie@fe260000 ranges:
[   14.223049] rk-pcie 3c0000000.pcie:      err 0x00f4000000..0x00f40fffff -> 0x00f4000000
[   14.223090] rk-pcie 3c0000000.pcie:       IO 0x00f4100000..0x00f41fffff -> 0x00f4100000
[   14.223128] rk-pcie 3c0000000.pcie:      MEM 0x00f4200000..0x00f5ffffff -> 0x00f4200000
[   14.223152] rk-pcie 3c0000000.pcie:      MEM 0x0300000000..0x033fffffff -> 0x0300000000
[   14.223213] rk-pcie 3c0000000.pcie: Missing *config* reg space
[   14.223296] rk-pcie 3c0000000.pcie: invalid resource
[   14.223854] mpp_service mpp-srv: 425b07550 author: RadxaStephen 2023-10-12 Merge pull request #229 from vamrs-feng/hdmi_resolution
[   14.223867] mpp_service mpp-srv: probe start
[   14.227857] mpp_vdpu2 fdea0400.vdpu: Adding to iommu group 0
[   14.228241] mpp_vdpu2 fdea0400.vdpu: probe device
[   14.229107] mpp_vdpu2 fdea0400.vdpu: probing finish
[   14.229975] mpp_vepu2 fdee0000.vepu: Adding to iommu group 2
[   14.230279] mpp_vepu2 fdee0000.vepu: probing start
[   14.231064] mpp_vepu2 fdee0000.vepu: probing finish
[   14.232035] mpp-iep2 fdef0000.iep: Adding to iommu group 3
[   14.232197] snps pcie3phy FW update! size 8192
[   14.232358] mpp-iep2 fdef0000.iep: probe device
[   14.232839] mpp-iep2 fdef0000.iep: allocate roi buffer failed
[   14.233313] mpp-iep2 fdef0000.iep: probing finish
[   14.234187] mpp_jpgdec fded0000.jpegd: Adding to iommu group 1
[   14.234531] mpp_jpgdec fded0000.jpegd: probe device
[   14.235553] mpp_jpgdec fded0000.jpegd: probing finish
[   14.238012] mpp_service mpp-srv: probe success
[   14.245642] rk-pcie 3c0800000.pcie: IRQ msi not found
[   14.245708] rk-pcie 3c0800000.pcie: use outband MSI support
[   14.245719] rk-pcie 3c0800000.pcie: Missing *config* reg space
[   14.245768] rk-pcie 3c0800000.pcie: host bridge /pcie@fe280000 ranges:
[   14.245816] rk-pcie 3c0800000.pcie:      err 0x00f0000000..0x00f00fffff -> 0x00f0000000
[   14.245845] rk-pcie 3c0800000.pcie:       IO 0x00f0100000..0x00f01fffff -> 0x00f0100000
[   14.245875] rk-pcie 3c0800000.pcie:      MEM 0x00f0200000..0x00f1ffffff -> 0x00f0200000
[   14.245896] rk-pcie 3c0800000.pcie:      MEM 0x0380000000..0x03bfffffff -> 0x0380000000
[   14.245961] rk-pcie 3c0800000.pcie: Missing *config* reg space
[   14.246043] rk-pcie 3c0800000.pcie: invalid resource
[   14.246478] dma-pl330 fe530000.dmac: Loaded driver for PL330 DMAC-241330
[   14.246495] dma-pl330 fe530000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[   14.250335] dma-pl330 fe550000.dmac: Loaded driver for PL330 DMAC-241330
[   14.250352] dma-pl330 fe550000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[   14.251253] rockchip-pvtm fde00000.pvtm: pvtm@0 probed
[   14.251504] rockchip-pvtm fde80000.pvtm: pvtm@1 probed
[   14.251742] rockchip-pvtm fde90000.pvtm: pvtm@2 probed
[   14.253130] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[   14.254319] arm-scmi firmware:scmi: Failed. SCMI protocol 22 not active.
[   14.254863] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[   14.256441] fe6c0000.serial: ttyS8 at MMIO 0xfe6c0000 (irq = 72, base_baud = 1500000) is a 16550A
[   14.256744] serial serial0: tty port ttyS8 registered
[   14.260812] random: crng init done
[   14.262172] rockchip-vop2 fe040000.vop: Adding to iommu group 6
[   14.276717] [drm] all windows should be assigned, full plane mask: 0x3f, current plane mask: 0x0
[   14.276729] [drm] use default plane mask
[   14.277094] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x3f, primary plane phy id: 4
[   14.277110] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp1 assign plane mask: 0x0, primary plane phy id: -1
[   14.277125] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x0, primary plane phy id: -1
[   14.277591] [drm] failed to init overlay plane Cluster0-win1
[   14.277682] [drm] failed to init overlay plane Cluster1-win1
[   14.277838] rockchip-drm display-subsystem: bound fe040000.vop (ops 0xffff800008e76e90)
[   14.278336] dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
[   14.279312] dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
[   14.279676] dwhdmi-rockchip fe0a0000.hdmi: IRQ index 1 not found
[   14.280469] rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops 0xffff800008e85030)
[   14.280950] rockchip-drm display-subsystem: failed to parse loader memory
[   14.281111] rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes
[   14.281320] rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes
[   14.282688] [drm] Initialized rockchip 3.0.0 20140818 for display-subsystem on minor 0
[   14.283279] no ATF memory for init
[   14.290814] cacheinfo: Unable to detect cache hierarchy for CPU 0
[   14.292037] brd: module loaded
[   14.303137] loop: module loaded
[   14.303641] lkdtm: No crash points registered, enable through debugfs
[   14.304092] system_heap: orders[0] = 6
[   14.304102] system_heap: orders[1] = 4
[   14.304109] system_heap: orders[2] = 0
[   14.305107] no ATF memory for init
[   14.313894] spi-nor spi4.0: mx25u12835f (16384 Kbytes) read_data x4
[   14.320142] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[   14.320544] rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply from device tree
[   14.320581] rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply property in node /ethernet@fe010000 failed
[   14.320612] rk_gmac-dwmac fe010000.ethernet: no regulator found
[   14.320686] rk_gmac-dwmac fe010000.ethernet: clock input or output? (output).
[   14.320700] rk_gmac-dwmac fe010000.ethernet: TX delay(0x47).
[   14.320711] rk_gmac-dwmac fe010000.ethernet: RX delay(0x28).
[   14.320733] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[   14.321064] rk_gmac-dwmac fe010000.ethernet: init for RGMII
[   14.321461] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[   14.321478] rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
[   14.321491] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[   14.321501] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[   14.321510] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[   14.321519] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[   14.321632] rk_gmac-dwmac fe010000.ethernet: TSO supported
[   14.321644] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[   14.321655] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[   14.321666] rk_gmac-dwmac fe010000.ethernet: Using 32 bits DMA width
[   14.429093] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[   14.452426] rk-pcie 3c0800000.pcie: PCIe Linking... LTSSM is 0x3
[   14.477948] rk-pcie 3c0800000.pcie: PCIe Linking... LTSSM is 0x210022
[   14.511279] rk-pcie 3c0000000.pcie: PCIe Link up, LTSSM is 0x30011
[   14.511541] rk-pcie 3c0000000.pcie: PCI host bridge to bus 0000:00
[   14.511563] pci_bus 0000:00: root bus resource [bus 00-0f]
[   14.511580] pci_bus 0000:00: root bus resource [??? 0xf4000000-0xf40fffff flags 0x0]
[   14.511594] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0xf4100000-0xf41fffff])
[   14.511607] pci_bus 0000:00: root bus resource [mem 0xf4200000-0xf5ffffff]
[   14.511619] pci_bus 0000:00: root bus resource [mem 0x300000000-0x33fffffff pref]
[   14.511681] pci 0000:00:00.0: [1d87:3566] type 01 class 0x060400
[   14.511724] pci 0000:00:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[   14.511829] pci 0000:00:00.0: supports D1 D2
[   14.511842] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[   14.526659] pci_bus 0000:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
[   14.526847] pci 0000:01:00.0: [8086:095a] type 00 class 0x028000
[   14.526987] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00001fff 64bit]
[   14.527678] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[   14.554612] pci 0000:00:00.0: BAR 8: assigned [mem 0xf4200000-0xf42fffff]
[   14.554643] pci 0000:00:00.0: BAR 6: assigned [mem 0xf4300000-0xf430ffff pref]
[   14.554670] pci 0000:01:00.0: BAR 0: assigned [mem 0xf4200000-0xf4201fff 64bit]
[   14.554744] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[   14.554760] pci 0000:00:00.0:   bridge window [mem 0xf4200000-0xf42fffff]
[   14.558505] rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
[   14.558952] rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply from device tree
[   14.558990] rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply property in node /ethernet@fe2a0000 failed
[   14.559021] rk_gmac-dwmac fe2a0000.ethernet: no regulator found
[   14.559098] rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (output).
[   14.559112] rk_gmac-dwmac fe2a0000.ethernet: TX delay(0x36).
[   14.559123] rk_gmac-dwmac fe2a0000.ethernet: RX delay(0x2d).
[   14.559144] rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
[   14.559308] pcieport 0000:00:00.0: PME: Signaling with IRQ 85
[   14.559487] rk_gmac-dwmac fe2a0000.ethernet: init for RGMII
[   14.559831] rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[   14.559861] rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
[   14.559874] rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
[   14.559883] rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
[   14.559891] rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
[   14.559899] rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
[   14.560007] rk_gmac-dwmac fe2a0000.ethernet: TSO supported
[   14.560017] rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[   14.560027] rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
[   14.560037] rk_gmac-dwmac fe2a0000.ethernet: Using 32 bits DMA width
[   14.564610] rk-pcie 3c0800000.pcie: PCIe Link up, LTSSM is 0x230011
[   14.564857] rk-pcie 3c0800000.pcie: PCI host bridge to bus 0002:20
[   14.564878] pci_bus 0002:20: root bus resource [bus 20-2f]
[   14.564894] pci_bus 0002:20: root bus resource [??? 0xf0000000-0xf00fffff flags 0x0]
[   14.564908] pci_bus 0002:20: root bus resource [io  0x100000-0x1fffff] (bus address [0xf0100000-0xf01fffff])
[   14.564920] pci_bus 0002:20: root bus resource [mem 0xf0200000-0xf1ffffff]
[   14.564931] pci_bus 0002:20: root bus resource [mem 0x380000000-0x3bfffffff pref]
[   14.564991] pci 0002:20:00.0: [1d87:3566] type 01 class 0x060400
[   14.565018] pci 0002:20:00.0: reg 0x10: [mem 0x00000000-0x3fffffff]
[   14.565035] pci 0002:20:00.0: reg 0x14: [mem 0x00000000-0x3fffffff]
[   14.565052] pci 0002:20:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[   14.565146] pci 0002:20:00.0: supports D1 D2
[   14.565158] pci 0002:20:00.0: PME# supported from D0 D1 D3hot
[   14.579975] pci 0002:20:00.0: Primary bus is hard wired to 0
[   14.579996] pci 0002:20:00.0: bridge configuration invalid ([bus 01-ff]), reconfiguring
[   14.580399] pci 0002:21:00.0: [10ec:5765] type 00 class 0x010802
[   14.580504] pci 0002:21:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[   14.580616] pci 0002:21:00.0: reg 0x24: [mem 0x00000000-0x00001fff]
[   14.581161] pci 0002:21:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0002:20:00.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[   14.605225] pci_bus 0002:21: busn_res: [bus 21-2f] end is updated to 21
[   14.605293] pci 0002:20:00.0: BAR 0: no space for [mem size 0x40000000]
[   14.605307] pci 0002:20:00.0: BAR 0: failed to assign [mem size 0x40000000]
[   14.605321] pci 0002:20:00.0: BAR 1: no space for [mem size 0x40000000]
[   14.605332] pci 0002:20:00.0: BAR 1: failed to assign [mem size 0x40000000]
[   14.605345] pci 0002:20:00.0: BAR 8: assigned [mem 0xf0200000-0xf02fffff]
[   14.605359] pci 0002:20:00.0: BAR 6: assigned [mem 0xf0300000-0xf030ffff pref]
[   14.605382] pci 0002:21:00.0: BAR 0: assigned [mem 0xf0200000-0xf0203fff 64bit]
[   14.605439] pci 0002:21:00.0: BAR 5: assigned [mem 0xf0204000-0xf0205fff]
[   14.605465] pci 0002:20:00.0: PCI bridge to [bus 21]
[   14.605481] pci 0002:20:00.0:   bridge window [mem 0xf0200000-0xf02fffff]
[   14.610148] pcieport 0002:20:00.0: PME: Signaling with IRQ 95
[   14.610924] nvme nvme0: pci function 0002:21:00.0
[   14.611049] nvme 0002:21:00.0: enabling device (0000 -> 0002)
[   14.730444] usbcore: registered new interface driver rndis_wlan
[   14.730521] usbcore: registered new interface driver cdc_ether
[   14.730582] usbcore: registered new interface driver rndis_host
[   14.739674] naneng-combphy fe830000.phy: wait phy status ready timeout
[   14.744945] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   14.744995] ehci-pci: EHCI PCI platform driver
[   14.745201] ehci-platform: EHCI generic platform driver
[   14.745970] phy phy-fe8b0000.usb2-phy.4: illegal mode
[   14.748049] ehci-platform fd800000.usb: EHCI Host Controller
[   14.748095] ehci-platform fd800000.usb: new USB bus registered, assigned bus number 1
[   14.748335] ehci-platform fd800000.usb: irq 19, io mem 0xfd800000
[   14.758281] nvme nvme0: allocated 64 MiB host memory buffer.
[   14.761298] ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
[   14.761780] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   14.761794] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.761805] usb usb1: Product: EHCI Host Controller
[   14.761814] usb usb1: Manufacturer: Linux 5.10.160-18-rk356x ehci_hcd
[   14.761823] usb usb1: SerialNumber: fd800000.usb
[   14.762741] hub 1-0:1.0: USB hub found
[   14.762812] hub 1-0:1.0: 1 port detected
[   14.766125] ehci-platform fd880000.usb: EHCI Host Controller
[   14.766164] ehci-platform fd880000.usb: new USB bus registered, assigned bus number 2
[   14.766379] ehci-platform fd880000.usb: irq 21, io mem 0xfd880000
[   14.777955] ehci-platform fd880000.usb: USB 2.0 started, EHCI 1.00
[   14.778392] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   14.778406] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.778416] usb usb2: Product: EHCI Host Controller
[   14.778426] usb usb2: Manufacturer: Linux 5.10.160-18-rk356x ehci_hcd
[   14.778434] usb usb2: SerialNumber: fd880000.usb
[   14.779230] hub 2-0:1.0: USB hub found
[   14.779301] hub 2-0:1.0: 1 port detected
[   14.780528] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   14.780565] ohci-platform: OHCI generic platform driver
[   14.781061] phy phy-fe8b0000.usb2-phy.4: illegal mode
[   14.781083] ohci-platform fd840000.usb: Generic Platform OHCI controller
[   14.781117] ohci-platform fd840000.usb: new USB bus registered, assigned bus number 3
[   14.781370] ohci-platform fd840000.usb: irq 20, io mem 0xfd840000
[   14.795240] nvme nvme0: 4/0/0 default/read/poll queues
[   14.844772] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[   14.844793] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.844802] usb usb3: Product: Generic Platform OHCI controller
[   14.844813] usb usb3: Manufacturer: Linux 5.10.160-18-rk356x ohci_hcd
[   14.844823] usb usb3: SerialNumber: fd840000.usb
[   14.845659] hub 3-0:1.0: USB hub found
[   14.845732] hub 3-0:1.0: 1 port detected
[   14.846804] ohci-platform fd8c0000.usb: Generic Platform OHCI controller
[   14.846840] ohci-platform fd8c0000.usb: new USB bus registered, assigned bus number 4
[   14.847035] ohci-platform fd8c0000.usb: irq 22, io mem 0xfd8c0000
[   14.905619] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[   14.905635] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.905645] usb usb4: Product: Generic Platform OHCI controller
[   14.905654] usb usb4: Manufacturer: Linux 5.10.160-18-rk356x ohci_hcd
[   14.905663] usb usb4: SerialNumber: fd8c0000.usb
[   14.906448] hub 4-0:1.0: USB hub found
[   14.906528] hub 4-0:1.0: 1 port detected
[   14.908679] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
[   14.908721] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 5
[   14.908933] xhci-hcd xhci-hcd.3.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000200002010010
[   14.909025] xhci-hcd xhci-hcd.3.auto: irq 98, io mem 0xfd000000
[   14.909649] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   14.909664] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.909674] usb usb5: Product: xHCI Host Controller
[   14.909683] usb usb5: Manufacturer: Linux 5.10.160-18-rk356x xhci-hcd
[   14.909693] usb usb5: SerialNumber: xhci-hcd.3.auto
[   14.910534] hub 5-0:1.0: USB hub found
[   14.910609] hub 5-0:1.0: 1 port detected
[   14.911271] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
[   14.911300] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 6
[   14.911327] xhci-hcd xhci-hcd.3.auto: Host supports USB 3.0 SuperSpeed
[   14.911476] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[   14.911741] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[   14.911756] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.911765] usb usb6: Product: xHCI Host Controller
[   14.911775] usb usb6: Manufacturer: Linux 5.10.160-18-rk356x xhci-hcd
[   14.911784] usb usb6: SerialNumber: xhci-hcd.3.auto
[   14.912572] hub 6-0:1.0: USB hub found
[   14.912641] hub 6-0:1.0: 1 port detected
[   14.914956] usbcore: registered new interface driver usbtouchscreen
[   14.915446] .. rk pwm remotectl v2.0 init
[   14.915928] input: fdd70030.pwm as /devices/platform/fdd70030.pwm/input/input0
[   14.916588] remotectl-pwm fdd70030.pwm: pwm version is 0x2130000
[   14.916690] remotectl-pwm fdd70030.pwm: Controller support pwrkey capture
[   14.917734] i2c /dev entries driver
[   14.920898] fan53555-regulator 0-001c: FAN53555 Option[12] Rev[15] Detected!
[   14.921426] vdd_cpu: override max_uV, 1390000 -> 1387500
[   14.922402] fan53555-regulator 0-001c: Looking up vin-supply from device tree
[   14.922725] vdd_cpu: supplied by vcc5v0_sys
[   14.922746] vcc5v0_sys: could not add device link regulator.9: -ENOENT
[   14.925725] vdd_cpu: 712 <--> 1387 mV at 900 mV, enabled
[   14.931805] rk808 0-0020: chip id: 0x8090
[   14.931880] rk808 0-0020: No cache defaults, reading back from HW
[   14.955743] rk808 0-0020: source: on=0x80, off=0x08
[   14.955765] rk808 0-0020: support dcdc3 fb mode:-22, 1
[   14.955780] rk808 0-0020: support pmic reset mode:0,0
[   14.963769] rk808-regulator rk808-regulator: there is no dvs0 gpio
[   14.963813] rk808-regulator rk808-regulator: there is no dvs1 gpio
[   14.963928] rk808 0-0020: Looking up vcc1-supply from device tree
[   14.963954] vdd_logic: supplied by vcc3v3_sys
[   14.963974] vcc3v3_sys: could not add device link regulator.10: -ENOENT
[   14.964492] vdd_logic: 500 <--> 1350 mV at 900 mV, enabled
[   14.965075] rk808 0-0020: Looking up vcc2-supply from device tree
[   14.965098] vdd_gpu: supplied by vcc3v3_sys
[   14.965117] vcc3v3_sys: could not add device link regulator.11: -ENOENT
[   14.965597] vdd_gpu: 500 <--> 1350 mV at 900 mV, enabled
[   14.966048] rk808 0-0020: Looking up vcc3-supply from device tree
[   14.966069] vcc_ddr: supplied by vcc3v3_sys
[   14.966086] vcc3v3_sys: could not add device link regulator.12: -ENOENT
[   14.966575] vcc_ddr: at 500 mV, enabled
[   14.967029] rk808 0-0020: Looking up vcc4-supply from device tree
[   14.967050] vdd_npu: supplied by vcc3v3_sys
[   14.967068] vcc3v3_sys: could not add device link regulator.13: -ENOENT
[   14.967564] vdd_npu: 500 <--> 1350 mV at 900 mV, enabled
[   14.968089] rk808 0-0020: Looking up vcc9-supply from device tree
[   14.968112] vcc_1v8: supplied by vcc3v3_sys
[   14.968130] vcc3v3_sys: could not add device link regulator.14: -ENOENT
[   14.968588] vcc_1v8: 1800 mV, enabled
[   14.969033] vdda0v9_image: Bringing 600000uV into 900000-900000uV
[   14.969423] vdda0v9_image: ramp_delay not set
[   14.969446] rk808 0-0020: Looking up vcc5-supply from device tree
[   14.969466] vdda0v9_image: supplied by vcc3v3_sys
[   14.969482] vcc3v3_sys: could not add device link regulator.15: -ENOENT
[   14.970475] vdda0v9_image: 900 mV, enabled
[   14.970940] rk808 0-0020: Looking up vcc5-supply from device tree
[   14.970961] vdda_0v9: supplied by vcc3v3_sys
[   14.970978] vcc3v3_sys: could not add device link regulator.16: -ENOENT
[   14.971978] vdda_0v9: 900 mV, enabled
[   14.972443] rk808 0-0020: Looking up vcc5-supply from device tree
[   14.972463] vdda0v9_pmu: supplied by vcc3v3_sys
[   14.972479] vcc3v3_sys: could not add device link regulator.17: -ENOENT
[   14.973472] vdda0v9_pmu: 900 mV, enabled
[   14.973941] rk808 0-0020: Looking up vcc6-supply from device tree
[   14.973962] vccio_acodec: supplied by vcc3v3_sys
[   14.973978] vcc3v3_sys: could not add device link regulator.18: -ENOENT
[   14.974974] vccio_acodec: 3300 mV, enabled
[   14.975417] rk808 0-0020: Looking up vcc6-supply from device tree
[   14.975439] vccio_sd: supplied by vcc3v3_sys
[   14.975457] vcc3v3_sys: could not add device link regulator.19: -ENOENT
[   14.976492] vccio_sd: 1800 <--> 3300 mV at 3300 mV, enabled
[   14.976938] rk808 0-0020: Looking up vcc6-supply from device tree
[   14.976959] vcc3v3_pmu: supplied by vcc3v3_sys
[   14.976978] vcc3v3_sys: could not add device link regulator.20: -ENOENT
[   14.977978] vcc3v3_pmu: 3300 mV, enabled
[   14.978452] rk808 0-0020: Looking up vcc7-supply from device tree
[   14.978473] vcca_1v8: supplied by vcc3v3_sys
[   14.978497] vcc3v3_sys: could not add device link regulator.21: -ENOENT
[   14.979493] vcca_1v8: 1800 mV, enabled
[   14.979962] rk808 0-0020: Looking up vcc7-supply from device tree
[   14.979982] vcca1v8_pmu: supplied by vcc3v3_sys
[   14.979999] vcc3v3_sys: could not add device link regulator.22: -ENOENT
[   14.980995] vcca1v8_pmu: 1800 mV, enabled
[   14.981521] vcca1v8_image: Bringing 600000uV into 1800000-1800000uV
[   14.981910] vcca1v8_image: ramp_delay not set
[   14.981936] rk808 0-0020: Looking up vcc7-supply from device tree
[   14.981955] vcca1v8_image: supplied by vcc3v3_sys
[   14.981973] vcc3v3_sys: could not add device link regulator.23: -ENOENT
[   14.982967] vcca1v8_image: 1800 mV, enabled
[   14.983417] rk808 0-0020: Looking up vcc9-supply from device tree
[   14.983438] vcc_3v3: supplied by vcc3v3_sys
[   14.983454] vcc3v3_sys: could not add device link regulator.24: -ENOENT
[   14.983943] vcc_3v3: at 3300 mV, enabled
[   14.984367] rk808 0-0020: Looking up vcc8-supply from device tree
[   14.984388] vcc3v3_sd: supplied by vcc3v3_sys
[   14.984404] vcc3v3_sys: could not add device link regulator.25: -ENOENT
[   14.984865] vcc3v3_sd: at 3300 mV, enabled
[   14.985272] rk817-battery: Failed to locate of_node [id: -1]
[   14.985507] rk817-battery rk817-battery: Failed to find matching dt id
[   14.985746] rk817-charger: Failed to locate of_node [id: -1]
[   14.985929] rk817-charger rk817-charger: Failed to find matching dt id
[   14.989565] input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-pwrkey/input/input1
[   15.000315] rtc-hym8563 5-0051: rtc information is valid
[   15.006456] rtc-hym8563 5-0051: registered as rtc0
[   15.007549] rtc-hym8563 5-0051: setting system clock to 2024-12-31T01:26:35 UTC (1735608395)
[   15.011319] usb 1-1: new high-speed USB device number 2 using ehci-platform
[   15.015745] usbcore: registered new interface driver uvcvideo
[   15.015756] USB Video Class driver (1.1.1)
[   15.019254] cpu cpu0: leakage=27
[   15.019377] cpu cpu0: pvtm = 88430, from nvmem
[   15.019404] cpu cpu0: pvtm-volt-sel=2
[   15.019858] cpu cpu0: Looking up cpu-supply from device tree
[   15.022509] cpu cpu0: avs=0
[   15.022736] cpu cpu0: EM: OPP:600000 is inefficient
[   15.022749] cpu cpu0: EM: OPP:408000 is inefficient
[   15.023130] cpu cpu0: EM: created perf domain
[   15.023244] cpu cpu0: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[   15.030880] sdhci: Secure Digital Host Controller Interface driver
[   15.030887] sdhci: Copyright(c) Pierre Ossman
[   15.030890] Synopsys Designware Multimedia Card Interface Driver
[   15.031775] sdhci-pltfm: SDHCI platform and OF driver helper
[   15.032262] dwmmc_rockchip fe000000.dwmmc: IDMAC supports 32-bit address mode.
[   15.032293] dwmmc_rockchip fe2b0000.dwmmc: IDMAC supports 32-bit address mode.
[   15.032304] dwmmc_rockchip fe000000.dwmmc: Using internal DMA controller.
[   15.032313] dwmmc_rockchip fe000000.dwmmc: Version ID is 270a
[   15.032325] dwmmc_rockchip fe2b0000.dwmmc: Using internal DMA controller.
[   15.032332] dwmmc_rockchip fe2b0000.dwmmc: Version ID is 270a
[   15.032369] dwmmc_rockchip fe000000.dwmmc: DW MMC controller at irq 46,32 bit host data width,256 deep fifo
[   15.032383] dwmmc_rockchip fe2b0000.dwmmc: DW MMC controller at irq 60,32 bit host data width,256 deep fifo
[   15.032462] dwmmc_rockchip fe000000.dwmmc: Looking up vmmc-supply from device tree
[   15.032465] dwmmc_rockchip fe2b0000.dwmmc: Looking up vmmc-supply from device tree
[   15.032482] dwmmc_rockchip fe000000.dwmmc: Looking up vmmc-supply property in node /dwmmc@fe000000 failed
[   15.032510] dwmmc_rockchip fe000000.dwmmc: Looking up vqmmc-supply from device tree
[   15.032519] dwmmc_rockchip fe000000.dwmmc: Looking up vqmmc-supply property in node /dwmmc@fe000000 failed
[   15.032635] dwmmc_rockchip fe2b0000.dwmmc: Looking up vqmmc-supply from device tree
[   15.032770] dwmmc_rockchip fe000000.dwmmc: allocated mmc-pwrseq
[   15.032778] mmc_host mmc3: card is non-removable.
[   15.033298] ledtrig-cpu: registered to indicate activity on CPUs
[   15.033320] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active.
[   15.033403] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[   15.034291] cryptodev: driver 1.12 loaded.
[   15.034337] hid: raw HID events driver (C) Jiri Kosina
[   15.034653] usbcore: registered new interface driver usbhid
[   15.034657] usbhid: USB HID core driver
[   15.034936] ashmem: initialized
[   15.038032] rockchip-saradc fe720000.saradc: Looking up vref-supply from device tree
[   15.039307] rksfc_base v1.1 2016-01-08
[   15.039663] Initializing XFRM netlink socket
[   15.039679] NET: Registered protocol family 17
[   15.040013] [BT_RFKILL]: Enter rfkill_rk_init
[   15.040017] [WLAN_RFKILL]: Enter rfkill_wlan_init
[   15.040453] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[   15.040492] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6275s
[   15.040496] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
[   15.040500] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[   15.040531] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 125, flags = 0.
[   15.040550] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio
[   15.040556] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[   15.040560] [WLAN_RFKILL]: Exit rfkill_wlan_probe
[   15.040884] Key type dns_resolver registered
[   15.041392] flash vendor_init_thread!
[   15.041398] flash vendor storage:20170308 ret = -1
[   15.042700] registered taskstats version 1
[   15.042711] Loading compiled-in X.509 certificates
[   15.042748] Key type .fscrypt registered
[   15.042752] Key type fscrypt-provisioning registered
[   15.042910] pstore: Using crash dump compression: deflate
[   15.043879] rga: rga2, irq = 31, match scheduler
[   15.044340] rga: rga2 hardware loaded successfully, hw_version:3.2.63318.
[   15.044361] rga: rga2 probe successfully
[   15.044710] rga_iommu: IOMMU binding successfully, default mapping core[0x4]
[   15.044904] mmc_host mmc3: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[   15.044909] mmc_host mmc1: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[   15.044966] rga: Module initialized. v1.2.26
[   15.076185] mpp_rkvenc fdf40000.rkvenc: Adding to iommu group 4
[   15.076394] mpp_rkvenc fdf40000.rkvenc: probing start
[   15.076656] mpp_rkvenc fdf40000.rkvenc: Looking up venc-supply from device tree
[   15.076835] mpp_rkvenc fdf40000.rkvenc: Failed to get leakage
[   15.076931] mpp_rkvenc fdf40000.rkvenc: pvtm = 88430, from nvmem
[   15.076942] mpp_rkvenc fdf40000.rkvenc: pvtm-volt-sel=1
[   15.077141] mpp_rkvenc fdf40000.rkvenc: avs=0
[   15.077245] mpp_rkvenc fdf40000.rkvenc: failed to find power_model node
[   15.077264] mpp_rkvenc fdf40000.rkvenc: failed to initialize power model
[   15.077277] mpp_rkvenc fdf40000.rkvenc: failed to get dynamic-coefficient
[   15.077851] mpp_rkvenc fdf40000.rkvenc: probing finish
[   15.078286] mpp_rkvdec2 fdf80200.rkvdec: Adding to iommu group 5
[   15.078501] mpp_rkvdec2 fdf80200.rkvdec: rkvdec, probing start
[   15.078807] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_a is not found!
[   15.078834] rkvdec2_init:1022: No niu aclk reset resource define
[   15.078848] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_h is not found!
[   15.078858] rkvdec2_init:1025: No niu hclk reset resource define
[   15.078898] mpp_rkvdec2 fdf80200.rkvdec: Looking up vdec-supply from device tree
[   15.079186] mpp_rkvdec2 fdf80200.rkvdec: leakage=52
[   15.079196] mpp_rkvdec2 fdf80200.rkvdec: leakage-volt-sel=0
[   15.079230] mpp_rkvdec2 fdf80200.rkvdec: pvtm = 88430, from nvmem
[   15.079238] mpp_rkvdec2 fdf80200.rkvdec: pvtm-volt-sel=1
[   15.079428] mpp_rkvdec2 fdf80200.rkvdec: avs=0
[   15.079535] mpp_rkvdec2 fdf80200.rkvdec: failed to find power_model node
[   15.079554] mpp_rkvdec2 fdf80200.rkvdec: failed to initialize power model
[   15.079567] mpp_rkvdec2 fdf80200.rkvdec: failed to get dynamic-coefficient
[   15.079697] mpp_rkvdec2 fdf80200.rkvdec: sram_start 0x00000000fdcc0000
[   15.079701] mpp_rkvdec2 fdf80200.rkvdec: rcb_iova 0x0000000010000000
[   15.079705] mpp_rkvdec2 fdf80200.rkvdec: sram_size 45056
[   15.079709] mpp_rkvdec2 fdf80200.rkvdec: rcb_size 65536
[   15.079715] mpp_rkvdec2 fdf80200.rkvdec: min_width 512
[   15.079766] mpp_rkvdec2 fdf80200.rkvdec: link mode probe finish
[   15.079834] mpp_rkvdec2 fdf80200.rkvdec: probing finish
[   15.080982] rockchip-dmc dmc: Looking up center-supply from device tree
[   15.081139] rockchip-dmc dmc: Looking up center-supply from device tree
[   15.081167] vdd_logic: could not add device link dmc: -EEXIST
[   15.081171] vdd_logic: Failed to create debugfs directory
[   15.081367] rockchip-dmc dmc: leakage=52
[   15.081381] rockchip-dmc dmc: leakage-volt-sel=0
[   15.081417] rockchip-dmc dmc: pvtm = 88430, from nvmem
[   15.081428] rockchip-dmc dmc: pvtm-volt-sel=1
[   15.081717] rockchip-dmc dmc: avs=0
[   15.081736] rockchip-dmc dmc: current ATF version 0x101
[   15.082766] rockchip-dmc dmc: normal_rate = 780000000
[   15.082773] rockchip-dmc dmc: reboot_rate = 1560000000
[   15.082778] rockchip-dmc dmc: suspend_rate = 324000000
[   15.082783] rockchip-dmc dmc: video_4k_rate = 780000000
[   15.082789] rockchip-dmc dmc: video_4k_10b_rate = 780000000
[   15.082793] rockchip-dmc dmc: boost_rate = 1560000000
[   15.082798] rockchip-dmc dmc: fixed_rate(isp|cif0|cif1|dualview) = 1560000000
[   15.082802] rockchip-dmc dmc: performance_rate = 1560000000
[   15.082823] rockchip-dmc dmc: failed to get vop pn to msch rl
[   15.083073] rockchip-dmc dmc: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[   15.084025] rockchip-dmc dmc: could not find power_model node
[   15.084986] rockchip-iodomain fdc20000.syscon:io-domains: Looking up pmuio1-supply from device tree
[   15.085005] rockchip-iodomain fdc20000.syscon:io-domains: Looking up pmuio1-supply property in node /syscon@fdc20000/io-domains failed
[   15.085074] rockchip-iodomain fdc20000.syscon:io-domains: Looking up pmuio2-supply from device tree
[   15.085162] mmc_host mmc3: Bus speed (slot 0) = 375000Hz (slot req 375000Hz, actual 375000HZ div = 0)
[   15.085504] rockchip-iodomain fdc20000.syscon:io-domains: pmuio2(3300000 uV) supplied by vcc3v3_pmu
[   15.085513] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio1-supply from device tree
[   15.085702] rockchip-iodomain fdc20000.syscon:io-domains: vccio1(3300000 uV) supplied by vccio_acodec
[   15.085711] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio2-supply from device tree
[   15.085726] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio2-supply property in node /syscon@fdc20000/io-domains failed
[   15.085758] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio3-supply from device tree
[   15.085924] rockchip-iodomain fdc20000.syscon:io-domains: vccio3(3300000 uV) supplied by vccio_sd
[   15.085933] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio4-supply from device tree
[   15.086155] rockchip-iodomain fdc20000.syscon:io-domains: vccio4(1800000 uV) supplied by vcc_1v8
[   15.086164] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio5-supply from device tree
[   15.086370] rockchip-iodomain fdc20000.syscon:io-domains: vccio5(3300000 uV) supplied by vcc_3v3
[   15.086379] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio6-supply from device tree
[   15.086463] rockchip-iodomain fdc20000.syscon:io-domains: vccio6(1800000 uV) supplied by vcc_1v8
[   15.086472] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio7-supply from device tree
[   15.086557] rockchip-iodomain fdc20000.syscon:io-domains: vccio7(3300000 uV) supplied by vcc_3v3
[   15.095863] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   15.124370] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   15.126259] rockchip-pm rockchip-suspend: not set pwm-regulator-config
[   15.126284] rockchip-suspend not set sleep-mode-config for mem-lite
[   15.126288] rockchip-suspend not set wakeup-config for mem-lite
[   15.126300] rockchip-suspend not set sleep-mode-config for mem-ultra
[   15.126304] rockchip-suspend not set wakeup-config for mem-ultra
[   15.136632] Freeing unused kernel memory: 5760K
[   15.151788] Run /init as init process
[   15.151818]   with arguments:
[   15.151832]     /init
[   15.151844]     splash
[   15.151856]   with environment:
[   15.151869]     HOME=/
[   15.151881]     TERM=linux
[   15.151893]     cgroup_enable=memory
[   15.151904]     cgroup_memory=1
[   15.159753] usb 1-1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
[   15.159782] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[   15.159793] usb 1-1: Product: USB 2.0 Hub
[   15.161922] hub 1-1:1.0: USB hub found
[   15.162138] hub 1-1:1.0: 4 ports detected
[   15.203560] rockchip-vop2 fe040000.vop: [drm:vop2_crtc_atomic_enable] Update mode to 1920x1080p60, type: 11(if:800) for vp0 dclk: 148500000
[   15.304220] Console: switching to colour frame buffer device 240x67
[   15.311404] usb 5-1: new low-speed USB device number 2 using xhci-hcd
[   15.337119] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
[   15.454857] usb 5-1: New USB device found, idVendor=093a, idProduct=2510, bcdDevice= 1.00
[   15.454869] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   15.454874] usb 5-1: Product: USB Optical Mouse
[   15.454878] usb 5-1: Manufacturer: PixArt
[   15.476040] input: PixArt USB Optical Mouse as /devices/platform/usbhost/fd000000.dwc3/xhci-hcd.3.auto/usb5/5-1/5-1:1.0/0003:093A:2510.0001/input/input2
[   15.476602] hid-generic 0003:093A:2510.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-xhci-hcd.3.auto-1/input0
[   15.561326] usb 1-1.1: new low-speed USB device number 3 using ehci-platform
[   15.636134] cma: cma_alloc: reserved: alloc failed, req-size: 512 pages, ret: -12
[   15.682368] rk808-rtc rk808-rtc: registered as rtc1
[   15.698262] Registered IR keymap rc-cec
[   15.698494] rc rc0: dw_hdmi as /devices/platform/fe0a0000.hdmi/rc/rc0
[   15.698693] input: dw_hdmi as /devices/platform/fe0a0000.hdmi/rc/rc0/input3
[   15.699389] input: hdmi_cec_key as /devices/platform/fe0a0000.hdmi/dw-hdmi-cec.1.auto/input/input4
[   15.717540] sdhci-dwcmshc fe310000.sdhci: Looking up vmmc-supply from device tree
[   15.717572] sdhci-dwcmshc fe310000.sdhci: Looking up vmmc-supply property in node /sdhci@fe310000 failed
[   15.717645] sdhci-dwcmshc fe310000.sdhci: Looking up vqmmc-supply from device tree
[   15.717656] sdhci-dwcmshc fe310000.sdhci: Looking up vqmmc-supply property in node /sdhci@fe310000 failed
[   15.748026] mmc0: SDHCI controller on fe310000.sdhci [fe310000.sdhci] using ADMA
[   15.781767] usb 1-1.1: New USB device found, idVendor=045e, idProduct=0752, bcdDevice= 1.10
[   15.781781] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   15.781786] usb 1-1.1: Product: Wired Keyboard 400
[   15.781790] usb 1-1.1: Manufacturer: Microsoft
[   15.791077] mmc0: Host Software Queue enabled
[   15.791106] mmc0: new HS200 MMC card at address 0001
[   15.792584] mmcblk0: mmc0:0001 BJTD4R 29.1 GiB
[   15.792887] mmcblk0boot0: mmc0:0001 BJTD4R partition 1 4.00 MiB
[   15.793227] mmcblk0boot1: mmc0:0001 BJTD4R partition 2 4.00 MiB
[   15.793621] mmcblk0rpmb: mmc0:0001 BJTD4R partition 3 4.00 MiB, chardev (236:0)
[   15.798077]  mmcblk0: p1 p2 p3
[   15.798552] input: Microsoft Wired Keyboard 400 as /devices/platform/fd800000.usb/usb1/1-1/1-1.1/1-1.1:1.0/0003:045E:0752.0002/input/input5
[   15.855849] hid-generic 0003:045E:0752.0002: input,hidraw1: USB HID v1.11 Keyboard [Microsoft Wired Keyboard 400] on usb-fd800000.usb-1.1/input0
[   15.901210] vendor storage:20190527 ret = 0
[   16.045347] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
[   16.617866]  mmcblk0: p1 p2 p3
[   16.625433]  mmcblk0: p1 p2 p3
[   16.760617] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
[   17.113322] NET: Registered protocol family 10
[   17.114634] Segment Routing with IPv6
[   17.147079] systemd[1]: systemd 247.3-7+deb11u4 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=unified)
[   17.148014] systemd[1]: Detected architecture arm64.
[   17.148095] systemd[1]: Detected first boot.
[   17.149154] systemd[1]: Set hostname to <rock-3b>.
[   17.151583] systemd[1]: Initializing machine ID from random generator.
[   17.796780] systemd[1]: Configuration file /lib/systemd/system/rkaiq_3A.service is marked world-writable. Please remove world writability permission bits. Proceeding anyway.
[   18.183748] systemd[1]: Populated /etc with preset unit settings.
[   18.223206] systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
[   18.378696] systemd[1]: Configuration file /lib/systemd/system/rkaiq_3A.service is marked world-writable. Please remove world writability permission bits. Proceeding anyway.
[   18.395558] systemd[1]: Queued start job for default target Graphical Interface.
[   18.401332] systemd[1]: Created slice system-getty.slice.
[   18.403315] systemd[1]: Created slice system-modprobe.slice.
[   18.405228] systemd[1]: Created slice system-serial\x2dgetty.slice.
[   18.406325] systemd[1]: Created slice User and Session Slice.
[   18.406769] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   18.407747] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   18.408225] systemd[1]: Reached target User and Group Name Lookups.
[   18.408303] systemd[1]: Reached target Remote Encrypted Volumes.
[   18.408359] systemd[1]: Reached target Remote File Systems.
[   18.408412] systemd[1]: Reached target Slices.
[   18.408486] systemd[1]: Reached target Swap.
[   18.409309] systemd[1]: Listening on fsck to fsckd communication Socket.
[   18.409586] systemd[1]: Listening on initctl Compatibility Named Pipe.
[   18.410307] systemd[1]: Listening on Journal Audit Socket.
[   18.410776] systemd[1]: Listening on Journal Socket (/dev/log).
[   18.411427] systemd[1]: Listening on Journal Socket.
[   18.412375] systemd[1]: Listening on Network Service Netlink Socket.
[   18.414032] systemd[1]: Listening on udev Control Socket.
[   18.414950] systemd[1]: Listening on udev Kernel Socket.
[   18.419661] systemd[1]: Mounting Huge Pages File System...
[   18.425330] systemd[1]: Mounting POSIX Message Queue File System...
[   18.431586] systemd[1]: Mounting Kernel Debug File System...
[   18.438785] systemd[1]: Mounting Kernel Trace File System...
[   18.447137] systemd[1]: Starting Wait for network to be configured by ifupdown...
[   18.454530] systemd[1]: Starting Create list of static device nodes for the current kernel...
[   18.463502] systemd[1]: Starting Load Kernel Module configfs...
[   18.471411] systemd[1]: Starting Load Kernel Module drm...
[   18.480891] systemd[1]: Starting Load Kernel Module fuse...
[   18.488366] systemd[1]: Starting Enable Rockchip camera engine rkaiq...
[   18.491645] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[   18.491977] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[   18.505033] systemd[1]: Starting Journal Service...
[   18.509773] fuse: init (API version 7.32)
[   18.515346] systemd[1]: Starting Load Kernel Modules...
[   18.524410] systemd[1]: Starting Remount Root and Kernel File Systems...
[   18.528992] systemd[1]: Starting Coldplug All udev Devices...
[   18.537326] systemd[1]: Mounted Huge Pages File System.
[   18.541201] systemd[1]: Mounted POSIX Message Queue File System.
[   18.542786] systemd[1]: Mounted Kernel Debug File System.
[   18.545041] systemd[1]: Mounted Kernel Trace File System.
[   18.548462] systemd[1]: Finished Wait for network to be configured by ifupdown.
[   18.552503] systemd[1]: Finished Create list of static device nodes for the current kernel.
[   18.555200] systemd[1]: [email protected]: Succeeded.
[   18.556385] systemd[1]: Finished Load Kernel Module configfs.
[   18.558018] systemd[1]: [email protected]: Succeeded.
[   18.559285] systemd[1]: Finished Load Kernel Module drm.
[   18.560980] systemd[1]: [email protected]: Succeeded.
[   18.562280] systemd[1]: Finished Load Kernel Module fuse.
[   18.563718] systemd[1]: Started Enable Rockchip camera engine rkaiq.
[   18.570020] systemd[1]: Mounting FUSE Control File System...
[   18.583490] EXT4-fs (mmcblk0p3): re-mounted. Opts: (null)
[   18.586677] systemd[1]: Mounting Kernel Configuration File System...
[   18.592201] systemd[1]: Finished Load Kernel Modules.
[   18.594600] systemd[1]: Finished Remount Root and Kernel File Systems.
[   18.595996] systemd[1]: Mounted FUSE Control File System.
[   18.599307] systemd[1]: Mounted Kernel Configuration File System.
[   18.603421] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[   18.603638] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[   18.608053] systemd[1]: Starting Load/Save Random Seed...
[   18.612992] systemd[1]: Starting Apply Kernel Variables...
[   18.617260] systemd[1]: Starting Create System Users...
[   18.659964] systemd[1]: Finished Load/Save Random Seed.
[   18.661166] systemd[1]: Reached target First Boot Complete.
[   18.673322] systemd[1]: Finished Apply Kernel Variables.
[   18.682001] systemd[1]: rkaiq_3A.service: Succeeded.
[   18.705862] systemd[1]: Finished Create System Users.
[   18.710173] systemd[1]: Starting Create Static Device Nodes in /dev...
[   18.757187] systemd[1]: Finished Create Static Device Nodes in /dev.
[   18.758130] systemd[1]: Reached target Local File Systems (Pre).
[   18.759617] systemd[1]: Set up automount boot-efi.automount.
[   18.761010] systemd[1]: Set up automount config.automount.
[   18.761156] systemd[1]: Reached target Local File Systems.
[   18.765738] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
[   18.766017] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
[   18.771318] systemd[1]: Starting Commit a transient machine-id on disk...
[   18.779546] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[   18.810010] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
[   18.811692] systemd[1]: Received SIGRTMIN+20 from PID 218 (plymouthd).
[   18.865156] systemd[1]: etc-machine\x2did.mount: Succeeded.
[   18.871151] systemd[1]: Finished Commit a transient machine-id on disk.
[   18.969977] systemd[1]: Started Rule-based Manager for Device Events and Files.
[   18.986998] systemd[1]: Starting Network Service...
[   18.988368] systemd[1]: Started Journal Service.
[   19.048730] systemd-journald[321]: Received client request to flush runtime journal.
[   20.095476] zram: Added device: zram0
[   20.325349] zram0: detected capacity change from 0 to 4034211840
[   20.468048] Adding 3939656k swap on /dev/zram0.  Priority:100 extents:1 across:3939656k SS
[   20.526131] using random self ethernet address
[   20.526146] using random host ethernet address
[   20.550587] file system registered
[   20.624538] usb0: HOST MAC 62:25:98:7c:b2:67
[   20.624784] usb0: MAC 9a:f0:eb:21:10:10
[   20.636601] udc fcc00000.dwc3: failed to start radxa-otgutils: -19
[   20.656635] read descriptors
[   20.656652] read strings
[   21.219039] Intel(R) Wireless WiFi driver for Linux
[   21.220044] iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
[   21.240863] iwlwifi 0000:01:00.0: Found debug destination: EXTERNAL_DRAM
[   21.240880] iwlwifi 0000:01:00.0: Found debug configuration: 0
[   21.242355] iwlwifi 0000:01:00.0: loaded firmware version 29.4063824552.0 7265D-29.ucode op_mode iwlmvm
[   21.317586] iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 7265, REV=0x210
[   21.393566] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[   21.395709] iwlwifi 0000:01:00.0: Allocated 0x00400000 bytes for firmware monitor.
[   21.402568] iwlwifi 0000:01:00.0: base HW address: c8:21:58:b7:a7:b9
[   21.486781] rk817-codec rk817-codec: DMA mask not set
[   21.521409] rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
[   21.523813] dwmac4: Master AXI performs any burst length
[   21.523844] rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
[   21.523878] rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[   21.524447] rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
[   21.528152] rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii link mode
[   21.555596] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[   21.557476] thermal thermal_zone2: power_allocator: sustainable_power will be estimated
[   21.557589] thermal thermal_zone2: failed to read out thermal zone (-61)
[   21.704742] rk_gmac-dwmac fe2a0000.ethernet eth1: PHY [stmmac-0:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
[   21.706985] dwmac4: Master AXI performs any burst length
[   21.707021] rk_gmac-dwmac fe2a0000.ethernet eth1: No Safety Features support found
[   21.707054] rk_gmac-dwmac fe2a0000.ethernet eth1: IEEE 1588-2008 Advanced Timestamp supported
[   21.707436] rk_gmac-dwmac fe2a0000.ethernet eth1: registered PTP clock
[   21.708150] rk_gmac-dwmac fe2a0000.ethernet eth1: configuring for phy/rgmii link mode
[   22.107778] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up gpu-supply from device tree
[   22.107822] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up gpu-supply property in node /power-management@fdd90000/power-controller failed
[   22.108025] mali fde60000.gpu: Kernel DDK version g17p0-01eac0
[   22.108179] mali fde60000.gpu: Looking up mali-supply from device tree
[   22.108505] mali fde60000.gpu: Looking up mem-supply from device tree
[   22.108536] mali fde60000.gpu: Looking up mem-supply property in node /gpu@fde60000 failed
[   22.108789] mali fde60000.gpu: Looking up mali-supply from device tree
[   22.108840] vdd_gpu: could not add device link fde60000.gpu: -EEXIST
[   22.108845] vdd_gpu: Failed to create debugfs directory
[   22.109111] mali fde60000.gpu: leakage=8
[   22.109156] mali fde60000.gpu: pvtm = 88430, from nvmem
[   22.109171] mali fde60000.gpu: pvtm-volt-sel=2
[   22.110196] mali fde60000.gpu: avs=0
[   22.110251] W : [File] : drivers/gpu/arm/bifrost/platform/rk/mali_kbase_config_rk.c; [Line] : 143; [Func] : kbase_platform_rk_init(); power-off-delay-ms not available.
[   22.113010] mali fde60000.gpu: GPU identified as 0x2 arch 7.4.0 r1p0 status 0
[   22.113111] mali fde60000.gpu: No priority control manager is configured
[   22.125894] mali fde60000.gpu: No memory group manager is configured
[   22.128030] mali fde60000.gpu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[   22.131413] pwm-fan pwm-fan: Looking up fan-supply from device tree
[   22.131440] pwm-fan pwm-fan: Looking up fan-supply property in node /pwm-fan failed
[   22.133679] rk-multicodecs rk809-sound: Failed to get ADC channel
[   22.133953] rk-multicodecs rk809-sound: ASoC: Property 'rockchip,audio-routing' does not exist or its length is not even
[   22.137370] rk-multicodecs rk809-sound: Audio routing invalid/unspecified
[   22.138415] mali fde60000.gpu: Probed as mali0
[   22.144110] FAT-fs (mmcblk0p2): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[   22.147432] FAT-fs (mmcblk0p1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[   22.148163] rk817-codec rk817-codec: rk817_probe: chip_name:0x80, chip_ver:0x95
[   22.192340] Bluetooth: Core ver 2.22
[   22.192488] NET: Registered protocol family 31
[   22.192494] Bluetooth: HCI device and connection manager initialized
[   22.192521] Bluetooth: HCI socket layer initialized
[   22.192531] Bluetooth: L2CAP socket layer initialized
[   22.192563] Bluetooth: SCO socket layer initialized
[   22.193408] input: rockchip-rk809 Headset as /devices/platform/rk809-sound/sound/card0/input6
[   22.198367] input: rockchip-hdmi0 rockchip-hdmi0 as /devices/platform/hdmi0-sound/sound/card1/input7
[   22.275987] Bluetooth: HCI UART driver ver 2.3
[   22.276009] Bluetooth: HCI UART protocol H4 registered
[   22.276013] Bluetooth: HCI UART protocol ATH3K registered
[   22.276154] Bluetooth: HCI UART protocol Three-wire (H5) registered
[   22.276613] Bluetooth: HCI UART protocol Intel registered
[   22.277173] Bluetooth: HCI UART protocol Broadcom registered
[   22.277226] Bluetooth: HCI UART protocol QCA registered
[   22.280121] hci_uart_bcm serial0-0: Looking up vbat-supply from device tree
[   22.280470] hci_uart_bcm serial0-0: Looking up vddio-supply from device tree
[   22.398355] of_dma_request_slave_channel: dma-names property of node '/serial@fe6c0000' missing or empty
[   22.402122] dw-apb-uart fe6c0000.serial: failed to request DMA, use interrupt mode
[   22.758982] usb 1-1.4: new full-speed USB device number 4 using ehci-platform
[   22.979111] usb 1-1.4: New USB device found, idVendor=8087, idProduct=0a2a, bcdDevice= 0.01
[   22.979128] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   23.180005] iwlwifi 0000:01:00.0 wlp1s0: renamed from wlan0
[   23.334864] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[   23.418097] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[   23.420228] iwlwifi 0000:01:00.0: FW already configured (0) - re-configuring
[   23.540102] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   23.540124] Bluetooth: BNEP filters: protocol multicast
[   23.540163] Bluetooth: BNEP socket layer initialized
[   23.638147] usbcore: registered new interface driver btusb
[   23.648911] Bluetooth: hci1: read Intel version: 370810011003110e00
[   23.651800] Bluetooth: hci1: Intel Bluetooth firmware file: intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq
[   23.962876] Bluetooth: hci1: unexpected event for opcode 0xfc2f
[   23.980906] Bluetooth: hci1: Intel BT fw patch 0x32 completed & activated
[   24.067854] NET: Registered protocol family 38
[   24.621362] Bluetooth: hci0: command 0xfc18 tx timeout
[   25.638255] rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[   25.638350] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   25.798048] rk_gmac-dwmac fe2a0000.ethernet eth1: Link is Up - 1Gbps/Full - flow control rx/tx
[   25.798165] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[   25.926347] EXT4-fs (mmcblk0p3): resizing filesystem from 1069920 to 7548923 blocks
[   26.276878] EXT4-fs (mmcblk0p3): resized filesystem to 7548923
[   27.719628] ttyFIQ ttyFIQ0: tty_port_close_start: tty->count = 1 port count = 2
[   31.957775] Bluetooth: RFCOMM TTY layer initialized
[   31.957811] Bluetooth: RFCOMM socket layer initialized
[   31.957865] Bluetooth: RFCOMM ver 1.11
[   32.728051] Bluetooth: hci0: BCM: failed to write update baudrate (-110)
[   32.728132] Bluetooth: hci0: Failed to set baudrate
[   34.861509] Bluetooth: hci0: command 0x0c03 tx timeout
[   42.754746] Bluetooth: hci0: BCM: Reset failed (-110)
[  191.390933] wlp1s0: authenticate with 3a:07:16:e3:53:80
[  191.396264] wlp1s0: send auth to 3a:07:16:e3:53:80 (try 1/3)
[  191.425839] wlp1s0: authenticated
[  191.429205] wlp1s0: associate with 3a:07:16:e3:53:80 (try 1/3)
[  191.435002] wlp1s0: RX AssocResp from 3a:07:16:e3:53:80 (capab=0x1111 status=0 aid=3)
[  191.437516] wlp1s0: associated
[  191.496477] IPv6: ADDRCONF(NETDEV_CHANGE): wlp1s0: link becomes ready
[  191.534979] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 3a:07:16:e3:53:80
[  772.820998] rockchip-vop2 fe040000.vop: [drm:vop2_crtc_atomic_disable] Crtc atomic disable vp0
[ 2620.706093] rockchip-vop2 fe040000.vop: [drm:vop2_crtc_atomic_enable] Update mode to 1920x1080p60, type: 11(if:800) for vp0 dclk: 148500000
rock@rock-3b:~$ ~

journalctl :

rock@rock-3b:~$ sudo journalctl | grep mac
Jun 18 14:55:54 rock-3b kernel: dma-pl330 fe530000.dmac: Loaded driver for PL330 DMAC-241330
Jun 18 14:55:54 rock-3b kernel: dma-pl330 fe530000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Jun 18 14:55:54 rock-3b kernel: dma-pl330 fe550000.dmac: Loaded driver for PL330 DMAC-241330
Jun 18 14:55:54 rock-3b kernel: dma-pl330 fe550000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply from device tree
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply property in node /ethernet@fe010000 failed
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: no regulator found
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: clock input or output? (output).
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TX delay(0x47).
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: RX delay(0x28).
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: init for RGMII
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TSO supported
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Using 32 bits DMA width
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply from device tree
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply property in node /ethernet@fe2a0000 failed
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: no regulator found
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (output).
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TX delay(0x36).
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: RX delay(0x2d).
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: init for RGMII
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO supported
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Using 32 bits DMA width
Jun 18 14:55:55 rock-3b systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Dec 31 01:26:39 rock-3b kernel: dma-pl330 fe530000.dmac: Loaded driver for PL330 DMAC-241330
Dec 31 01:26:39 rock-3b kernel: dma-pl330 fe530000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Dec 31 01:26:39 rock-3b kernel: dma-pl330 fe550000.dmac: Loaded driver for PL330 DMAC-241330
Dec 31 01:26:39 rock-3b kernel: dma-pl330 fe550000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply from device tree
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply property in node /ethernet@fe010000 failed
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: no regulator found
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: clock input or output? (output).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TX delay(0x47).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: RX delay(0x28).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: init for RGMII
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TSO supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Using 32 bits DMA width
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply from device tree
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply property in node /ethernet@fe2a0000 failed
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: no regulator found
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (output).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TX delay(0x36).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: RX delay(0x2d).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: init for RGMII
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Using 32 bits DMA width
Dec 31 01:26:39 rock-3b systemd[1]: Initializing machine ID from random generator.
Dec 31 01:26:39 rock-3b systemd[1]: Starting Commit a transient machine-id on disk...
Dec 31 01:26:39 rock-3b systemd[1]: etc-machine\x2did.mount: Succeeded.
Dec 31 01:26:39 rock-3b systemd[1]: Finished Commit a transient machine-id on disk.
Dec 31 01:26:40 rock-3b NetworkManager[406]: <info>  [1735608400.5912] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-disable-wifi-scan-rand-macaddr.conf, no-mac-addr-change.conf) (etc: 10-dns-resolved.conf, 10-globally-managed-devices.conf)
Dec 31 01:26:41 rock-3b NetworkManager[406]: <info>  [1735608401.8645] device (eth0): driver 'rk_gmac-dwmac' does not support carrier detection.
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 31 01:26:42 rock-3b kernel: dwmac4: Master AXI performs any burst length
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii link mode
Dec 31 01:26:42 rock-3b NetworkManager[406]: <info>  [1735608402.0868] device (eth1): driver 'rk_gmac-dwmac' does not support carrier detection.
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: PHY [stmmac-0:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 31 01:26:42 rock-3b kernel: dwmac4: Master AXI performs any burst length
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: No Safety Features support found
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: IEEE 1588-2008 Advanced Timestamp supported
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: registered PTP clock
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: configuring for phy/rgmii link mode
Dec 31 01:26:46 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 31 01:26:46 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 31 02:00:24 rock-3b NetworkManager[356]: <info>  [1735610424.4820] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-disable-wifi-scan-rand-macaddr.conf, no-mac-addr-change.conf) (etc: 10-dns-resolved.conf, 10-globally-managed-devices.conf)
Dec 31 02:00:25 rock-3b NetworkManager[356]: <info>  [1735610425.7329] device (eth0): driver 'rk_gmac-dwmac' does not support carrier detection.
Dec 31 02:00:25 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 31 02:00:25 rock-3b kernel: dwmac4: Master AXI performs any burst length
Dec 31 02:00:25 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
Dec 31 02:00:25 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
Dec 31 02:00:25 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
Dec 31 02:00:25 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii link mode
Dec 31 02:00:25 rock-3b NetworkManager[356]: <info>  [1735610425.9699] device (eth1): driver 'rk_gmac-dwmac' does not support carrier detection.
Dec 31 02:00:26 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: PHY [stmmac-0:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 31 02:00:26 rock-3b kernel: dwmac4: Master AXI performs any burst length
Dec 31 02:00:26 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: No Safety Features support found
Dec 31 02:00:26 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: IEEE 1588-2008 Advanced Timestamp supported
Dec 31 02:00:26 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: registered PTP clock
Dec 31 02:00:26 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: configuring for phy/rgmii link mode
Dec 31 02:00:29 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 31 02:00:30 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx


@MichaIng
Copy link
Owner

For the second adapter, you could define in a own config, like:

cat << '_EOF_' > /etc/network/interfaces.d/eth1.conf
allow-hotplug eth1
iface eth1 inet static
address 192.168.1.100/24
_EOF_
systemctl daemon-reload
ifup eth1

depending on what you aim to do with it.

@MidG971
Copy link
Author

MidG971 commented Dec 31, 2024

I plan to either use it as a WAN or LAN port for a firewall, or with eth0 as a part of a etherchannel / LACP port, not quite sure yet...

@MichaIng
Copy link
Owner

Yeah, above just an example. dietpi-config will always setup eth0 as main Interface with default gateway etc, so of course you can also define both by yourself, and comment the lines in /etc/network/interfaces. Aside of that, it is normal that an interface is even physically down (no carrier signal), as long as it has not been brought up if ifup (resp. /etc/network/interfaces/*.d/ config) or any other network stack.

@MidG971
Copy link
Author

MidG971 commented Dec 31, 2024

I tried your solution, the adapter won't show up, only eth0 & the wlan are available

@MidG971
Copy link
Author

MidG971 commented Dec 31, 2024

after a check, I discovered that :

root@DietPi:/boot# cat dietpiEnv.txt
rootdev=UUID=463087c8-1d8f-4075-b7b1-4b86c641e99e
rootfstype=ext4
# The init system logs to the console defined last.
consoleargs=console=ttyS2,1500000 console=tty1
usbstoragequirks=
extraargs=net.ifnames=0
docker_optimizations=off
overlay_path=rockchip
overlay_prefix=rockchip
overlays=
user_overlays=
fdtfile=rockchip/rk3568-rock-3a.dtb

I manually modified the last line to fdtfile=rockchip/rk3568-rockb-3.dtb , now I've got my two NICs present, but only one up, despite both cables plugged. I tried to use nmcli to turn on the NICs to no avail :

root@DietPi:/boot# dmesg | grep Radxa
[    0.000000] Machine model: Radxa ROCK 3B
root@DietPi:/boot# dmesg | grep gmac
[    3.589482] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[    3.590091] rk_gmac-dwmac fe010000.ethernet: IRQ sfty not found
[    3.594574] rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
[    3.600316] rk_gmac-dwmac fe010000.ethernet: Can not read property: tx_delay.
[    3.601306] rk_gmac-dwmac fe010000.ethernet: set tx_delay to 0x30
[    3.601890] rk_gmac-dwmac fe010000.ethernet: Can not read property: rx_delay.
[    3.602549] rk_gmac-dwmac fe010000.ethernet: set rx_delay to 0x10
[    3.603140] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[    3.603932] rk_gmac-dwmac fe010000.ethernet: clock input from PHY
[    3.609801] rk_gmac-dwmac fe010000.ethernet: init for RGMII_ID
[    3.612478] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    3.613173] rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
[    3.613656] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[    3.615244] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[    3.615966] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[    3.616776] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[    3.617529] rk_gmac-dwmac fe010000.ethernet: TSO supported
[    3.618051] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    3.618784] rk_gmac-dwmac fe010000.ethernet: Enabled RFS Flow TC (entries=10)
[    3.619436] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[    3.620161] rk_gmac-dwmac fe010000.ethernet: Using 32/32 bits DMA host/device width
[    3.769648] rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
[    3.770263] rk_gmac-dwmac fe2a0000.ethernet: IRQ sfty not found
[    3.772409] rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (input).
[    3.773093] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: tx_delay.
[    3.773752] rk_gmac-dwmac fe2a0000.ethernet: set tx_delay to 0x30
[    3.774318] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: rx_delay.
[    3.774969] rk_gmac-dwmac fe2a0000.ethernet: set rx_delay to 0x10
[    3.775546] rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
[    3.776759] rk_gmac-dwmac fe2a0000.ethernet: clock input from PHY
[    3.782372] rk_gmac-dwmac fe2a0000.ethernet: init for RGMII_ID
[    3.787814] rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    3.788644] rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
[    3.789150] rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
[    3.789894] rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
[    3.790639] rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
[    3.791333] rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
[    3.792185] rk_gmac-dwmac fe2a0000.ethernet: TSO supported
[    3.792750] rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    3.793547] rk_gmac-dwmac fe2a0000.ethernet: Enabled RFS Flow TC (entries=10)
[    3.794248] rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
[    3.794819] rk_gmac-dwmac fe2a0000.ethernet: Using 32/32 bits DMA host/device width
[   10.561939] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[   10.563337] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[   10.573630] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[   10.660322] rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
[   10.670470] rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
[   10.670510] rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[   10.670908] rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
[   10.671406] rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii-id link mode
[   14.797460] rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx

@MichaIng
Copy link
Owner

MichaIng commented Jan 1, 2025

Great. So we can add support for the SBC in general, using ROCK 3A bootloader and adjusting the device tree only. Of course a ROCK 3B bootloader would be better, for network boot capabilities, but a rare use case.

@MidG971
Copy link
Author

MidG971 commented Jan 2, 2025

Is there some benchmark or or test or procedure that I can do, for you to validate the support of the board ?

@MichaIng
Copy link
Owner

MichaIng commented Jan 2, 2025

Not really needed. If it boots and those hardware features which differ from the ROCK 3A work, then all is good.

@MichaIng MichaIng added this to the v9.10 milestone Jan 2, 2025
@MichaIng MichaIng changed the title Radxa ROCK 3B Failed Install Image | Radxa ROCK 3B Jan 2, 2025
@MidG971
Copy link
Author

MidG971 commented Jan 2, 2025

So it's 99.9% OK as I can't use both NICs at the same time yet...

@MichaIng
Copy link
Owner

MichaIng commented Jan 2, 2025

But both do now show up in ip l? Then it is all perfectly as expected, and you can configure the second NIC manually, as explained above, or use another network stack.

@MidG971
Copy link
Author

MidG971 commented Jan 2, 2025

Yes they do. I tried the method you provided / tried with nmcli / mntui , they do both appear when I use ip a but if I unplug eth0 (the one that works perfectly) to leave only eth1 plugged I'm only left with the wifi.

Those are when only eth1 is plugged :

root@DietPi:~# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
    link/ether e2:e1:76:03:12:f8 brd ff:ff:ff:ff:ff:ff
3: eth1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
    link/ether e2:e1:76:03:12:f9 brd ff:ff:ff:ff:ff:ff
4: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether c8:21:58:b7:a7:b9 brd ff:ff:ff:ff:ff:ff
    inet 192.168.75.103/24 brd 192.168.75.255 scope global dynamic noprefixroute wlan0
       valid_lft 27105sec preferred_lft 27105sec
    inet6 fe80::761c:70db:16db:d051/64 scope link noprefixroute
       valid_lft forever preferred_lft forever
root@DietPi:~# nmcli device
DEVICE         TYPE      STATE                   CONNECTION
wlan0          wifi      connected               morioh
lo             loopback  connected (externally)  lo
eth1           ethernet  disconnected            --
p2p-dev-wlan0  wifi-p2p  disconnected            --
eth0           ethernet  unavailable             --
root@DietPi:~#

Also when I try to activate eth1 with nmtui it fails

@MichaIng
Copy link
Owner

MichaIng commented Jan 2, 2025

How did you try to configure eth1? And what are the error messages?

@MidG971
Copy link
Author

MidG971 commented Jan 2, 2025

I used your method
root@DietPi:~# cat /etc/network/interfaces.d/eth1.conf allow-hotplug eth1 iface eth1 inet dhcp address 192.168.1.100/24
and also :

root@DietPi:~# cat /etc/network/interfaces
auto lo
iface lo inet loopback

`
Below the error message in nmtui

Could not activate connection:      │     │
                                                                    │ │ │ Activation failed: The device could │     │
                                                                    │ │ │ not be readied for configuration  

dmesg :

[ 4879.022185] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 4879.023671] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 4879.052548] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 4879.053725] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 4879.083293] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 4879.084667] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 4879.110227] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 4879.111272] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5179.025176] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5179.026180] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5179.052636] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5179.053727] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5179.078169] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5179.079219] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5179.103453] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5179.104593] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5479.026269] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5479.027284] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5479.051248] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5479.052357] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5479.076448] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5479.077491] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5479.102141] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5479.103186] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5779.019962] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5779.021480] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5779.049341] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5779.050412] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5779.080915] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5779.082346] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 5779.106237] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 5779.107239] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6079.027204] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6079.028218] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6079.053214] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6079.054293] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6079.080016] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6079.081153] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6079.106868] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6079.107866] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6379.021878] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6379.022900] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6379.047653] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6379.048823] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6379.072991] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6379.074035] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6379.097699] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6379.098752] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6679.025378] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6679.026390] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6679.053198] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6679.054240] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6679.079987] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6679.081172] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6679.105529] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6679.106570] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6979.025483] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6979.026497] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6979.050483] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6979.051518] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6979.075868] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6979.077020] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 6979.101091] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 6979.102139] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 7279.021280] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 7279.022446] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 7279.054352] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 7279.055375] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 7279.079947] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 7279.081063] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 7279.105038] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 7279.106096] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[ 7393.338838] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 7393.339921] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)

journalctl

root@DietPi:~# journalctl | grep eth1
Jan 02 10:28:32 DietPi NetworkManager[414]: <info>  [1735810112.8254] manager: (eth1): new Ethernet device (/org/freedesktop/NetworkManager/Devices/3)
Jan 02 10:28:32 DietPi NetworkManager[414]: <info>  [1735810112.8278] device (eth1): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jan 02 10:28:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 10:28:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.2995] device (eth1): state change: unavailable -> disconnected (reason 'user-requested', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3028] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3037] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3052] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:01:22 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3106] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <warn>  [1735815682.3120] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3127] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3319] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3324] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3339] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:01:22 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3389] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <warn>  [1735815682.3405] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3413] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3603] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3607] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3618] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:01:22 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3666] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <warn>  [1735815682.3680] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3689] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3887] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3892] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3907] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:01:22 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3956] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:01:22 DietPi NetworkManager[414]: <warn>  [1735815682.3972] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:01:22 DietPi NetworkManager[414]: <info>  [1735815682.3980] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.3708] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.3714] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.3729] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:01:37 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.3805] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <warn>  [1735815697.3819] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.3832] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4024] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4028] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4040] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:01:37 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4087] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <warn>  [1735815697.4106] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4115] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4320] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4326] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4340] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:01:37 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4398] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <warn>  [1735815697.4414] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4428] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4615] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4619] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4631] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:01:37 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4677] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:01:37 DietPi NetworkManager[414]: <warn>  [1735815697.4692] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:01:37 DietPi NetworkManager[414]: <info>  [1735815697.4700] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:45 DietPi NetworkManager[414]: <info>  [1735815705.1395] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:01:45 DietPi NetworkManager[414]: <info>  [1735815705.1405] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:45 DietPi NetworkManager[414]: <info>  [1735815705.1419] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:01:45 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:01:45 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:01:45 DietPi NetworkManager[414]: <info>  [1735815705.1471] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:01:45 DietPi NetworkManager[414]: <warn>  [1735815705.1488] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:01:45 DietPi NetworkManager[414]: <info>  [1735815705.1500] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.5806] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.5811] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.5827] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.5879] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <warn>  [1735815996.5900] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.5909] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6088] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6092] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6104] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6144] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <warn>  [1735815996.6157] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6165] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6346] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6349] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6360] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6397] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <warn>  [1735815996.6410] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6417] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6603] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6607] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6618] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6656] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:06:36 DietPi NetworkManager[414]: <warn>  [1735815996.6672] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:06:36 DietPi NetworkManager[414]: <info>  [1735815996.6680] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.5799] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.5806] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.5829] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.5887] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <warn>  [1735816296.5899] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.5907] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6116] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6121] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6135] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6175] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:11:36 DietPi NetworkManager[414]: <warn>  [1735816296.6194] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6202] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6386] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6391] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6401] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6438] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <warn>  [1735816296.6451] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6457] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6638] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6642] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6653] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6691] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:11:36 DietPi NetworkManager[414]: <warn>  [1735816296.6706] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:11:36 DietPi NetworkManager[414]: <info>  [1735816296.6713] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.5815] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.5828] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.5868] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.5906] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <warn>  [1735816596.5921] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.5928] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6104] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6108] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6118] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6156] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <warn>  [1735816596.6170] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6177] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6358] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6362] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6372] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6419] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:16:36 DietPi NetworkManager[414]: <warn>  [1735816596.6442] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6455] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6680] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6685] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6699] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6739] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:16:36 DietPi NetworkManager[414]: <warn>  [1735816596.6757] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:16:36 DietPi NetworkManager[414]: <info>  [1735816596.6766] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.5813] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.5826] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.5868] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.5906] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <warn>  [1735816896.5920] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.5927] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6107] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6111] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6121] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6160] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <warn>  [1735816896.6173] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6180] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6371] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6379] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6393] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6430] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <warn>  [1735816896.6444] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6451] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6635] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6639] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6649] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6687] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:21:36 DietPi NetworkManager[414]: <warn>  [1735816896.6700] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:21:36 DietPi NetworkManager[414]: <info>  [1735816896.6708] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.5796] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.5808] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.5848] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.5886] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <warn>  [1735817196.5899] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.5906] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6083] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6086] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6097] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6135] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:26:36 DietPi NetworkManager[414]: <warn>  [1735817196.6152] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6161] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6339] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6343] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6354] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6392] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <warn>  [1735817196.6406] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6413] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6595] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6599] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6610] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6648] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:26:36 DietPi NetworkManager[414]: <warn>  [1735817196.6661] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:26:36 DietPi NetworkManager[414]: <info>  [1735817196.6671] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.5813] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.5831] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.5865] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:31:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.5903] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <warn>  [1735817496.5917] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.5925] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6106] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6109] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6120] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:31:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6158] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <warn>  [1735817496.6171] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6178] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6361] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6365] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6378] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6418] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:31:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:31:36 DietPi NetworkManager[414]: <warn>  [1735817496.6434] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6442] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6620] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6624] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6635] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:31:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6674] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:31:36 DietPi NetworkManager[414]: <warn>  [1735817496.6688] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:31:36 DietPi NetworkManager[414]: <info>  [1735817496.6695] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.5817] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.5830] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.5869] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:36:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.5908] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <warn>  [1735817796.5921] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.5928] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6109] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6112] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6123] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:36:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6162] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <warn>  [1735817796.6175] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6183] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6359] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6363] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6374] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6413] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:36:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:36:36 DietPi NetworkManager[414]: <warn>  [1735817796.6427] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6435] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6621] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6626] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6640] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:36:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6682] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:36:36 DietPi NetworkManager[414]: <warn>  [1735817796.6697] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:36:36 DietPi NetworkManager[414]: <info>  [1735817796.6705] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.5800] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.5805] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.5821] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:41:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.5874] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <warn>  [1735818096.5892] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.5902] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6118] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6121] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6131] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6174] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:41:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:41:36 DietPi NetworkManager[414]: <warn>  [1735818096.6196] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6206] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6415] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6419] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6435] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:41:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6483] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <warn>  [1735818096.6500] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6509] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6694] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6697] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6708] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:41:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6748] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:41:36 DietPi NetworkManager[414]: <warn>  [1735818096.6762] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:41:36 DietPi NetworkManager[414]: <info>  [1735818096.6770] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.5806] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.5815] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.5844] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.5895] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:46:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:46:36 DietPi NetworkManager[414]: <warn>  [1735818396.5910] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.5918] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6112] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6117] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6131] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6172] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:46:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:46:36 DietPi NetworkManager[414]: <warn>  [1735818396.6187] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6196] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6373] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6377] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6388] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:46:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6427] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <warn>  [1735818396.6442] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6449] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6626] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6630] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6641] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:46:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6680] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:46:36 DietPi NetworkManager[414]: <warn>  [1735818396.6693] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:46:36 DietPi NetworkManager[414]: <info>  [1735818396.6700] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.5815] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.5829] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.5869] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:51:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.5907] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <warn>  [1735818696.5921] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.5929] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6105] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6108] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6119] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:51:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6157] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <warn>  [1735818696.6171] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6178] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6357] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6360] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6371] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6409] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:51:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:51:36 DietPi NetworkManager[414]: <warn>  [1735818696.6423] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6431] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6613] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6616] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6627] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:51:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6666] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:51:36 DietPi NetworkManager[414]: <warn>  [1735818696.6681] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:51:36 DietPi NetworkManager[414]: <info>  [1735818696.6689] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.5772] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.5779] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.5799] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:56:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.5852] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <warn>  [1735818996.5872] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.5882] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6075] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6081] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6095] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6138] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:56:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:56:36 DietPi NetworkManager[414]: <warn>  [1735818996.6155] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6163] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6401] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6405] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6415] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6458] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:56:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:56:36 DietPi NetworkManager[414]: <warn>  [1735818996.6473] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6480] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6655] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6659] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6669] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 12:56:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6707] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 12:56:36 DietPi NetworkManager[414]: <warn>  [1735818996.6721] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 12:56:36 DietPi NetworkManager[414]: <info>  [1735818996.6728] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.5816] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.5829] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.5872] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:01:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.5917] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <warn>  [1735819296.5929] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.5936] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6120] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6124] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6137] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6177] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:01:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:01:36 DietPi NetworkManager[414]: <warn>  [1735819296.6196] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6206] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6391] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6394] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6406] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:01:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6446] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <warn>  [1735819296.6460] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6468] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6656] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6660] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6673] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:01:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6713] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:01:36 DietPi NetworkManager[414]: <warn>  [1735819296.6726] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:01:36 DietPi NetworkManager[414]: <info>  [1735819296.6734] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.5770] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.5778] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.5808] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.5863] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <warn>  [1735819596.5878] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.5885] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6067] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6071] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6083] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6123] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <warn>  [1735819596.6136] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6145] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6322] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6326] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6336] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6374] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:06:36 DietPi NetworkManager[414]: <warn>  [1735819596.6389] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6397] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6569] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6573] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6583] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:06:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6621] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:06:36 DietPi NetworkManager[414]: <warn>  [1735819596.6637] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:06:36 DietPi NetworkManager[414]: <info>  [1735819596.6645] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.5804] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.5813] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.5843] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.5898] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:11:36 DietPi NetworkManager[414]: <warn>  [1735819896.5912] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.5920] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6120] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6125] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6138] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6176] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:11:36 DietPi NetworkManager[414]: <warn>  [1735819896.6194] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6202] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6390] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6394] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6405] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6446] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <warn>  [1735819896.6460] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6469] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6647] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6651] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6661] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6700] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:11:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:11:36 DietPi NetworkManager[414]: <warn>  [1735819896.6718] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:11:36 DietPi NetworkManager[414]: <info>  [1735819896.6727] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.5808] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.5820] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.5861] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.5899] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:16:36 DietPi NetworkManager[414]: <warn>  [1735820196.5913] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.5920] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6097] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6100] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6112] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6150] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <warn>  [1735820196.6164] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6171] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6351] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6355] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6365] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6404] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <warn>  [1735820196.6418] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6426] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6603] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6606] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6617] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6655] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:16:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:16:36 DietPi NetworkManager[414]: <warn>  [1735820196.6671] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:16:36 DietPi NetworkManager[414]: <info>  [1735820196.6679] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.5777] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.5790] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.5809] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.5859] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:21:36 DietPi NetworkManager[414]: <warn>  [1735820496.5876] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.5885] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6130] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6134] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6149] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6188] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <warn>  [1735820496.6202] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6209] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6391] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6394] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6406] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6445] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <warn>  [1735820496.6458] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6466] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6642] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6646] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6657] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6695] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:21:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:21:36 DietPi NetworkManager[414]: <warn>  [1735820496.6710] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:21:36 DietPi NetworkManager[414]: <info>  [1735820496.6718] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:23:30 DietPi NetworkManager[414]: <info>  [1735820610.8946] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:23:30 DietPi NetworkManager[414]: <info>  [1735820610.8956] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:23:30 DietPi NetworkManager[414]: <info>  [1735820610.8982] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:23:30 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:23:30 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:23:30 DietPi NetworkManager[414]: <info>  [1735820610.9034] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:23:30 DietPi NetworkManager[414]: <warn>  [1735820610.9050] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:23:30 DietPi NetworkManager[414]: <info>  [1735820610.9064] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.5776] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.5783] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.5799] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.5855] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:26:36 DietPi NetworkManager[414]: <warn>  [1735820796.5872] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.5880] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6075] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6079] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6089] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6129] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:26:36 DietPi NetworkManager[414]: <warn>  [1735820796.6142] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6151] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6330] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6334] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6345] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6384] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <warn>  [1735820796.6399] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6407] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6589] device (eth1): Activation: starting connection 'Wired connection 2' (5286a7e5-6a93-3341-b36d-aaec56898dc6)
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6593] device (eth1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6603] device (eth1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 02 13:26:36 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6642] device (eth1): state change: config -> failed (reason 'config-failed', sys-iface-state: 'managed')
Jan 02 13:26:36 DietPi NetworkManager[414]: <warn>  [1735820796.6656] device (eth1): Activation: failed for connection 'Wired connection 2'
Jan 02 13:26:36 DietPi NetworkManager[414]: <info>  [1735820796.6664] device (eth1): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
root@DietPi:~#

@MidG971
Copy link
Author

MidG971 commented Jan 2, 2025

root@DietPi:~# nmcli connection show Wired\ connection\ 1
connection.id:                          Wired connection 1
connection.uuid:                        416424b2-1093-3eb4-914a-89e0972c4c94
connection.stable-id:                   --
connection.type:                        802-3-ethernet
connection.interface-name:              eth0
connection.autoconnect:                 yes
connection.autoconnect-priority:        -999
connection.autoconnect-retries:         -1 (default)
connection.multi-connect:               0 (default)
connection.auth-retries:                -1
connection.timestamp:                   1735815337
connection.read-only:                   no
connection.permissions:                 --
connection.zone:                        --
connection.master:                      --
connection.slave-type:                  --
connection.autoconnect-slaves:          -1 (default)
connection.secondaries:                 --
connection.gateway-ping-timeout:        0
connection.metered:                     unknown
connection.lldp:                        default
connection.mdns:                        -1 (default)
connection.llmnr:                       -1 (default)
connection.dns-over-tls:                -1 (default)
connection.mptcp-flags:                 0x0 (default)
connection.wait-device-timeout:         -1
connection.wait-activation-delay:       -1
802-3-ethernet.port:                    --
802-3-ethernet.speed:                   0
802-3-ethernet.duplex:                  --
802-3-ethernet.auto-negotiate:          no
802-3-ethernet.mac-address:             --
802-3-ethernet.cloned-mac-address:      --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist:   --
802-3-ethernet.mtu:                     auto
802-3-ethernet.s390-subchannels:        --
802-3-ethernet.s390-nettype:            --
802-3-ethernet.s390-options:            --
802-3-ethernet.wake-on-lan:             default
802-3-ethernet.wake-on-lan-password:    --
802-3-ethernet.accept-all-mac-addresses:-1 (default)
ipv4.method:                            auto
ipv4.dns:                               --
ipv4.dns-search:                        --
ipv4.dns-options:                       --
ipv4.dns-priority:                      0
ipv4.addresses:                         --
ipv4.gateway:                           --
ipv4.routes:                            --
ipv4.route-metric:                      -1
ipv4.route-table:                       0 (unspec)
ipv4.routing-rules:                     --
ipv4.replace-local-rule:                -1 (default)
ipv4.ignore-auto-routes:                no
ipv4.ignore-auto-dns:                   no
ipv4.dhcp-client-id:                    --
ipv4.dhcp-iaid:                         --
ipv4.dhcp-timeout:                      0 (default)
ipv4.dhcp-send-hostname:                yes
ipv4.dhcp-hostname:                     --
ipv4.dhcp-fqdn:                         --
ipv4.dhcp-hostname-flags:               0x0 (none)
ipv4.never-default:                     no
ipv4.may-fail:                          no
ipv4.required-timeout:                  -1 (default)
ipv4.dad-timeout:                       -1 (default)
ipv4.dhcp-vendor-class-identifier:      --
ipv4.link-local:                        0 (default)
ipv4.dhcp-reject-servers:               --
ipv4.auto-route-ext-gw:                 -1 (default)
ipv6.method:                            disabled
ipv6.dns:                               --
ipv6.dns-search:                        --
ipv6.dns-options:                       --
ipv6.dns-priority:                      0
ipv6.addresses:                         --
ipv6.gateway:                           --
ipv6.routes:                            --
ipv6.route-metric:                      -1
ipv6.route-table:                       0 (unspec)
ipv6.routing-rules:                     --
ipv6.replace-local-rule:                -1 (default)
ipv6.ignore-auto-routes:                no
ipv6.ignore-auto-dns:                   no
ipv6.never-default:                     no
ipv6.may-fail:                          yes
ipv6.required-timeout:                  -1 (default)
ipv6.ip6-privacy:                       -1 (unknown)
ipv6.addr-gen-mode:                     default
ipv6.ra-timeout:                        0 (default)
ipv6.mtu:                               auto
ipv6.dhcp-duid:                         --
ipv6.dhcp-iaid:                         --
ipv6.dhcp-timeout:                      0 (default)
ipv6.dhcp-send-hostname:                yes
ipv6.dhcp-hostname:                     --
ipv6.dhcp-hostname-flags:               0x0 (none)
ipv6.auto-route-ext-gw:                 -1 (default)
ipv6.token:                             --
proxy.method:                           none
proxy.browser-only:                     no
proxy.pac-url:                          --
proxy.pac-script:                       --

root@DietPi:~# nmcli connection show Wired\ connection\ 2
connection.id:                          Wired connection 2
connection.uuid:                        5286a7e5-6a93-3341-b36d-aaec56898dc6
connection.stable-id:                   --
connection.type:                        802-3-ethernet
connection.interface-name:              eth1
connection.autoconnect:                 yes
connection.autoconnect-priority:        -999
connection.autoconnect-retries:         -1 (default)
connection.multi-connect:               0 (default)
connection.auth-retries:                -1
connection.timestamp:                   0
connection.read-only:                   no
connection.permissions:                 --
connection.zone:                        --
connection.master:                      --
connection.slave-type:                  --
connection.autoconnect-slaves:          -1 (default)
connection.secondaries:                 --
connection.gateway-ping-timeout:        0
connection.metered:                     unknown
connection.lldp:                        default
connection.mdns:                        -1 (default)
connection.llmnr:                       -1 (default)
connection.dns-over-tls:                -1 (default)
connection.mptcp-flags:                 0x0 (default)
connection.wait-device-timeout:         -1
connection.wait-activation-delay:       -1
802-3-ethernet.port:                    --
802-3-ethernet.speed:                   0
802-3-ethernet.duplex:                  --
802-3-ethernet.auto-negotiate:          no
802-3-ethernet.mac-address:             --
802-3-ethernet.cloned-mac-address:      --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist:   --
802-3-ethernet.mtu:                     auto
802-3-ethernet.s390-subchannels:        --
802-3-ethernet.s390-nettype:            --
802-3-ethernet.s390-options:            --
802-3-ethernet.wake-on-lan:             default
802-3-ethernet.wake-on-lan-password:    --
802-3-ethernet.accept-all-mac-addresses:-1 (default)
ipv4.method:                            auto
ipv4.dns:                               --
ipv4.dns-search:                        --
ipv4.dns-options:                       --
ipv4.dns-priority:                      0
ipv4.addresses:                         --
ipv4.gateway:                           --
ipv4.routes:                            --
ipv4.route-metric:                      -1
ipv4.route-table:                       0 (unspec)
ipv4.routing-rules:                     --
ipv4.replace-local-rule:                -1 (default)
ipv4.ignore-auto-routes:                no
ipv4.ignore-auto-dns:                   no
ipv4.dhcp-client-id:                    --
ipv4.dhcp-iaid:                         --
ipv4.dhcp-timeout:                      0 (default)
ipv4.dhcp-send-hostname:                yes
ipv4.dhcp-hostname:                     --
ipv4.dhcp-fqdn:                         --
ipv4.dhcp-hostname-flags:               0x0 (none)
ipv4.never-default:                     no
ipv4.may-fail:                          no
ipv4.required-timeout:                  -1 (default)
ipv4.dad-timeout:                       -1 (default)
ipv4.dhcp-vendor-class-identifier:      --
ipv4.link-local:                        0 (default)
ipv4.dhcp-reject-servers:               --
ipv4.auto-route-ext-gw:                 -1 (default)
ipv6.method:                            disabled
ipv6.dns:                               --
ipv6.dns-search:                        --
ipv6.dns-options:                       --
ipv6.dns-priority:                      0
ipv6.addresses:                         --
ipv6.gateway:                           --
ipv6.routes:                            --
ipv6.route-metric:                      -1
ipv6.route-table:                       0 (unspec)
ipv6.routing-rules:                     --
ipv6.replace-local-rule:                -1 (default)
ipv6.ignore-auto-routes:                no
ipv6.ignore-auto-dns:                   no
ipv6.never-default:                     no
ipv6.may-fail:                          yes
ipv6.required-timeout:                  -1 (default)
ipv6.ip6-privacy:                       -1 (unknown)
ipv6.addr-gen-mode:                     default
ipv6.ra-timeout:                        0 (default)
ipv6.mtu:                               auto
ipv6.dhcp-duid:                         --
ipv6.dhcp-iaid:                         --
ipv6.dhcp-timeout:                      0 (default)
ipv6.dhcp-send-hostname:                yes
ipv6.dhcp-hostname:                     --
ipv6.dhcp-hostname-flags:               0x0 (none)
ipv6.auto-route-ext-gw:                 -1 (default)
ipv6.token:                             --
proxy.method:                           none
proxy.browser-only:                     no
proxy.pac-url:                          --
proxy.pac-script:                       --


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
External bug 🐞 For bugs which are not caused by DietPi. Image request 💾 ROCK 3B
Projects
None yet
Development

No branches or pull requests

3 participants