This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

J722SXH01EVM: How to output to LVDS during the init script prior to systemd coming up.

Part Number: J722SXH01EVM
Other Parts Discussed in Thread: AB15

Tool/software:

We are wanting to output an image to the screen prior to systemd and psplash to get an image on the screen as soon as the kernel is up.

We have a script that is able to initialize the the kernel modules, like tidss, which allow psplash to come up prior to systemd.

We can also manually run weston prior to psplash to get a screen visible prior to systemd starting weston.

However, these are all printing to the HDMI connector.

Removing the HDMI connector from the device tree doesn't re-route the data to the LVDS connector.

How can we output to the LVDS connector as the primary display output?

  • Hi Evan,

    I would like to check whether this is an issue with setting up LVDS, an issue with the script, or an issue with timing, so I have a couple of questions:

    1. After Linux has fully booted up, can you output anything to the LVDS panel using any application or command line tool? 
    2. After Linux has fully booted up, does running the script to manually run weston get outputted on to the LVDS panel? Or does it only work with the HDMI connector?

    Regards,

    Takuma

  • Hi Takuma,

    1. Yes, the Edge AI gallery is running, and appears on the LVDS screen. However I am not able to run gstreamer applications to it.

    2. Running weston runs on the LVDS screen after systemd is up. Only the LVDS screen has a mouse. The psplash screen stays visible on the HDMI screen. (psplash is using drm mode)

    I also have a configuration that runs the edge ai gallery on the HDMI screen by default, but weston still appears on the LVDS screen.

    kmsprint does not show the LVDS connector in either of these configurations.

    root@j722s:/opt/edgeai-gst-apps# kmsprint
    Connector 0 (40) HDMI-A-1 (connected)
    Encoder 0 (39) NONE
    Crtc 0 (38) 1920x1080@60.00 148.500 1920/88/44/148/+ 1080/4/5/36/+ 60 (60.00) 0x5 0x48
    Plane 0 (31) fb-id: 48 (crtcs: 0) 0,0 1920x1080 -> 0,0 1920x1080 (AR12 AB12 RA12 RG16 BG16 AR15 AB15 AR24 AB24 RA24 BA24 RG24 BG24 AR30 AB30 XR12 XB12 RX12 XR15 XB15 XR24 XB24 RX24 BX24 XR30 XB30 YUYV UYVY NV12)
    FB 48 1920x1080

  • Hi Evan,

    1. Yes, the Edge AI gallery is running, and appears on the LVDS screen. However I am not able to run gstreamer applications to it.

    Then LVDS device tree seems to be good, although strange that GStreamer cannot use it.

    2. Running weston runs on the LVDS screen after systemd is up. Only the LVDS screen has a mouse. The psplash screen stays visible on the HDMI screen. (psplash is using drm mode)

    Then your script looks to be good as well. So I assume issue is with timing of when the script is ran, and that there is some kernel driver that is not initialized yet.

    kmsprint does not show the LVDS connector in either of these configurations.

    That is also very strange... Could you do the following:

    1. Run "ls /dev/dri". Note the card(s) that get printed out
    2. For each card, run kmsprint --device=/dev/dri/cardX. Example: kmsprint --device=/dev/dri/card0

    I consulted internally and it could be that the LVDS interface is on a different DSS (display subsystem) instance, since J722S has 2 display subsystems. This means that HDMI could be on a different card than LVDS, and because kmsprint only prints out interfaces on 1 card, it is not printing out LVDS. The LVDS being on a different card might be a reason for why GStreamer and the weston/psplash is behaving the way you observed.

    Lastly, could you share the boot logs?

    Regards,

    Takuma

  • Hi Takuma,

    This appears to be what's happening!

    root@j722s:/opt/edgeai-gst-apps# ls /dev/dri/
    by-path card0 card1 card2 renderD128

    The LVDS is on the other card:

    root@j722s:/opt/edgeai-gst-apps# kmsprint --device=/dev/dri/card1
    Connector 0 (40) HDMI-A-1 (connected)
    Encoder 0 (39) NONE
    Crtc 0 (38) 1920x1080@60.00 148.500 1920/88/44/148/+ 1080/4/5/36/+ 60 (60.00) 0x5 0x48
    Plane 0 (31) fb-id: 48 (crtcs: 0) 0,0 1920x1080 -> 0,0 1920x1080 (AR12 AB12 RA12 RG16 BG16 AR15 AB15 AR24 AB24 RA24 BA24 RG24 BG24 AR30 AB30 XR12 XB12 RX12 XR15 XB15 XR24 XB24 RX24 BX24 XR30 XB30 YUYV UYVY NV12)
    FB 48 1920x1080
    root@j722s:/opt/edgeai-gst-apps# kmsprint --device=/dev/dri/card2
    Connector 0 (40) LVDS-1 (connected)
    Encoder 0 (39) NONE
    Crtc 0 (38) 1280x800@59.99 71.100 1280/1/158/1/? 800/1/21/1/? 60 (59.99) 0x0 0x48
    Plane 0 (31) fb-id: 48 (crtcs: 0) 0,0 1280x800 -> 0,0 1280x800 (AR12 AB12 RA12 RG16 BG16 AR15 AB15 AR24 AB24 RA24 BA24 RG24 BG24 AR30 AB30 XR12 XB12 RX12 XR15 XB15 XR24 XB24 RX24 BX24 XR30 XB30 YUYV UYVY NV12)
    FB 48 1280x800

    The dmesg output:

    root@j722s:/opt/edgeai-gst-apps# dmesg
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.6.32-ti-gdb8871293143-dirty (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240620) #1 SMP PREEMPT Thu Aug  1 19:10:56 UTC 2024
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments J722S EVM
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] OF: reserved mem: 0x000000009e780000..0x000000009e7fffff (512 KiB) nomap non-reusable tfa@9e780000
    [    0.000000] OF: reserved mem: 0x000000009e800000..0x000000009fffffff (24576 KiB) nomap non-reusable optee@9e800000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a0000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a0000000..0x00000000a00fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a0000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a0100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a0100000..0x00000000a0ffffff (15360 KiB) nomap non-reusable vision-apps-r5f-memory@a0100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a1000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a1000000..0x00000000a10fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a1000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a1100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a1100000..0x00000000a1ffffff (15360 KiB) nomap non-reusable vision-apps-r5f-memory@a1100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a2000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a2000000..0x00000000a20fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a2000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 31 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a2100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a2100000..0x00000000a3ffffff (31744 KiB) nomap non-reusable vision-apps-r5f-memory@a2100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a5000000, size 32 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-rtos-ipc-memory-region@a5000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a5000000..0x00000000a6ffffff (32768 KiB) nomap non-reusable vision-apps-rtos-ipc-memory-region@a5000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 96 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-dma-memory@a7000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a7000000..0x00000000acffffff (98304 KiB) nomap non-reusable vision-apps-dma-memory@a7000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ad000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71-dma-memory@ad000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000ad000000..0x00000000ad0fffff (1024 KiB) nomap non-reusable vision-apps-c71-dma-memory@ad000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ad100000, size 63 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_0-memory@ad100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000ad100000..0x00000000b0ffffff (64512 KiB) nomap non-reusable vision-apps-c71_0-memory@ad100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b1000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-dma-memory@b1000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000b1000000..0x00000000b10fffff (1024 KiB) nomap non-reusable vision-apps-c71_1-dma-memory@b1000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b1100000, size 63 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-memory1b1100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000b1100000..0x00000000b4ffffff (64512 KiB) nomap non-reusable vision-apps-c71_1-memory1b1100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b5000000, size 40 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-lo@b5000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000b5000000..0x00000000b77fffff (40960 KiB) nomap non-reusable vision-apps-core-heap-memory-lo@b5000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000880000000, size 512 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-hi@880000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000880000000..0x000000089fffffff (524288 KiB) nomap non-reusable vision-apps-core-heap-memory-hi@880000000
    [    0.000000] OF: reserved mem: initialized node vision_apps_shared-memories, compatible id dma-heap-carveout
    [    0.000000] OF: reserved mem: 0x0000000900000000..0x000000091fffffff (524288 KiB) map non-reusable vision_apps_shared-memories
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000980000000, size 896 MiB
    [    0.000000] OF: reserved mem: initialized node linux-cma-buffers@980000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x0000000980000000..0x00000009b7ffffff (917504 KiB) map reusable linux-cma-buffers@980000000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   [mem 0x0000000100000000-0x00000009ffffffff]
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x000000009e77ffff]
    [    0.000000]   node   0: [mem 0x000000009e780000-0x00000000a3ffffff]
    [    0.000000]   node   0: [mem 0x00000000a4000000-0x00000000a4ffffff]
    [    0.000000]   node   0: [mem 0x00000000a5000000-0x00000000b77fffff]
    [    0.000000]   node   0: [mem 0x00000000b7800000-0x00000000ffffffff]
    [    0.000000]   node   0: [mem 0x0000000880000000-0x000000089fffffff]
    [    0.000000]   node   0: [mem 0x00000008a0000000-0x00000009ffffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000009ffffffff]
    [    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: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 20 pages/cpu s43176 r8192 d30552 u81920
    [    0.000000] pcpu-alloc: s43176 r8192 d30552 u81920 alloc=20*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: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=/dev/mmcblk0p1 rw rootfstype=ext4 rootwait quiet loglevel=0 init=/sbin/hlio-init.sh
    [    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2064384
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 4.
    [    0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
    [    0.000000] Memory: 5783096K/8388608K available (12160K kernel code, 1262K rwdata, 4068K rodata, 2432K init, 506K bss, 1688008K reserved, 917504K cma-reserved)
    [    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] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @8a0800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x00000008a0040000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000008a0050000
    [    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.000410] Console: colour dummy device 80x25
    [    0.000466] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.000479] pid_max: default: 32768 minimum: 301
    [    0.000560] LSM: initializing lsm=capability,integrity
    [    0.000676] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.000707] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.002443] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
    [    0.002514] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
    [    0.002690] rcu: Hierarchical SRCU implementation.
    [    0.002696] rcu:     Max phase no-delay instances is 1000.
    [    0.002937] Platform MSI: msi-controller@1820000 domain created
    [    0.003252] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.003623] EFI services will not be available.
    [    0.003952] smp: Bringing up secondary CPUs ...
    [    0.004580] Detected VIPT I-cache on CPU1
    [    0.004656] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    [    0.004671] GICv3: CPU1: using allocated LPI pending table @0x00000008a0060000
    [    0.004721] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.005392] Detected VIPT I-cache on CPU2
    [    0.005447] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    [    0.005460] GICv3: CPU2: using allocated LPI pending table @0x00000008a0070000
    [    0.005493] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    [    0.006080] Detected VIPT I-cache on CPU3
    [    0.006132] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    [    0.006145] GICv3: CPU3: using allocated LPI pending table @0x00000008a0080000
    [    0.006177] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    [    0.006256] smp: Brought up 1 node, 4 CPUs
    [    0.006273] SMP: Total of 4 processors activated.
    [    0.006278] CPU features: detected: 32-bit EL0 Support
    [    0.006283] CPU features: detected: CRC32 instructions
    [    0.006343] CPU: All CPU(s) started at EL2
    [    0.006347] alternatives: applying system-wide alternatives
    [    0.007967] devtmpfs: initialized
    [    0.020741] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.020772] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
    [    0.045044] pinctrl core: initialized pinctrl subsystem
    [    0.045573] DMI not present or invalid.
    [    0.046206] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.047121] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
    [    0.047256] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.047370] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.047437] audit: initializing netlink subsys (disabled)
    [    0.047654] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1
    [    0.048073] thermal_sys: Registered thermal governor 'step_wise'
    [    0.048078] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.048156] cpuidle: using governor menu
    [    0.048317] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.048406] ASID allocator initialised with 65536 entries
    [    0.064349] platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/dss@30200000/oldi-txes/oldi@0
    [    0.064639] platform 30220000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    0.067184] platform connector-hdmi: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    0.067951] platform display: Fixed dependency cycle(s) with /bus@f0000/dss@30200000/oldi-txes/oldi@0
    [    0.068467] Modules: 27616 pages in range for non-PLT usage
    [    0.068473] Modules: 519136 pages in range for PLT usage
    [    0.069218] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.069230] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.069235] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.069240] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.069244] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.069248] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.069253] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.069257] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.070610] k3-chipinfo 43000014.chipid: Family:J722S rev:SR1.0 JTAGID[0x0bba002f] Detected
    [    0.071663] iommu: Default domain type: Translated
    [    0.071678] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.071953] SCSI subsystem initialized
    [    0.072110] libata version 3.00 loaded.
    [    0.072337] usbcore: registered new interface driver usbfs
    [    0.072364] usbcore: registered new interface driver hub
    [    0.072395] usbcore: registered new device driver usb
    [    0.072979] pps_core: LinuxPPS API ver. 1 registered
    [    0.072986] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.072999] PTP clock support registered
    [    0.073182] EDAC MC: Ver: 3.0.0
    [    0.073681] scmi_core: SCMI protocol bus registered
    [    0.073955] FPGA manager framework
    [    0.074043] Advanced Linux Sound Architecture Driver Initialized.
    [    0.074939] vgaarb: loaded
    [    0.075268] clocksource: Switched to clocksource arch_sys_counter
    [    0.075511] VFS: Disk quotas dquot_6.6.0
    [    0.075537] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.081673] Carveout Heap: Exported 512 MiB at 0x0000000900000000
    [    0.081785] NET: Registered PF_INET protocol family
    [    0.082071] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.087316] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
    [    0.087438] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.087460] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.087865] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
    [    0.089666] TCP: Hash tables configured (established 65536 bind 65536)
    [    0.089817] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.089973] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.090273] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.090736] RPC: Registered named UNIX socket transport module.
    [    0.090747] RPC: Registered udp transport module.
    [    0.090752] RPC: Registered tcp transport module.
    [    0.090755] RPC: Registered tcp-with-tls transport module.
    [    0.090759] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.090766] NET: Registered PF_XDP protocol family
    [    0.090788] PCI: CLS 0 bytes, default 64
    [    0.092115] Initialise system trusted keyrings
    [    0.092344] workingset: timestamp_bits=46 max_order=21 bucket_order=0
    [    0.092653] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.092899] NFS: Registering the id_resolver key type
    [    0.092929] Key type id_resolver registered
    [    0.092933] Key type id_legacy registered
    [    0.092952] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.092959] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.125428] Key type asymmetric registered
    [    0.125438] Asymmetric key parser 'x509' registered
    [    0.125492] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
    [    0.125633] io scheduler mq-deadline registered
    [    0.125640] io scheduler kyber registered
    [    0.125671] io scheduler bfq registered
    [    0.129083] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.129809] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.137069] Serial: 8250/16550 driver, 12 ports, IRQ sharing enabled
    [    0.147619] loop: module loaded
    [    0.148694] megasas: 07.725.01.00-rc1
    [    0.152478] tun: Universal TUN/TAP device driver, 1.6
    [    0.153512] VFIO - User Level meta-driver version: 0.3
    [    0.154755] usbcore: registered new interface driver usb-storage
    [    0.155373] i2c_dev: i2c /dev entries driver
    [    0.156766] sdhci: Secure Digital Host Controller Interface driver
    [    0.156778] sdhci: Copyright(c) Pierre Ossman
    [    0.157026] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.157740] ledtrig-cpu: registered to indicate activity on CPUs
    [    0.158065] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.158733] usbcore: registered new interface driver usbhid
    [    0.158739] usbhid: USB HID core driver
    [    0.159033] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fca100
    [    0.159203] omap-mailbox 29010000.mailbox: omap mailbox rev 0x66fca100
    [    0.159355] omap-mailbox 29020000.mailbox: omap mailbox rev 0x66fca100
    [    0.159479] omap-mailbox 29030000.mailbox: omap mailbox rev 0x66fca100
    [    0.160915] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.161646] optee: probing for conduit method.
    [    0.161676] optee: revision 4.2 (12d7c4ee)
    [    0.161952] optee: dynamic shared memory is enabled
    [    0.162177] optee: initialized driver
    [    0.164189] Initializing XFRM netlink socket
    [    0.164229] NET: Registered PF_PACKET protocol family
    [    0.164314] Key type dns_resolver registered
    [    0.171802] registered taskstats version 1
    [    0.171952] Loading compiled-in X.509 certificates
    [    0.183993] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    [    0.234152] omap_i2c 2b200000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.235350] pca953x 1-0023: supply vcc not found, using dummy regulator
    [    0.235476] pca953x 1-0023: using AI
    [    0.261765] omap_i2c 20000000.i2c: bus 1 rev0.12 at 400 kHz
    [    0.263096] platform connector-hdmi: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    0.263165] platform 30220000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    [    0.263218] i2c 2-003b: Fixed dependency cycle(s) with /connector-hdmi
    [    0.263311] i2c 2-003b: Fixed dependency cycle(s) with /bus@f0000/dss@30220000
    [    0.263503] omap_i2c 20010000.i2c: bus 2 rev0.12 at 100 kHz
    [    0.264810] pca954x 3-0070: supply vdd not found, using dummy regulator
    [    0.287750] i2c 4-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30/links/link@0/serializer
    [    0.287784] i2c 4-0030: Fixed dependency cycle(s) with /bus@f0000/ticsi2rx@30102000/csi-bridge@30101000
    [    0.287903] i2c i2c-3: Added multiplexed i2c bus 4
    [    0.288200] i2c 5-0030: Fixed dependency cycle(s) with /bus@f0000/ticsi2rx@30122000/csi-bridge@30121000
    [    0.288288] i2c i2c-3: Added multiplexed i2c bus 5
    [    0.288298] pca954x 3-0070: registered 2 multiplexed busses for I2C switch pca9543
    [    0.288488] pca954x 3-0071: supply vdd not found, using dummy regulator
    [    0.288886] i2c i2c-3: Added multiplexed i2c bus 6
    [    0.289049] i2c i2c-3: Added multiplexed i2c bus 7
    [    0.289059] pca954x 3-0071: registered 2 multiplexed busses for I2C switch pca9543
    [    0.289099] omap_i2c 20020000.i2c: bus 3 rev0.12 at 400 kHz
    [    0.289315] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    0.289442] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    0.289665] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    0.289916] ti-sci-inta 4e400000.interrupt-controller: Interrupt Aggregator domain 200 created
    [    0.295600] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    0.297926] ti-udma 485c0100.dma-controller: Channels: 44 (bchan: 16, tchan: 12, rchan: 16)
    [    0.300244] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    0.304936] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    0.306866] ti-udma 4e230000.dma-controller: Number of rings: 40
    [    0.308416] ti-udma 4e230000.dma-controller: Channels: 20 (bchan: 0, tchan: 8, rchan: 12)
    [    0.310268] printk: console [ttyS2] disabled
    [    0.310592] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 273, base_baud = 3000000) is a 8250
    [    0.310664] printk: console [ttyS2] enabled
    [    0.310670] printk: bootconsole [ns16550a0] disabled
    [    0.314475] spi-nor spi0.0: s28hs512t (65536 Kbytes)
    [    0.314568] 7 fixed-partitions partitions found on MTD device fc40000.spi.0
    [    0.314579] Creating 7 MTD partitions on "fc40000.spi.0":
    [    0.314586] 0x000000000000-0x000000080000 : "ospi.tiboot3"
    [    0.315825] 0x000000080000-0x000000280000 : "ospi.tispl"
    [    0.316910] 0x000000280000-0x000000680000 : "ospi.u-boot"
    [    0.318016] 0x000000680000-0x0000006c0000 : "ospi.env"
    [    0.319033] 0x0000006c0000-0x000000700000 : "ospi.env.backup"
    [    0.320085] 0x000000800000-0x000003fc0000 : "ospi.rootfs"
    [    0.321128] 0x000003fc0000-0x000004000000 : "ospi.phypattern"
    [    0.363282] davinci_mdio 8000f00.mdio: davinci mdio revision 17.7, bus freq 1000000
    [    0.367005] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
    [    0.367055] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01903, cpsw version 0x6BA81903 Ports: 3 quirks:00000006
    [    0.367421] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    0.367430] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    0.368088] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010d, freq:500000000, add_val:1 pps:0
    [    0.373053] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    0.377306] cpu cpu0: _of_add_opp_table_v2: no supported OPPs
    [    0.377363] cpu cpu0: OPP table can't be empty
    [    0.378726] mmc0: CQHCI version 5.10
    [    0.386763] pca953x 2-0020: supply vcc not found, using dummy regulator
    [    0.386943] pca953x 2-0020: using no AI
    [    0.415828] j721e-pcie f102000.pcie: host bridge /bus@f0000/pcie@f102000 ranges:
    [    0.415857] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    0.415886] j721e-pcie f102000.pcie:       IO 0x0068001000..0x0068010fff -> 0x0068001000
    [    0.415911] j721e-pcie f102000.pcie:      MEM 0x0068011000..0x006fffffff -> 0x0068011000
    [    0.415931] j721e-pcie f102000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    0.502559] mmc0: Command Queue Engine enabled
    [    0.502583] mmc0: new HS400 MMC card at address 0001
    [    0.503305] mmcblk0: mmc0:0001 G1M15L 29.6 GiB
    [    0.505997]  mmcblk0: p1
    [    0.506546] mmcblk0boot0: mmc0:0001 G1M15L 31.5 MiB
    [    0.507604] mmcblk0boot1: mmc0:0001 G1M15L 31.5 MiB
    [    0.508448] mmcblk0rpmb: mmc0:0001 G1M15L 4.00 MiB, chardev (239:0)
    [    1.420348] j721e-pcie f102000.pcie: PCI host bridge to bus 0000:00
    [    1.420369] pci_bus 0000:00: root bus resource [bus 00-ff]
    [    1.420381] pci_bus 0000:00: root bus resource [io  0x0000-0xffff] (bus address [0x68001000-0x68010fff])
    [    1.420389] pci_bus 0000:00: root bus resource [mem 0x68011000-0x6fffffff]
    [    1.420424] pci 0000:00:00.0: [104c:b010] type 01 class 0x060400
    [    1.420511] pci 0000:00:00.0: supports D1
    [    1.420518] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
    [    1.423727] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
    [    1.423951] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
    [    1.423978] pci 0000:00:00.0: PCI bridge to [bus 01]
    [    1.424128] pcieport 0000:00:00.0: of_irq_parse_pci: failed with rc=-22
    [    1.424475] pcieport 0000:00:00.0: PME: Signaling with IRQ 486
    [    1.424781] pcieport 0000:00:00.0: AER: enabled with IRQ 486
    [    1.426561] mmc1: CQHCI version 5.10
    [    1.426695] debugfs: Directory 'pd:244' with parent 'pm_genpd' already present!
    [    1.428264] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.428289] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.429610] clk: Disabling unused clocks
    [    1.436068] ALSA device list:
    [    1.436079]   No soundcards found.
    [    1.473872] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    1.697235] mmc1: new ultra high speed SDR104 SDHC card at address aaaa
    [    1.697948] mmcblk1: mmc1:aaaa SH32G 29.7 GiB
    [    1.700225]  mmcblk1: p1 p2
    [    1.705489] EXT4-fs (mmcblk0p1): recovery complete
    [    1.706122] EXT4-fs (mmcblk0p1): mounted filesystem 3ebe0174-1dc0-498e-9e4b-24513a67bb70 r/w with ordered data mode. Quota mode: none.
    [    1.706222] VFS: Mounted root (ext4 filesystem) on device 179:1.
    [    1.706596] devtmpfs: mounted
    [    1.707342] Freeing unused kernel memory: 2432K
    [    1.707401] Run /sbin/hlio-init.sh as init process
    [    1.707406]   with arguments:
    [    1.707409]     /sbin/hlio-init.sh
    [    1.707412]   with environment:
    [    1.707415]     HOME=/
    [    1.707418]     TERM=linux
    [    1.868946] tidss 30200000.dss: failed to init OLDI: -517
    [    1.871112] OF: graph: no port node found in /bus@f0000/dss@30220000/oldi-txes/oldi@1/ports
    [    1.897640] pvrsrvkm: loading out-of-tree module taints kernel.
    [    1.905890] PVR_K:  99: Device: fd80000.gpu
    [    1.906818] PVR_K:  99: Read BVNC 36.53.104.796 from HW device registers
    [    1.906844] PVR_K:  99: RGX Device registered BVNC 36.53.104.796 with 1 core in the system
    [    1.907783] [drm] Initialized pvr 24.1.6554834 20170530 for fd80000.gpu on minor 0
    [    1.910845] tidss 30200000.dss: failed to init OLDI: -517
    [    1.913469] OF: graph: no port node found in /bus@f0000/dss@30220000/oldi-txes/oldi@1/ports
    [    1.915005] sii902x 2-003b: supply iovcc not found, using dummy regulator
    [    1.915216] sii902x 2-003b: supply cvcc12 not found, using dummy regulator
    [    1.918555] i2c i2c-2: Added multiplexed i2c bus 8
    [    1.921385] tidss 30200000.dss: failed to init OLDI: -517
    [    1.923864] OF: graph: no port node found in /bus@f0000/dss@30220000/oldi-txes/oldi@1/ports
    [    1.924999] [drm] Initialized tidss 1.0.0 20180215 for 30220000.dss on minor 1
    [    1.976630] Console: switching to colour frame buffer device 240x67
    [    1.977564] systemd[1]: System time before build time, advancing clock.
    [    2.007609] tidss 30220000.dss: [drm] fb0: tidssdrmfb frame buffer device
    [    2.033038] NET: Registered PF_INET6 protocol family
    [    2.051584] Segment Routing with IPv6
    [    2.051640] In-situ OAM (IOAM) with IPv6
    [    2.059795] tidss 30200000.dss: failed to init OLDI: -517
    [    2.071915] tidss 30200000.dss: failed to init OLDI: -517
    [    2.088454] systemd[1]: systemd 255.4^ 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)
    [    2.088499] systemd[1]: Detected architecture arm64.
    [    2.091697] systemd[1]: Hostname set to <j722s>.
    [    2.200256] systemd-sysv-generator[142]: SysV service '/etc/init.d/edgeai-launcher.sh' lacks a native systemd unit file. ~ Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it safe, robust and future-proof. ! This compatibility logic is deprecated, expect removal soon. !
    [    2.383175] systemd[1]: /usr/lib/systemd/system/bt-enable.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    2.478035] systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    2.547191] systemd[1]: Queued start job for default target Graphical Interface.
    [    2.589425] systemd[1]: Created slice Slice /system/getty.
    [    2.592131] systemd[1]: Created slice Slice /system/modprobe.
    [    2.594634] systemd[1]: Created slice Slice /system/serial-getty.
    [    2.596445] systemd[1]: Created slice User and Session Slice.
    [    2.596850] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [    2.597075] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [    2.597197] systemd[1]: Expecting device /dev/ttyS2...
    [    2.597395] systemd[1]: Reached target Path Units.
    [    2.597471] systemd[1]: Reached target Remote File Systems.
    [    2.597548] systemd[1]: Reached target Slice Units.
    [    2.597625] systemd[1]: Reached target Swaps.
    [    2.616839] systemd[1]: Listening on RPCbind Server Activation Socket.
    [    2.617085] systemd[1]: Reached target RPC Port Mapper.
    [    2.624542] systemd[1]: Listening on Process Core Dump Socket.
    [    2.624984] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [    2.626182] systemd[1]: Listening on Journal Audit Socket.
    [    2.626834] systemd[1]: Listening on Journal Socket (/dev/log).
    [    2.627540] systemd[1]: Listening on Journal Socket.
    [    2.628429] systemd[1]: Listening on Network Service Netlink Socket.
    [    2.629019] systemd[1]: Listening on udev Control Socket.
    [    2.629426] systemd[1]: Listening on udev Kernel Socket.
    [    2.629948] systemd[1]: Listening on User Database Manager Socket.
    [    2.635494] systemd[1]: Mounting Huge Pages File System...
    [    2.640451] systemd[1]: Mounting POSIX Message Queue File System...
    [    2.652032] systemd[1]: Mounting Kernel Debug File System...
    [    2.652583] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    2.669375] systemd[1]: Starting Create List of Static Device Nodes...
    [    2.674937] systemd[1]: Starting Load Kernel Module configfs...
    [    2.684055] systemd[1]: Starting Load Kernel Module drm...
    [    2.696812] systemd[1]: Starting Load Kernel Module fuse...
    [    2.708584] systemd[1]: Starting Start psplash boot splash screen...
    [    2.718285] systemd[1]: Starting RPC Bind...
    [    2.728874] systemd[1]: Started Boot Process Profiler.
    [    2.729339] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
    [    2.743730] systemd[1]: Starting Journal Service...
    [    2.756333] fuse: init (API version 7.39)
    [    2.760339] systemd[1]: Starting Load Kernel Modules...
    [    2.766003] systemd[1]: Starting Generate network units from Kernel command line...
    [    2.788915] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    2.803787] systemd[1]: Starting Coldplug All udev Devices...
    [    2.816180] systemd[1]: Started RPC Bind.
    [    2.817080] systemd[1]: Mounted Huge Pages File System.
    [    2.817747] systemd[1]: Mounted POSIX Message Queue File System.
    [    2.818480] systemd[1]: Mounted Kernel Debug File System.
    [    2.826601] systemd[1]: Finished Create List of Static Device Nodes.
    [    2.828648] systemd[1]: modprobe@configfs.service: Deactivated successfully.
    [    2.829680] systemd[1]: Finished Load Kernel Module configfs.
    [    2.831424] systemd[1]: modprobe@drm.service: Deactivated successfully.
    [    2.832306] systemd[1]: Finished Load Kernel Module drm.
    [    2.834262] systemd[1]: modprobe@fuse.service: Deactivated successfully.
    [    2.835362] random: crng init done
    [    2.839683] systemd[1]: Finished Load Kernel Module fuse.
    [    2.863576] cryptodev: driver 1.13 loaded.
    [    2.889185] systemd[1]: Mounting Kernel Configuration File System...
    [    2.899191] systemd[1]: Starting Load Kernel Module fuse...
    [    2.911701] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
    [    2.923378] EXT4-fs (mmcblk0p1): re-mounted 3ebe0174-1dc0-498e-9e4b-24513a67bb70 r/w. Quota mode: none.
    [    2.931972] systemd[1]: Finished Load Kernel Modules.
    [    2.937525] systemd[1]: Finished Generate network units from Kernel command line.
    [    2.940409] systemd[1]: Finished Remount Root and Kernel File Systems.
    [    2.941556] systemd[1]: Mounted Kernel Configuration File System.
    [    2.943043] systemd[1]: modprobe@fuse.service: Deactivated successfully.
    [    2.948542] systemd[1]: Finished Load Kernel Module fuse.
    [    2.977420] systemd-journald[159]: Collecting audit messages is enabled.
    [    2.984250] PVR_K:  114: RGX Firmware image 'rgx.fw.36.53.104.796' loaded
    [    2.988519] PVR_K:  114: Shader binary image 'rgx.sh.36.53.104.796' loaded
    [    2.992199] systemd[1]: Mounting NFSD configuration filesystem...
    [    3.000043] systemd[1]: Mounting FUSE Control File System...
    [    3.001976] systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
    [    3.020991] systemd[1]: Starting Apply Kernel Variables...
    [    3.022126] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a
    [    3.022161] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'.
    [    3.023235] systemd[1]: Failed to mount NFSD configuration filesystem.
    [    3.028132] weston[114]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    [    3.031587] systemd[1]: Dependency failed for NFS server and services.
    [    3.031803] systemd[1]: Dependency failed for NFS Mount Daemon.
    [    3.031924] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'.
    [    3.031986] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'.
    [    3.041676] systemd[1]: Mounted FUSE Control File System.
    [    3.104695] systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
    [    3.105552] systemd[1]: Create System Users was skipped because no trigger condition checks were met.
    [    3.116265] systemd[1]: Starting Create Static Device Nodes in /dev...
    [    3.152761] systemd[1]: Started Journal Service.
    [    3.228297] systemd-journald[159]: Received client request to flush runtime journal.
    [    3.271237] audit: type=1334 audit(1709054765.288:2): prog-id=6 op=LOAD
    [    3.271880] audit: type=1334 audit(1709054765.292:3): prog-id=7 op=LOAD
    [    3.501199] audit: type=1334 audit(1709054765.520:4): prog-id=8 op=LOAD
    [    3.538680] audit: type=1334 audit(1709054765.556:5): prog-id=9 op=LOAD
    [    3.563246] audit: type=1334 audit(1709054765.580:6): prog-id=10 op=LOAD
    [    3.564773] audit: type=1334 audit(1709054765.584:7): prog-id=11 op=LOAD
    [    3.565133] audit: type=1334 audit(1709054765.584:8): prog-id=12 op=LOAD
    [    5.691396] audit: type=1334 audit(1709054767.708:9): prog-id=13 op=LOAD
    [    5.782549] CAN device driver interface
    [    5.948108] mc: Linux media interface: v0.10
    [    6.040831] videodev: Linux video capture interface: v2.00
    [    6.102390] tidss 30200000.dss: failed to init OLDI: -517
    [    6.211822] tidss 30200000.dss: failed to init OLDI: -517
    [    6.233049] k3-dsp-rproc 7e000000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@ad000000
    [    6.234135] k3-dsp-rproc 7e000000.dsp: configured DSP for remoteproc mode
    [    6.234297] k3-dsp-rproc 7e000000.dsp: local reset is deasserted for device
    [    6.248697] tidss 30200000.dss: failed to init OLDI: -517
    [    6.258832] ds90ub960 4-0030: supply vddio not found, using dummy regulator
    [    6.259731] remoteproc remoteproc0: 7e000000.dsp is available
    [    6.290392] k3-dsp-rproc 7e200000.dsp: assigned reserved memory node vision-apps-c71_1-dma-memory@b1000000
    [    6.291710] k3-dsp-rproc 7e200000.dsp: configured DSP for remoteproc mode
    [    6.292356] k3-dsp-rproc 7e200000.dsp: local reset is deasserted for device
    [    6.301646] remoteproc remoteproc1: 7e200000.dsp is available
    [    6.312169] remoteproc remoteproc0: powering up 7e000000.dsp
    [    6.312212] remoteproc remoteproc0: Booting fw image j722s-c71_0-fw, size 11821224
    [    6.362627] k3-dsp-rproc 7e000000.dsp: booting DSP core using boot addr = 0xad200000
    [    6.364770] remoteproc remoteproc1: powering up 7e200000.dsp
    [    6.364809] remoteproc remoteproc1: Booting fw image j722s-c71_1-fw, size 11821224
    [    6.369615] rproc-virtio rproc-virtio.1.auto: assigned reserved memory node vision-apps-c71-dma-memory@ad000000
    [    6.375841] tidss 30200000.dss: failed to init OLDI: -517
    [    6.393378] vdec 30210000.video-codec: Added wave5 driver with caps: 'ENCODE' 'DECODE'
    [    6.393407] vdec 30210000.video-codec: Product Code:      0x521c
    [    6.393416] vdec 30210000.video-codec: Firmware Revision: 320127
    [    6.427681] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    6.427750] rproc-virtio rproc-virtio.1.auto: registered virtio0 (type 7)
    [    6.427764] remoteproc remoteproc0: remote processor 7e000000.dsp is now up
    [    6.428912] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xd
    [    6.430360] k3-dsp-rproc 7e200000.dsp: booting DSP core using boot addr = 0xb1200000
    [    6.437394] rproc-virtio rproc-virtio.2.auto: assigned reserved memory node vision-apps-c71_1-dma-memory@b1000000
    [    6.464525] virtio_rpmsg_bus virtio1: rpmsg host is online
    [    6.464587] rproc-virtio rproc-virtio.2.auto: registered virtio1 (type 7)
    [    6.464597] remoteproc remoteproc1: remote processor 7e200000.dsp is now up
    [    6.465304] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xd
    [    6.533597] ds90ub960 4-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30/links/link@0/serializer
    [    6.668312] i2c 4-0044: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30
    [    6.797637] i2c 4-0044: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30/links/link@0/serializer/i2c/sensor@10
    [    6.869848] tidss 30200000.dss: failed to init OLDI: -517
    [    6.960493] ds90ub960 5-0030: supply vddio not found, using dummy regulator
    [    6.962006] ds90ub960 5-0030: ub960_write: cannot write register 0x01 (-121)!
    [    6.962159] ds90ub960 5-0030: reset failed: -121
    [    6.962236] ds90ub960 5-0030: ub960_read: cannot read register 0x03 (-121)!
    [    6.962247] ds90ub960 5-0030: error -EREMOTEIO: Cannot read first register, abort
    [    6.996152] ds90ub960: probe of 5-0030 failed with error -121
    [    7.003207] rtc-ti-k3 2b1f0000.rtc: Clock rate 32552 is not 32768! Could misbehave!
    [    7.016753] platform 79000000.r5f: configured R5F for remoteproc mode
    [    7.017720] platform 79000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a1000000
    [    7.049226] remoteproc remoteproc2: 79000000.r5f is available
    [    7.052500] remoteproc remoteproc2: powering up 79000000.r5f
    [    7.052534] remoteproc remoteproc2: Booting fw image j722s-mcu-r5f0_0-fw, size 50228
    [    7.169617] tidss 30200000.dss: failed to init OLDI: -517
    [    7.467192] audit: type=1334 audit(1709054769.484:10): prog-id=14 op=LOAD
    [    7.500304] audit: type=1334 audit(1709054769.520:11): prog-id=15 op=LOAD
    [    7.531997] audit: type=1334 audit(1709054769.552:12): prog-id=16 op=LOAD
    [    7.613431] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [    7.613536] rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:08 UTC (8)
    [    7.623414] e5010 fd20000.e5010: Device registered as /dev/video2
    [    7.633774] rproc-virtio rproc-virtio.3.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a1000000
    [    7.634625] virtio_rpmsg_bus virtio2: rpmsg host is online
    [    7.634695] rproc-virtio rproc-virtio.3.auto: registered virtio2 (type 7)
    [    7.634706] remoteproc remoteproc2: remote processor 79000000.r5f is now up
    [    7.635422] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    7.636226] m_can_platform 4e08000.can: m_can device registered (irq=502, version=32)
    [    7.636300] platform 78000000.r5f: configured R5F for IPC-only mode
    [    7.636519] platform 78000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    [    7.637224] remoteproc remoteproc3: 78000000.r5f is available
    [    7.637331] remoteproc remoteproc3: attaching to 78000000.r5f
    [    7.639573] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [    7.639623] rproc-virtio rproc-virtio.5.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    [    7.642081] virtio_rpmsg_bus virtio2: creating channel ti.ipc4.ping-pong addr 0xd
    [    7.672502] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xe
    [    7.696151] panel-simple display: supply power not found, using dummy regulator
    [    7.696657] m_can_platform 4e18000.can: m_can device registered (irq=503, version=32)
    [    7.712546] m_can_platform 20701000.can: m_can device registered (irq=504, version=32)
    [    7.730081] OF: graph: no port node found in /bus@f0000/dss@30200000/oldi-txes/oldi@1/ports
    [    7.748173] virtio_rpmsg_bus virtio3: rpmsg host is online
    [    7.748233] rproc-virtio rproc-virtio.5.auto: registered virtio3 (type 7)
    [    7.748244] remoteproc remoteproc3: remote processor 78000000.r5f is now attached
    [    7.749271] virtio_rpmsg_bus virtio3: creating channel ti.ipc4.ping-pong addr 0xd
    [    7.757604] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 2
    [    7.760478] tidss 30200000.dss: [drm] fb1: tidssdrmfb frame buffer device
    [    7.774358] platform 78400000.r5f: configured R5F for remoteproc mode
    [    7.774804] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0xe
    [    7.774970] platform 78400000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
    [    7.779383] systemd-journald[159]: Time jumped backwards, rotating.
    [    7.781011] remoteproc remoteproc4: 78400000.r5f is available
    [    7.787408] remoteproc remoteproc4: powering up 78400000.r5f
    [    7.787447] remoteproc remoteproc4: Booting fw image j722s-main-r5f0_0-fw, size 600992
    [    7.806595] rproc-virtio rproc-virtio.6.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
    [    7.817944] i2c 5-0030: Fixed dependency cycle(s) with /bus@f0000/ticsi2rx@30122000/csi-bridge@30121000
    [    7.827543] platform 30121000.csi-bridge: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@1/deser@30
    [    7.828553] virtio_rpmsg_bus virtio4: rpmsg host is online
    [    7.828631] rproc-virtio rproc-virtio.6.auto: registered virtio4 (type 7)
    [    7.828643] remoteproc remoteproc4: remote processor 78400000.r5f is now up
    [    7.829380] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0xd
    [    7.830060] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0x15
    [    7.830158] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0x15
    [    7.832793] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0x15
    [    7.833100] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xe
    [    7.840603] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xe
    [    7.840797] virtio_rpmsg_bus virtio4: creating channel ti.ipc4.ping-pong addr 0xe
    [    7.841886] virtio_rpmsg_bus virtio0: msg received with no recipient
    [    7.849696] virtio_rpmsg_bus virtio4: msg received with no recipient
    [    7.849848] virtio_rpmsg_bus virtio1: msg received with no recipient
    [    8.319128] audit: type=1334 audit(9.200:13): prog-id=17 op=LOAD
    [    9.312395] ds90ub953 4-0044: Found ub953 rev/mask 0x20
    [    9.553646] ds90ub953 4-0044: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30/links/link@0/serializer/i2c/sensor@10
    [    9.655668] i2c 9-0010: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30/links/link@0/serializer
    [    9.656040] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [    9.702604] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [    9.703567] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [    9.811328] m_can_platform 20701000.can main_mcan0: renamed from can2
    [    9.920625] m_can_platform 4e18000.can mcu_mcan1: renamed from can1
    [    9.991357] m_can_platform 4e08000.can mcu_mcan0: renamed from can0
    [   10.151366] xhci-hcd xhci-hcd.7.auto: xHCI Host Controller
    [   10.157974] xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 1
    [   10.158342] xhci-hcd xhci-hcd.7.auto: hcc params 0x200073c9 hci version 0x100 quirks 0x0000002000008010
    [   10.158441] xhci-hcd xhci-hcd.7.auto: irq 506, io mem 0x31210000
    [   10.158697] xhci-hcd xhci-hcd.7.auto: xHCI Host Controller
    [   10.158725] xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 2
    [   10.158752] xhci-hcd xhci-hcd.7.auto: Host supports USB 3.0 SuperSpeed
    [   10.241148] cdns-csi2rx 30101000.csi-bridge: Probed CSI2RX with 4/4 lanes, 4 streams, external D-PHY
    [   10.308753] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
    [   10.308793] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [   10.360593] hub 1-0:1.0: USB hub found
    [   10.362723] hub 1-0:1.0: 1 port detected
    [   10.627184] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [   10.703419] configfs-gadget.g1 gadget.0: HOST MAC 02:02:4c:dc:d4:af
    [   10.703450] configfs-gadget.g1 gadget.0: MAC 0e:18:38:82:55:be
    [   10.703736] hub 2-0:1.0: USB hub found
    [   10.704901] hub 2-0:1.0: 1 port detected
    [   10.713246] configfs-gadget.g1 gadget.0: HOST MAC ba:00:15:86:e3:cc
    [   10.713280] configfs-gadget.g1 gadget.0: MAC da:50:07:d0:a7:21
    [   10.729698] cdns-csi2rx 30121000.csi-bridge: Probed CSI2RX with 4/4 lanes, 4 streams, external D-PHY
    [   10.802888] imx219 9-0010: supply VANA not found, using dummy regulator
    [   10.803391] imx219 9-0010: supply VDIG not found, using dummy regulator
    [   10.803513] imx219 9-0010: supply VDDL not found, using dummy regulator
    [   10.847363] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   11.123714] usb 2-1: new SuperSpeed USB device number 2 using xhci-hcd
    [   11.175899] hub 1-1:1.0: USB hub found
    [   11.176045] hub 1-1:1.0: 4 ports detected
    [   11.628474] hub 2-1:1.0: USB hub found
    [   11.628607] hub 2-1:1.0: 4 ports detected
    [   13.165530] EXT4-fs (mmcblk1p2): recovery complete
    [   13.165574] EXT4-fs (mmcblk1p2): mounted filesystem 970435ba-92b9-4f2c-99f0-2cf0c5028d29 r/w with ordered data mode. Quota mode: none.
    [   13.422710] audit: type=1006 audit(14.304:14): pid=1577 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=1 res=1
    [   13.422820] audit: type=1300 audit(14.304:14): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffdae807e8 a2=4 a3=1 items=0 ppid=1 pid=1577 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/usr/lib/systemd/systemd-executor" key=(null)
    [   13.422880] audit: type=1327 audit(14.304:14): proctitle="(systemd)"
    [   14.317737] audit: type=1006 audit(15.200:15): pid=1557 uid=0 old-auid=4294967295 auid=1000 tty=tty7 old-ses=4294967295 ses=2 res=1
    [   14.317998] audit: type=1300 audit(15.200:15): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffed76e5a8 a2=4 a3=1 items=0 ppid=1 pid=1557 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=tty7 ses=2 comm="(weston)" exe="/usr/lib/systemd/systemd-executor" key=(null)
    [   14.318567] audit: type=1327 audit(15.200:15): proctitle="(weston)"
    [   15.923651] usb 2-1-port4: Cannot enable. Maybe the USB cable is bad?
    [   20.007892] usb 2-1-port4: Cannot enable. Maybe the USB cable is bad?
    [   20.008205] usbcore: registered new device driver onboard-usb-hub
    [   20.076307] audit: type=1006 audit(20.960:16): pid=1847 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=3 res=1
    [   20.076345] audit: type=1300 audit(20.960:16): arch=c00000b7 syscall=64 success=yes exit=1 a0=8 a1=ffffd803d5f8 a2=1 a3=1 items=0 ppid=1 pid=1847 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="(systemd)" exe="/usr/lib/systemd/systemd-executor" key=(null)
    [   20.076359] audit: type=1327 audit(20.960:16): proctitle="(systemd)"
    [   20.144421] audit: type=1334 audit(21.028:17): prog-id=18 op=LOAD
    [   20.144458] audit: type=1300 audit(21.028:17): arch=c00000b7 syscall=280 success=yes exit=8 a0=5 a1=fffff6f71d58 a2=90 a3=0 items=0 ppid=1 pid=1847 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/usr/lib/systemd/systemd" key=(null)
    [   20.144472] audit: type=1327 audit(21.028:17): proctitle="(systemd)"
    [   20.144486] audit: type=1334 audit(21.028:18): prog-id=18 op=UNLOAD
    [   20.144496] audit: type=1300 audit(21.028:18): arch=c00000b7 syscall=57 success=yes exit=0 a0=8 a1=1 a2=0 a3=ffff95f4ec60 items=0 ppid=1 pid=1847 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/usr/lib/systemd/systemd" key=(null)
    [   20.144508] audit: type=1327 audit(21.028:18): proctitle="(systemd)"
    [   20.144722] audit: type=1334 audit(21.028:19): prog-id=19 op=LOAD
    [   20.172890] hub 1-1:1.0: USB hub found
    [   20.173037] hub 1-1:1.0: 4 ports detected
    [   20.178241] hub 1-1:1.0: USB hub found
    [   20.178684] hub 1-1:1.0: 4 ports detected
    [   24.091501] usb 2-1-port4: Cannot enable. Maybe the USB cable is bad?
    [   28.163501] usb 2-1-port4: Cannot enable. Maybe the USB cable is bad?
    [   28.260047] hub 2-1:1.0: USB hub found
    [   28.260147] hub 2-1:1.0: 4 ports detected
    [   28.264393] hub 2-1:1.0: USB hub found
    [   28.264516] hub 2-1:1.0: 4 ports detected
    


    The journalctl output:
    Feb 27 17:26:05 j722s kernel: Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    Feb 27 17:26:05 j722s kernel: Linux version 6.6.32-ti-gdb8871293143-dirty (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240620) #1 SMP PREEMPT Thu Aug  1 19:10:56 UTC 2024
    Feb 27 17:26:05 j722s kernel: KASLR disabled due to lack of seed
    Feb 27 17:26:05 j722s kernel: Machine model: Texas Instruments J722S EVM
    Feb 27 17:26:05 j722s kernel: earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    Feb 27 17:26:05 j722s kernel: printk: bootconsole [ns16550a0] enabled
    Feb 27 17:26:05 j722s kernel: efi: UEFI not found.
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x000000009e780000..0x000000009e7fffff (512 KiB) nomap non-reusable tfa@9e780000
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x000000009e800000..0x000000009fffffff (24576 KiB) nomap non-reusable optee@9e800000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a0000000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000a0000000..0x00000000a00fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a0000000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-r5f-memory@a0100000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000a0100000..0x00000000a0ffffff (15360 KiB) nomap non-reusable vision-apps-r5f-memory@a0100000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a1000000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000a1000000..0x00000000a10fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a1000000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-r5f-memory@a1100000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000a1100000..0x00000000a1ffffff (15360 KiB) nomap non-reusable vision-apps-r5f-memory@a1100000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a2000000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000a2000000..0x00000000a20fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a2000000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000a2100000, size 31 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-r5f-memory@a2100000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000a2100000..0x00000000a3ffffff (31744 KiB) nomap non-reusable vision-apps-r5f-memory@a2100000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000a5000000, size 32 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-rtos-ipc-memory-region@a5000000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000a5000000..0x00000000a6ffffff (32768 KiB) nomap non-reusable vision-apps-rtos-ipc-memory-region@a5000000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000a7000000, size 96 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-dma-memory@a7000000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000a7000000..0x00000000acffffff (98304 KiB) nomap non-reusable vision-apps-dma-memory@a7000000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000ad000000, size 1 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-c71-dma-memory@ad000000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000ad000000..0x00000000ad0fffff (1024 KiB) nomap non-reusable vision-apps-c71-dma-memory@ad000000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000ad100000, size 63 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-c71_0-memory@ad100000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000ad100000..0x00000000b0ffffff (64512 KiB) nomap non-reusable vision-apps-c71_0-memory@ad100000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000b1000000, size 1 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-c71_1-dma-memory@b1000000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000b1000000..0x00000000b10fffff (1024 KiB) nomap non-reusable vision-apps-c71_1-dma-memory@b1000000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000b1100000, size 63 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-c71_1-memory1b1100000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000b1100000..0x00000000b4ffffff (64512 KiB) nomap non-reusable vision-apps-c71_1-memory1b1100000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x00000000b5000000, size 40 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-core-heap-memory-lo@b5000000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x00000000b5000000..0x00000000b77fffff (40960 KiB) nomap non-reusable vision-apps-core-heap-memory-lo@b5000000
    Feb 27 17:26:05 j722s kernel: Reserved memory: created DMA memory pool at 0x0000000880000000, size 512 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision-apps-core-heap-memory-hi@880000000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x0000000880000000..0x000000089fffffff (524288 KiB) nomap non-reusable vision-apps-core-heap-memory-hi@880000000
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node vision_apps_shared-memories, compatible id dma-heap-carveout
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x0000000900000000..0x000000091fffffff (524288 KiB) map non-reusable vision_apps_shared-memories
    Feb 27 17:26:05 j722s kernel: Reserved memory: created CMA memory pool at 0x0000000980000000, size 896 MiB
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: initialized node linux-cma-buffers@980000000, compatible id shared-dma-pool
    Feb 27 17:26:05 j722s kernel: OF: reserved mem: 0x0000000980000000..0x00000009b7ffffff (917504 KiB) map reusable linux-cma-buffers@980000000
    Feb 27 17:26:05 j722s kernel: Zone ranges:
    Feb 27 17:26:05 j722s kernel:   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    Feb 27 17:26:05 j722s kernel:   DMA32    empty
    Feb 27 17:26:05 j722s kernel:   Normal   [mem 0x0000000100000000-0x00000009ffffffff]
    Feb 27 17:26:05 j722s kernel: Movable zone start for each node
    Feb 27 17:26:05 j722s kernel: Early memory node ranges
    Feb 27 17:26:05 j722s kernel:   node   0: [mem 0x0000000080000000-0x000000009e77ffff]
    Feb 27 17:26:05 j722s kernel:   node   0: [mem 0x000000009e780000-0x00000000a3ffffff]
    Feb 27 17:26:05 j722s kernel:   node   0: [mem 0x00000000a4000000-0x00000000a4ffffff]
    Feb 27 17:26:05 j722s kernel:   node   0: [mem 0x00000000a5000000-0x00000000b77fffff]
    Feb 27 17:26:05 j722s kernel:   node   0: [mem 0x00000000b7800000-0x00000000ffffffff]
    Feb 27 17:26:05 j722s kernel:   node   0: [mem 0x0000000880000000-0x000000089fffffff]
    Feb 27 17:26:05 j722s kernel:   node   0: [mem 0x00000008a0000000-0x00000009ffffffff]
    Feb 27 17:26:05 j722s kernel: Initmem setup node 0 [mem 0x0000000080000000-0x00000009ffffffff]
    Feb 27 17:26:05 j722s kernel: psci: probing for conduit method from DT.
    Feb 27 17:26:05 j722s kernel: psci: PSCIv1.1 detected in firmware.
    Feb 27 17:26:05 j722s kernel: psci: Using standard PSCI v0.2 function IDs
    Feb 27 17:26:05 j722s kernel: psci: Trusted OS migration not required
    Feb 27 17:26:05 j722s kernel: psci: SMC Calling Convention v1.4
    Feb 27 17:26:05 j722s kernel: percpu: Embedded 20 pages/cpu s43176 r8192 d30552 u81920
    Feb 27 17:26:05 j722s kernel: pcpu-alloc: s43176 r8192 d30552 u81920 alloc=20*4096
    Feb 27 17:26:05 j722s kernel: pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
    Feb 27 17:26:05 j722s kernel: Detected VIPT I-cache on CPU0
    Feb 27 17:26:05 j722s kernel: CPU features: detected: GIC system register CPU interface
    Feb 27 17:26:05 j722s kernel: CPU features: detected: ARM erratum 845719
    Feb 27 17:26:05 j722s kernel: alternatives: applying boot alternatives
    Feb 27 17:26:05 j722s kernel: Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=/dev/mmcblk0p1 rw rootfstype=ext4 rootwait quiet loglevel=0 init=/sbin/hlio-init.sh
    Feb 27 17:26:05 j722s kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
    Feb 27 17:26:05 j722s kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
    Feb 27 17:26:05 j722s kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2064384
    Feb 27 17:26:05 j722s kernel: mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    Feb 27 17:26:05 j722s kernel: software IO TLB: area num 4.
    Feb 27 17:26:05 j722s kernel: software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
    Feb 27 17:26:05 j722s kernel: Memory: 5783096K/8388608K available (12160K kernel code, 1262K rwdata, 4068K rodata, 2432K init, 506K bss, 1688008K reserved, 917504K cma-reserved)
    Feb 27 17:26:05 j722s kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Feb 27 17:26:05 j722s kernel: rcu: Preemptible hierarchical RCU implementation.
    Feb 27 17:26:05 j722s kernel: rcu:         RCU event tracing is enabled.
    Feb 27 17:26:05 j722s kernel: rcu:         RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
    Feb 27 17:26:05 j722s kernel:         Trampoline variant of Tasks RCU enabled.
    Feb 27 17:26:05 j722s kernel:         Tracing variant of Tasks RCU enabled.
    Feb 27 17:26:05 j722s kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    Feb 27 17:26:05 j722s kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    Feb 27 17:26:05 j722s kernel: NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    Feb 27 17:26:05 j722s kernel: GICv3: GIC: Using split EOI/Deactivate mode
    Feb 27 17:26:05 j722s kernel: GICv3: 256 SPIs implemented
    Feb 27 17:26:05 j722s kernel: GICv3: 0 Extended SPIs implemented
    Feb 27 17:26:05 j722s kernel: Root IRQ handler: gic_handle_irq
    Feb 27 17:26:05 j722s kernel: GICv3: GICv3 features: 16 PPIs
    Feb 27 17:26:05 j722s kernel: GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    Feb 27 17:26:05 j722s kernel: ITS [mem 0x01820000-0x0182ffff]
    Feb 27 17:26:05 j722s kernel: GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    Feb 27 17:26:05 j722s kernel: ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    Feb 27 17:26:05 j722s kernel: ITS@0x0000000001820000: allocated 524288 Devices @8a0800000 (flat, esz 8, psz 64K, shr 0)
    Feb 27 17:26:05 j722s kernel: ITS: using cache flushing for cmd queue
    Feb 27 17:26:05 j722s kernel: GICv3: using LPI property table @0x00000008a0040000
    Feb 27 17:26:05 j722s kernel: GIC: using cache flushing for LPI property table
    Feb 27 17:26:05 j722s kernel: GICv3: CPU0: using allocated LPI pending table @0x00000008a0050000
    Feb 27 17:26:05 j722s kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
    Feb 27 17:26:05 j722s kernel: arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    Feb 27 17:26:05 j722s kernel: clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    Feb 27 17:26:05 j722s kernel: sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    Feb 27 17:26:05 j722s kernel: Console: colour dummy device 80x25
    Feb 27 17:26:05 j722s kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    Feb 27 17:26:05 j722s kernel: pid_max: default: 32768 minimum: 301
    Feb 27 17:26:05 j722s kernel: LSM: initializing lsm=capability,integrity
    Feb 27 17:26:05 j722s kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
    Feb 27 17:26:05 j722s kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
    Feb 27 17:26:05 j722s kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
    Feb 27 17:26:05 j722s kernel: RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
    Feb 27 17:26:05 j722s kernel: rcu: Hierarchical SRCU implementation.
    Feb 27 17:26:05 j722s kernel: rcu:         Max phase no-delay instances is 1000.
    Feb 27 17:26:05 j722s kernel: Platform MSI: msi-controller@1820000 domain created
    Feb 27 17:26:05 j722s kernel: PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    Feb 27 17:26:05 j722s kernel: EFI services will not be available.
    Feb 27 17:26:05 j722s kernel: smp: Bringing up secondary CPUs ...
    Feb 27 17:26:05 j722s kernel: Detected VIPT I-cache on CPU1
    Feb 27 17:26:05 j722s kernel: GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    Feb 27 17:26:05 j722s kernel: GICv3: CPU1: using allocated LPI pending table @0x00000008a0060000
    Feb 27 17:26:05 j722s kernel: CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    Feb 27 17:26:05 j722s kernel: Detected VIPT I-cache on CPU2
    Feb 27 17:26:05 j722s kernel: GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    Feb 27 17:26:05 j722s kernel: GICv3: CPU2: using allocated LPI pending table @0x00000008a0070000
    Feb 27 17:26:05 j722s kernel: CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    Feb 27 17:26:05 j722s kernel: Detected VIPT I-cache on CPU3
    Feb 27 17:26:05 j722s kernel: GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    Feb 27 17:26:05 j722s kernel: GICv3: CPU3: using allocated LPI pending table @0x00000008a0080000
    Feb 27 17:26:05 j722s kernel: CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    Feb 27 17:26:05 j722s kernel: smp: Brought up 1 node, 4 CPUs
    Feb 27 17:26:05 j722s kernel: SMP: Total of 4 processors activated.
    Feb 27 17:26:05 j722s kernel: CPU features: detected: 32-bit EL0 Support
    Feb 27 17:26:05 j722s kernel: CPU features: detected: CRC32 instructions
    Feb 27 17:26:05 j722s kernel: CPU: All CPU(s) started at EL2
    Feb 27 17:26:05 j722s kernel: alternatives: applying system-wide alternatives
    Feb 27 17:26:05 j722s kernel: devtmpfs: initialized
    Feb 27 17:26:05 j722s kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    Feb 27 17:26:05 j722s kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
    Feb 27 17:26:05 j722s kernel: pinctrl core: initialized pinctrl subsystem
    Feb 27 17:26:05 j722s kernel: DMI not present or invalid.
    Feb 27 17:26:05 j722s kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
    Feb 27 17:26:05 j722s kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
    Feb 27 17:26:05 j722s kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    Feb 27 17:26:05 j722s kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    Feb 27 17:26:05 j722s kernel: audit: initializing netlink subsys (disabled)
    Feb 27 17:26:05 j722s kernel: audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1
    Feb 27 17:26:05 j722s kernel: thermal_sys: Registered thermal governor 'step_wise'
    Feb 27 17:26:05 j722s kernel: thermal_sys: Registered thermal governor 'power_allocator'
    Feb 27 17:26:05 j722s kernel: cpuidle: using governor menu
    Feb 27 17:26:05 j722s kernel: hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    Feb 27 17:26:05 j722s kernel: ASID allocator initialised with 65536 entries
    Feb 27 17:26:05 j722s kernel: platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/dss@30200000/oldi-txes/oldi@0
    Feb 27 17:26:05 j722s kernel: platform 30220000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    Feb 27 17:26:05 j722s kernel: platform connector-hdmi: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    Feb 27 17:26:05 j722s kernel: platform display: Fixed dependency cycle(s) with /bus@f0000/dss@30200000/oldi-txes/oldi@0
    Feb 27 17:26:05 j722s kernel: Modules: 27616 pages in range for non-PLT usage
    Feb 27 17:26:05 j722s kernel: Modules: 519136 pages in range for PLT usage
    Feb 27 17:26:05 j722s kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    Feb 27 17:26:05 j722s kernel: HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    Feb 27 17:26:05 j722s kernel: HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    Feb 27 17:26:05 j722s kernel: HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    Feb 27 17:26:05 j722s kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    Feb 27 17:26:05 j722s kernel: HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    Feb 27 17:26:05 j722s kernel: HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    Feb 27 17:26:05 j722s kernel: HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    Feb 27 17:26:05 j722s kernel: k3-chipinfo 43000014.chipid: Family:J722S rev:SR1.0 JTAGID[0x0bba002f] Detected
    Feb 27 17:26:05 j722s kernel: iommu: Default domain type: Translated
    Feb 27 17:26:05 j722s kernel: iommu: DMA domain TLB invalidation policy: strict mode
    Feb 27 17:26:05 j722s kernel: SCSI subsystem initialized
    Feb 27 17:26:05 j722s kernel: libata version 3.00 loaded.
    Feb 27 17:26:05 j722s kernel: usbcore: registered new interface driver usbfs
    Feb 27 17:26:05 j722s kernel: usbcore: registered new interface driver hub
    Feb 27 17:26:05 j722s kernel: usbcore: registered new device driver usb
    Feb 27 17:26:05 j722s kernel: pps_core: LinuxPPS API ver. 1 registered
    Feb 27 17:26:05 j722s kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    Feb 27 17:26:05 j722s kernel: PTP clock support registered
    Feb 27 17:26:05 j722s kernel: EDAC MC: Ver: 3.0.0
    Feb 27 17:26:05 j722s kernel: scmi_core: SCMI protocol bus registered
    Feb 27 17:26:05 j722s kernel: FPGA manager framework
    Feb 27 17:26:05 j722s kernel: Advanced Linux Sound Architecture Driver Initialized.
    Feb 27 17:26:05 j722s kernel: vgaarb: loaded
    Feb 27 17:26:05 j722s kernel: clocksource: Switched to clocksource arch_sys_counter
    Feb 27 17:26:05 j722s kernel: VFS: Disk quotas dquot_6.6.0
    Feb 27 17:26:05 j722s kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Feb 27 17:26:05 j722s kernel: Carveout Heap: Exported 512 MiB at 0x0000000900000000
    Feb 27 17:26:05 j722s kernel: NET: Registered PF_INET protocol family
    Feb 27 17:26:05 j722s kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    Feb 27 17:26:05 j722s kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
    Feb 27 17:26:05 j722s kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    Feb 27 17:26:05 j722s kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
    Feb 27 17:26:05 j722s kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
    Feb 27 17:26:05 j722s kernel: TCP: Hash tables configured (established 65536 bind 65536)
    Feb 27 17:26:05 j722s kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
    Feb 27 17:26:05 j722s kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
    Feb 27 17:26:05 j722s kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
    Feb 27 17:26:05 j722s kernel: RPC: Registered named UNIX socket transport module.
    Feb 27 17:26:05 j722s kernel: RPC: Registered udp transport module.
    Feb 27 17:26:05 j722s kernel: RPC: Registered tcp transport module.
    Feb 27 17:26:05 j722s kernel: RPC: Registered tcp-with-tls transport module.
    Feb 27 17:26:05 j722s kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
    Feb 27 17:26:05 j722s kernel: NET: Registered PF_XDP protocol family
    Feb 27 17:26:05 j722s kernel: PCI: CLS 0 bytes, default 64
    Feb 27 17:26:05 j722s kernel: Initialise system trusted keyrings
    Feb 27 17:26:05 j722s kernel: workingset: timestamp_bits=46 max_order=21 bucket_order=0
    Feb 27 17:26:05 j722s kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
    Feb 27 17:26:05 j722s kernel: NFS: Registering the id_resolver key type
    Feb 27 17:26:05 j722s kernel: Key type id_resolver registered
    Feb 27 17:26:05 j722s kernel: Key type id_legacy registered
    Feb 27 17:26:05 j722s kernel: nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    Feb 27 17:26:05 j722s kernel: nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    Feb 27 17:26:05 j722s kernel: Key type asymmetric registered
    Feb 27 17:26:05 j722s kernel: Asymmetric key parser 'x509' registered
    Feb 27 17:26:05 j722s kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
    Feb 27 17:26:05 j722s kernel: io scheduler mq-deadline registered
    Feb 27 17:26:05 j722s kernel: io scheduler kyber registered
    Feb 27 17:26:05 j722s kernel: io scheduler bfq registered
    Feb 27 17:26:05 j722s kernel: pinctrl-single 4084000.pinctrl: 34 pins, size 136
    Feb 27 17:26:05 j722s kernel: pinctrl-single f4000.pinctrl: 171 pins, size 684
    Feb 27 17:26:05 j722s kernel: Serial: 8250/16550 driver, 12 ports, IRQ sharing enabled
    Feb 27 17:26:05 j722s kernel: loop: module loaded
    Feb 27 17:26:05 j722s kernel: megasas: 07.725.01.00-rc1
    Feb 27 17:26:05 j722s kernel: tun: Universal TUN/TAP device driver, 1.6
    Feb 27 17:26:05 j722s kernel: VFIO - User Level meta-driver version: 0.3
    Feb 27 17:26:05 j722s kernel: usbcore: registered new interface driver usb-storage
    Feb 27 17:26:05 j722s kernel: i2c_dev: i2c /dev entries driver
    Feb 27 17:26:05 j722s kernel: sdhci: Secure Digital Host Controller Interface driver
    Feb 27 17:26:05 j722s kernel: sdhci: Copyright(c) Pierre Ossman
    Feb 27 17:26:05 j722s kernel: sdhci-pltfm: SDHCI platform and OF driver helper
    Feb 27 17:26:05 j722s kernel: ledtrig-cpu: registered to indicate activity on CPUs
    Feb 27 17:26:05 j722s kernel: SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    Feb 27 17:26:05 j722s kernel: usbcore: registered new interface driver usbhid
    Feb 27 17:26:05 j722s kernel: usbhid: USB HID core driver
    Feb 27 17:26:05 j722s kernel: omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fca100
    Feb 27 17:26:05 j722s kernel: omap-mailbox 29010000.mailbox: omap mailbox rev 0x66fca100
    Feb 27 17:26:05 j722s kernel: omap-mailbox 29020000.mailbox: omap mailbox rev 0x66fca100
    Feb 27 17:26:05 j722s kernel: omap-mailbox 29030000.mailbox: omap mailbox rev 0x66fca100
    Feb 27 17:26:05 j722s kernel: hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    Feb 27 17:26:05 j722s kernel: optee: probing for conduit method.
    Feb 27 17:26:05 j722s kernel: optee: revision 4.2 (12d7c4ee)
    Feb 27 17:26:05 j722s kernel: optee: dynamic shared memory is enabled
    Feb 27 17:26:05 j722s kernel: optee: initialized driver
    Feb 27 17:26:05 j722s kernel: Initializing XFRM netlink socket
    Feb 27 17:26:05 j722s kernel: NET: Registered PF_PACKET protocol family
    Feb 27 17:26:05 j722s kernel: Key type dns_resolver registered
    Feb 27 17:26:05 j722s kernel: registered taskstats version 1
    Feb 27 17:26:05 j722s kernel: Loading compiled-in X.509 certificates
    Feb 27 17:26:05 j722s kernel: ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)')
    Feb 27 17:26:05 j722s kernel: omap_i2c 2b200000.i2c: bus 0 rev0.12 at 400 kHz
    Feb 27 17:26:05 j722s kernel: pca953x 1-0023: supply vcc not found, using dummy regulator
    Feb 27 17:26:05 j722s kernel: pca953x 1-0023: using AI
    Feb 27 17:26:05 j722s kernel: omap_i2c 20000000.i2c: bus 1 rev0.12 at 400 kHz
    Feb 27 17:26:05 j722s kernel: platform connector-hdmi: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    Feb 27 17:26:05 j722s kernel: platform 30220000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b
    Feb 27 17:26:05 j722s kernel: i2c 2-003b: Fixed dependency cycle(s) with /connector-hdmi
    Feb 27 17:26:05 j722s kernel: i2c 2-003b: Fixed dependency cycle(s) with /bus@f0000/dss@30220000
    Feb 27 17:26:05 j722s kernel: omap_i2c 20010000.i2c: bus 2 rev0.12 at 100 kHz
    Feb 27 17:26:05 j722s kernel: pca954x 3-0070: supply vdd not found, using dummy regulator
    Feb 27 17:26:05 j722s kernel: i2c 4-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30/links/link@0/serializer
    Feb 27 17:26:05 j722s kernel: i2c 4-0030: Fixed dependency cycle(s) with /bus@f0000/ticsi2rx@30102000/csi-bridge@30101000
    Feb 27 17:26:05 j722s kernel: i2c i2c-3: Added multiplexed i2c bus 4
    Feb 27 17:26:05 j722s kernel: i2c 5-0030: Fixed dependency cycle(s) with /bus@f0000/ticsi2rx@30122000/csi-bridge@30121000
    Feb 27 17:26:05 j722s kernel: i2c i2c-3: Added multiplexed i2c bus 5
    Feb 27 17:26:05 j722s kernel: pca954x 3-0070: registered 2 multiplexed busses for I2C switch pca9543
    Feb 27 17:26:05 j722s kernel: pca954x 3-0071: supply vdd not found, using dummy regulator
    Feb 27 17:26:05 j722s kernel: i2c i2c-3: Added multiplexed i2c bus 6
    Feb 27 17:26:05 j722s kernel: i2c i2c-3: Added multiplexed i2c bus 7
    Feb 27 17:26:05 j722s kernel: pca954x 3-0071: registered 2 multiplexed busses for I2C switch pca9543
    Feb 27 17:26:05 j722s kernel: omap_i2c 20020000.i2c: bus 3 rev0.12 at 400 kHz
    Feb 27 17:26:05 j722s kernel: ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    Feb 27 17:26:05 j722s kernel: ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    Feb 27 17:26:05 j722s kernel: ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    Feb 27 17:26:05 j722s kernel: ti-sci-inta 4e400000.interrupt-controller: Interrupt Aggregator domain 200 created
    Feb 27 17:26:05 j722s kernel: ti-udma 485c0100.dma-controller: Number of rings: 82
    Feb 27 17:26:05 j722s kernel: ti-udma 485c0100.dma-controller: Channels: 44 (bchan: 16, tchan: 12, rchan: 16)
    Feb 27 17:26:05 j722s kernel: ti-udma 485c0000.dma-controller: Number of rings: 150
    Feb 27 17:26:05 j722s kernel: ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    Feb 27 17:26:05 j722s kernel: ti-udma 4e230000.dma-controller: Number of rings: 40
    Feb 27 17:26:05 j722s kernel: ti-udma 4e230000.dma-controller: Channels: 20 (bchan: 0, tchan: 8, rchan: 12)
    Feb 27 17:26:05 j722s kernel: printk: console [ttyS2] disabled
    Feb 27 17:26:05 j722s kernel: 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 273, base_baud = 3000000) is a 8250
    Feb 27 17:26:05 j722s kernel: printk: console [ttyS2] enabled
    Feb 27 17:26:05 j722s kernel: printk: bootconsole [ns16550a0] disabled
    Feb 27 17:26:05 j722s kernel: spi-nor spi0.0: s28hs512t (65536 Kbytes)
    Feb 27 17:26:05 j722s kernel: 7 fixed-partitions partitions found on MTD device fc40000.spi.0
    Feb 27 17:26:05 j722s kernel: Creating 7 MTD partitions on "fc40000.spi.0":
    Feb 27 17:26:05 j722s kernel: 0x000000000000-0x000000080000 : "ospi.tiboot3"
    Feb 27 17:26:05 j722s kernel: 0x000000080000-0x000000280000 : "ospi.tispl"
    Feb 27 17:26:05 j722s kernel: 0x000000280000-0x000000680000 : "ospi.u-boot"
    Feb 27 17:26:05 j722s kernel: 0x000000680000-0x0000006c0000 : "ospi.env"
    Feb 27 17:26:05 j722s kernel: 0x0000006c0000-0x000000700000 : "ospi.env.backup"
    Feb 27 17:26:05 j722s kernel: 0x000000800000-0x000003fc0000 : "ospi.rootfs"
    Feb 27 17:26:05 j722s kernel: 0x000003fc0000-0x000004000000 : "ospi.phypattern"
    Feb 27 17:26:05 j722s kernel: davinci_mdio 8000f00.mdio: davinci mdio revision 17.7, bus freq 1000000
    Feb 27 17:26:05 j722s kernel: davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
    Feb 27 17:26:05 j722s kernel: am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01903, cpsw version 0x6BA81903 Ports: 3 quirks:00000006
    Feb 27 17:26:05 j722s kernel: am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    Feb 27 17:26:05 j722s kernel: am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    Feb 27 17:26:05 j722s kernel: am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010d, freq:500000000, add_val:1 pps:0
    Feb 27 17:26:05 j722s kernel: am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    Feb 27 17:26:05 j722s kernel: cpu cpu0: _of_add_opp_table_v2: no supported OPPs
    Feb 27 17:26:05 j722s kernel: cpu cpu0: OPP table can't be empty
    Feb 27 17:26:05 j722s kernel: mmc0: CQHCI version 5.10
    Feb 27 17:26:05 j722s kernel: pca953x 2-0020: supply vcc not found, using dummy regulator
    Feb 27 17:26:05 j722s kernel: pca953x 2-0020: using no AI
    Feb 27 17:26:05 j722s kernel: j721e-pcie f102000.pcie: host bridge /bus@f0000/pcie@f102000 ranges:
    Feb 27 17:26:05 j722s kernel: mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    Feb 27 17:26:05 j722s kernel: j721e-pcie f102000.pcie:       IO 0x0068001000..0x0068010fff -> 0x0068001000
    Feb 27 17:26:05 j722s kernel: j721e-pcie f102000.pcie:      MEM 0x0068011000..0x006fffffff -> 0x0068011000
    Feb 27 17:26:05 j722s kernel: j721e-pcie f102000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    Feb 27 17:26:05 j722s kernel: mmc0: Command Queue Engine enabled
    Feb 27 17:26:05 j722s kernel: mmc0: new HS400 MMC card at address 0001
    Feb 27 17:26:05 j722s kernel: mmcblk0: mmc0:0001 G1M15L 29.6 GiB
    Feb 27 17:26:05 j722s kernel:  mmcblk0: p1
    Feb 27 17:26:05 j722s kernel: mmcblk0boot0: mmc0:0001 G1M15L 31.5 MiB
    Feb 27 17:26:05 j722s kernel: mmcblk0boot1: mmc0:0001 G1M15L 31.5 MiB
    Feb 27 17:26:05 j722s kernel: mmcblk0rpmb: mmc0:0001 G1M15L 4.00 MiB, chardev (239:0)
    Feb 27 17:26:05 j722s kernel: j721e-pcie f102000.pcie: PCI host bridge to bus 0000:00
    Feb 27 17:26:05 j722s kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Feb 27 17:26:05 j722s kernel: pci_bus 0000:00: root bus resource [io  0x0000-0xffff] (bus address [0x68001000-0x68010fff])
    Feb 27 17:26:05 j722s kernel: pci_bus 0000:00: root bus resource [mem 0x68011000-0x6fffffff]
    Feb 27 17:26:05 j722s kernel: pci 0000:00:00.0: [104c:b010] type 01 class 0x060400
    Feb 27 17:26:05 j722s kernel: pci 0000:00:00.0: supports D1
    Feb 27 17:26:05 j722s kernel: pci 0000:00:00.0: PME# supported from D0 D1 D3hot
    Feb 27 17:26:05 j722s kernel: pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
    Feb 27 17:26:05 j722s kernel: pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
    Feb 27 17:26:05 j722s kernel: pci 0000:00:00.0: PCI bridge to [bus 01]
    Feb 27 17:26:05 j722s kernel: pcieport 0000:00:00.0: of_irq_parse_pci: failed with rc=-22
    Feb 27 17:26:05 j722s kernel: pcieport 0000:00:00.0: PME: Signaling with IRQ 486
    Feb 27 17:26:05 j722s kernel: pcieport 0000:00:00.0: AER: enabled with IRQ 486
    Feb 27 17:26:05 j722s kernel: mmc1: CQHCI version 5.10
    Feb 27 17:26:05 j722s kernel: debugfs: Directory 'pd:244' with parent 'pm_genpd' already present!
    Feb 27 17:26:05 j722s kernel: debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    Feb 27 17:26:05 j722s kernel: debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    Feb 27 17:26:05 j722s kernel: clk: Disabling unused clocks
    Feb 27 17:26:05 j722s kernel: ALSA device list:
    Feb 27 17:26:05 j722s kernel:   No soundcards found.
    Feb 27 17:26:05 j722s kernel: mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    Feb 27 17:26:05 j722s kernel: mmc1: new ultra high speed SDR104 SDHC card at address aaaa
    Feb 27 17:26:05 j722s kernel: mmcblk1: mmc1:aaaa SH32G 29.7 GiB
    Feb 27 17:26:05 j722s kernel:  mmcblk1: p1 p2
    Feb 27 17:26:05 j722s kernel: EXT4-fs (mmcblk0p1): recovery complete
    Feb 27 17:26:05 j722s kernel: EXT4-fs (mmcblk0p1): mounted filesystem 3ebe0174-1dc0-498e-9e4b-24513a67bb70 r/w with ordered data mode. Quota mode: none.
    Feb 27 17:26:05 j722s kernel: VFS: Mounted root (ext4 filesystem) on device 179:1.
    Feb 27 17:26:05 j722s kernel: devtmpfs: mounted
    Feb 27 17:26:05 j722s kernel: Freeing unused kernel memory: 2432K
    Feb 27 17:26:05 j722s kernel: Run /sbin/hlio-init.sh as init process
    Feb 27 17:26:05 j722s kernel:   with arguments:
    Feb 27 17:26:05 j722s kernel:     /sbin/hlio-init.sh
    Feb 27 17:26:05 j722s kernel:   with environment:
    Feb 27 17:26:05 j722s kernel:     HOME=/
    Feb 27 17:26:05 j722s kernel:     TERM=linux
    Feb 27 17:26:05 j722s kernel: tidss 30200000.dss: failed to init OLDI: -517
    Feb 27 17:26:05 j722s kernel: OF: graph: no port node found in /bus@f0000/dss@30220000/oldi-txes/oldi@1/ports
    Feb 27 17:26:05 j722s kernel: pvrsrvkm: loading out-of-tree module taints kernel.
    Feb 27 17:26:05 j722s kernel: PVR_K:  99: Device: fd80000.gpu
    Feb 27 17:26:05 j722s kernel: PVR_K:  99: Read BVNC 36.53.104.796 from HW device registers
    Feb 27 17:26:05 j722s kernel: PVR_K:  99: RGX Device registered BVNC 36.53.104.796 with 1 core in the system
    Feb 27 17:26:05 j722s kernel: [drm] Initialized pvr 24.1.6554834 20170530 for fd80000.gpu on minor 0
    Feb 27 17:26:05 j722s kernel: tidss 30200000.dss: failed to init OLDI: -517
    Feb 27 17:26:05 j722s kernel: OF: graph: no port node found in /bus@f0000/dss@30220000/oldi-txes/oldi@1/ports
    Feb 27 17:26:05 j722s kernel: sii902x 2-003b: supply iovcc not found, using dummy regulator
    Feb 27 17:26:05 j722s kernel: sii902x 2-003b: supply cvcc12 not found, using dummy regulator
    Feb 27 17:26:05 j722s kernel: i2c i2c-2: Added multiplexed i2c bus 8
    Feb 27 17:26:05 j722s kernel: tidss 30200000.dss: failed to init OLDI: -517
    Feb 27 17:26:05 j722s kernel: OF: graph: no port node found in /bus@f0000/dss@30220000/oldi-txes/oldi@1/ports
    Feb 27 17:26:05 j722s kernel: [drm] Initialized tidss 1.0.0 20180215 for 30220000.dss on minor 1
    Feb 27 17:26:05 j722s kernel: Console: switching to colour frame buffer device 240x67
    Feb 27 17:26:05 j722s systemd[1]: System time before build time, advancing clock.
    Feb 27 17:26:05 j722s kernel: tidss 30220000.dss: [drm] fb0: tidssdrmfb frame buffer device
    Feb 27 17:26:05 j722s kernel: NET: Registered PF_INET6 protocol family
    Feb 27 17:26:05 j722s kernel: Segment Routing with IPv6
    Feb 27 17:26:05 j722s kernel: In-situ OAM (IOAM) with IPv6
    Feb 27 17:26:05 j722s kernel: tidss 30200000.dss: failed to init OLDI: -517
    Feb 27 17:26:05 j722s kernel: tidss 30200000.dss: failed to init OLDI: -517
    Feb 27 17:26:05 j722s systemd[1]: systemd 255.4^ 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)
    Feb 27 17:26:05 j722s systemd[1]: Detected architecture arm64.
    Feb 27 17:26:05 j722s systemd[1]: Hostname set to <j722s>.
    Feb 27 17:26:05 j722s systemd-sysv-generator[142]: SysV service '/etc/init.d/edgeai-launcher.sh' lacks a native systemd unit file. ~ Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it safe, robust and future-proof. ! This compatibility logic is deprecated, expect removal soon. !
    Feb 27 17:26:05 j722s systemd[1]: /usr/lib/systemd/system/bt-enable.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    Feb 27 17:26:05 j722s systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    Feb 27 17:26:05 j722s systemd[1]: Queued start job for default target Graphical Interface.
    Feb 27 17:26:05 j722s systemd[1]: Created slice Slice /system/getty.
    Feb 27 17:26:05 j722s systemd[1]: Created slice Slice /system/modprobe.
    Feb 27 17:26:05 j722s systemd[1]: Created slice Slice /system/serial-getty.
    Feb 27 17:26:05 j722s systemd[1]: Created slice User and Session Slice.
    Feb 27 17:26:05 j722s systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Feb 27 17:26:05 j722s systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Feb 27 17:26:05 j722s systemd[1]: Expecting device /dev/ttyS2...
    Feb 27 17:26:05 j722s systemd[1]: Reached target Path Units.
    Feb 27 17:26:05 j722s systemd[1]: Reached target Remote File Systems.
    Feb 27 17:26:05 j722s systemd[1]: Reached target Slice Units.
    Feb 27 17:26:05 j722s systemd[1]: Reached target Swaps.
    Feb 27 17:26:05 j722s systemd[1]: Listening on RPCbind Server Activation Socket.
    Feb 27 17:26:05 j722s systemd[1]: Reached target RPC Port Mapper.
    Feb 27 17:26:05 j722s systemd[1]: Listening on Process Core Dump Socket.
    Feb 27 17:26:05 j722s systemd[1]: Listening on initctl Compatibility Named Pipe.
    Feb 27 17:26:05 j722s systemd[1]: Listening on Journal Audit Socket.
    Feb 27 17:26:05 j722s systemd[1]: Listening on Journal Socket (/dev/log).
    Feb 27 17:26:05 j722s systemd[1]: Listening on Journal Socket.
    Feb 27 17:26:05 j722s systemd[1]: Listening on Network Service Netlink Socket.
    Feb 27 17:26:05 j722s systemd[1]: Listening on udev Control Socket.
    Feb 27 17:26:05 j722s systemd[1]: Listening on udev Kernel Socket.
    Feb 27 17:26:05 j722s systemd[1]: Listening on User Database Manager Socket.
    Feb 27 17:26:05 j722s systemd[1]: Mounting Huge Pages File System...
    Feb 27 17:26:05 j722s systemd[1]: Mounting POSIX Message Queue File System...
    Feb 27 17:26:05 j722s systemd[1]: Mounting Kernel Debug File System...
    Feb 27 17:26:05 j722s systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    Feb 27 17:26:05 j722s systemd[1]: Starting Create List of Static Device Nodes...
    Feb 27 17:26:05 j722s systemd[1]: Starting Load Kernel Module configfs...
    Feb 27 17:26:05 j722s systemd[1]: Starting Load Kernel Module drm...
    Feb 27 17:26:05 j722s systemd[1]: Starting Load Kernel Module fuse...
    Feb 27 17:26:05 j722s systemd[1]: Starting Start psplash boot splash screen...
    Feb 27 17:26:05 j722s systemd[1]: Starting RPC Bind...
    Feb 27 17:26:05 j722s systemd[1]: Started Boot Process Profiler.
    Feb 27 17:26:05 j722s systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
    Feb 27 17:26:05 j722s systemd[1]: Starting Journal Service...
    Feb 27 17:26:05 j722s kernel: fuse: init (API version 7.39)
    Feb 27 17:26:05 j722s systemd[1]: Starting Load Kernel Modules...
    Feb 27 17:26:05 j722s systemd[1]: Starting Generate network units from Kernel command line...
    Feb 27 17:26:05 j722s systemd[1]: Starting Remount Root and Kernel File Systems...
    Feb 27 17:26:05 j722s systemd[1]: Starting Coldplug All udev Devices...
    Feb 27 17:26:05 j722s systemd[1]: Started RPC Bind.
    Feb 27 17:26:05 j722s systemd[1]: Mounted Huge Pages File System.
    Feb 27 17:26:05 j722s systemd[1]: Mounted POSIX Message Queue File System.
    Feb 27 17:26:05 j722s systemd[1]: Mounted Kernel Debug File System.
    Feb 27 17:26:05 j722s systemd[1]: Finished Create List of Static Device Nodes.
    Feb 27 17:26:05 j722s systemd[1]: modprobe@configfs.service: Deactivated successfully.
    Feb 27 17:26:05 j722s systemd[1]: Finished Load Kernel Module configfs.
    Feb 27 17:26:05 j722s systemd[1]: modprobe@drm.service: Deactivated successfully.
    Feb 27 17:26:05 j722s systemd[1]: Finished Load Kernel Module drm.
    Feb 27 17:26:05 j722s systemd[1]: modprobe@fuse.service: Deactivated successfully.
    Feb 27 17:26:05 j722s kernel: random: crng init done
    Feb 27 17:26:05 j722s systemd[1]: Finished Load Kernel Module fuse.
    Feb 27 17:26:05 j722s kernel: cryptodev: driver 1.13 loaded.
    Feb 27 17:26:05 j722s systemd[1]: Mounting Kernel Configuration File System...
    Feb 27 17:26:05 j722s systemd[1]: Starting Load Kernel Module fuse...
    Feb 27 17:26:05 j722s systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
    Feb 27 17:26:05 j722s kernel: EXT4-fs (mmcblk0p1): re-mounted 3ebe0174-1dc0-498e-9e4b-24513a67bb70 r/w. Quota mode: none.
    Feb 27 17:26:05 j722s systemd[1]: Finished Load Kernel Modules.
    Feb 27 17:26:05 j722s systemd[1]: Finished Generate network units from Kernel command line.
    Feb 27 17:26:05 j722s systemd[1]: Finished Remount Root and Kernel File Systems.
    Feb 27 17:26:05 j722s systemd[1]: Mounted Kernel Configuration File System.
    Feb 27 17:26:05 j722s systemd[1]: modprobe@fuse.service: Deactivated successfully.
    Feb 27 17:26:05 j722s systemd[1]: Finished Load Kernel Module fuse.
    Feb 27 17:26:05 j722s systemd-journald[159]: Collecting audit messages is enabled.
    Feb 27 17:26:05 j722s kernel: PVR_K:  114: RGX Firmware image 'rgx.fw.36.53.104.796' loaded
    Feb 27 17:26:05 j722s kernel: PVR_K:  114: Shader binary image 'rgx.sh.36.53.104.796' loaded
    Feb 27 17:26:05 j722s systemd[1]: Mounting NFSD configuration filesystem...
    Feb 27 17:26:05 j722s systemd[1]: Mounting FUSE Control File System...
    Feb 27 17:26:05 j722s systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
    Feb 27 17:26:05 j722s systemd[1]: Starting Apply Kernel Variables...
    Feb 27 17:26:05 j722s systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a
    Feb 27 17:26:05 j722s systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'.
    Feb 27 17:26:05 j722s systemd[1]: Failed to mount NFSD configuration filesystem.
    Feb 27 17:26:05 j722s kernel: weston[114]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
    Feb 27 17:26:05 j722s systemd[1]: Dependency failed for NFS server and services.
    Feb 27 17:26:05 j722s systemd[1]: Dependency failed for NFS Mount Daemon.
    Feb 27 17:26:05 j722s systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'.
    Feb 27 17:26:05 j722s systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'.
    Feb 27 17:26:05 j722s systemd[1]: Mounted FUSE Control File System.
    Feb 27 17:26:05 j722s systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
    Feb 27 17:26:05 j722s systemd[1]: Create System Users was skipped because no trigger condition checks were met.
    Feb 27 17:26:05 j722s systemd[1]: Starting Create Static Device Nodes in /dev...
    Feb 27 17:26:05 j722s systemd-journald[159]: Journal started
    Feb 27 17:26:05 j722s systemd-journald[159]: Runtime Journal (/run/log/journal/0a630c8985aa44b1836466651ebed29d) is 8.0M, max 64.0M, 56.0M free.
    Feb 27 17:26:04 j722s systemd-modules-load[160]: Inserted module 'cryptodev'
    Feb 27 17:26:05 j722s systemd[1]: Started Journal Service.
    Feb 27 17:26:05 j722s systemd[1]: Starting Flush Journal to Persistent Storage...
    Feb 27 17:26:05 j722s mount[172]: mount: /proc/fs/nfsd: unknown filesystem type 'nfsd'.
    Feb 27 17:26:05 j722s mount[172]:        dmesg(1) may have more information after failed mount system call.
    Feb 27 17:26:05 j722s systemd-sysctl[179]: Couldn't write '1' to 'net/ipv4/tcp_syncookies', ignoring: No such file or directory
    Feb 27 17:26:05 j722s systemd[1]: Finished Apply Kernel Variables.
    Feb 27 17:26:05 j722s systemd-journald[159]: Runtime Journal (/run/log/journal/0a630c8985aa44b1836466651ebed29d) is 8.0M, max 64.0M, 56.0M free.
    Feb 27 17:26:05 j722s systemd-journald[159]: Received client request to flush runtime journal.
    Feb 27 17:26:05 j722s systemd[1]: Finished Create Static Device Nodes in /dev.
    Feb 27 17:26:05 j722s systemd[1]: Finished Flush Journal to Persistent Storage.
    Feb 27 17:26:05 j722s systemd[1]: Reached target Preparation for Local File Systems.
    Feb 27 17:26:05 j722s systemd[1]: Mounting /var/volatile...
    Feb 27 17:26:05 j722s audit: BPF prog-id=6 op=LOAD
    Feb 27 17:26:05 j722s audit: BPF prog-id=7 op=LOAD
    Feb 27 17:26:05 j722s kernel: audit: type=1334 audit(1709054765.288:2): prog-id=6 op=LOAD
    Feb 27 17:26:05 j722s kernel: audit: type=1334 audit(1709054765.292:3): prog-id=7 op=LOAD
    Feb 27 17:26:05 j722s systemd[1]: Starting Rule-based Manager for Device Events and Files...
    Feb 27 17:26:05 j722s systemd[1]: Mounted /var/volatile.
    Feb 27 17:26:05 j722s systemd[1]: Bind mount volatile /var/cache was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/var/cache).
    Feb 27 17:26:05 j722s systemd[1]: Bind mount volatile /var/lib was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/var/lib).
    Feb 27 17:26:05 j722s systemd[1]: Starting Load/Save OS Random Seed...
    Feb 27 17:26:05 j722s systemd[1]: Bind mount volatile /var/spool was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/var/spool).
    Feb 27 17:26:05 j722s systemd[1]: Bind mount volatile /srv was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/srv).
    Feb 27 17:26:05 j722s systemd[1]: Reached target Local File Systems.
    Feb 27 17:26:05 j722s systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
    Feb 27 17:26:05 j722s systemd[1]: Starting Create Volatile Files and Directories...
    Feb 27 17:26:05 j722s systemd-udevd[204]: Using default interface naming scheme 'v255'.
    Feb 27 17:26:05 j722s systemd-tmpfiles[207]: /usr/lib/tmpfiles.d/legacy.conf:13: Duplicate line for path "/run/lock", ignoring.
    Feb 27 17:26:05 j722s systemd[1]: Finished Load/Save OS Random Seed.
    Feb 27 17:26:05 j722s systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
    Feb 27 17:26:05 j722s systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
    Feb 27 17:26:05 j722s systemd-tmpfiles[207]: "/var/log" already exists and is not a directory.
    Feb 27 17:26:05 j722s systemd-tmpfiles[207]: "/var/tmp" already exists and is not a directory.
    Feb 27 17:26:05 j722s systemd[1]: Finished Create Volatile Files and Directories.
    Feb 27 17:26:05 j722s systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
    Feb 27 17:26:05 j722s audit: BPF prog-id=8 op=LOAD
    Feb 27 17:26:05 j722s kernel: audit: type=1334 audit(1709054765.520:4): prog-id=8 op=LOAD
    Feb 27 17:26:05 j722s audit: BPF prog-id=9 op=LOAD
    Feb 27 17:26:05 j722s kernel: audit: type=1334 audit(1709054765.556:5): prog-id=9 op=LOAD
    Feb 27 17:26:05 j722s systemd[1]: Starting Network Name Resolution...
    Feb 27 17:26:05 j722s systemd[1]: Starting Network Time Synchronization...
    Feb 27 17:26:05 j722s systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
    Feb 27 17:26:05 j722s systemd[1]: Starting Record System Boot/Shutdown in UTMP...
    Feb 27 17:26:05 j722s systemd[1]: Started Rule-based Manager for Device Events and Files.
    Feb 27 17:26:05 j722s audit: BPF prog-id=10 op=LOAD
    Feb 27 17:26:05 j722s audit: BPF prog-id=11 op=LOAD
    Feb 27 17:26:05 j722s audit: BPF prog-id=12 op=LOAD
    Feb 27 17:26:05 j722s kernel: audit: type=1334 audit(1709054765.580:6): prog-id=10 op=LOAD
    Feb 27 17:26:05 j722s kernel: audit: type=1334 audit(1709054765.584:7): prog-id=11 op=LOAD
    Feb 27 17:26:05 j722s kernel: audit: type=1334 audit(1709054765.584:8): prog-id=12 op=LOAD
    Feb 27 17:26:05 j722s systemd[1]: Starting User Database Manager...
    Feb 27 17:26:05 j722s systemd[1]: Finished Record System Boot/Shutdown in UTMP.
    Feb 27 17:26:05 j722s systemd[1]: Started User Database Manager.
    Feb 27 17:26:05 j722s systemd-udevd[204]: Failed to touch /run/udev/queue, ignoring: File exists
    Feb 27 17:26:05 j722s systemd[1]: Finished Coldplug All udev Devices.
    Feb 27 17:26:06 j722s root[262]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[268]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[259]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[265]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[269]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[271]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[272]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[270]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[290]: udev/mount.sh [/dev/loop5] is marked to ignore
    Feb 27 17:26:06 j722s root[299]: udev/mount.sh [/dev/loop2] is marked to ignore
    Feb 27 17:26:06 j722s root[300]: udev/mount.sh [/dev/loop1] is marked to ignore
    Feb 27 17:26:06 j722s root[305]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[297]: udev/mount.sh [/dev/loop0] is marked to ignore
    Feb 27 17:26:06 j722s root[304]: udev/mount.sh [/dev/loop7] is marked to ignore
    Feb 27 17:26:06 j722s root[306]: udev/mount.sh [/dev/loop3] is marked to ignore
    Feb 27 17:26:06 j722s root[313]: udev/mount.sh [/dev/loop4] is marked to ignore
    Feb 27 17:26:06 j722s root[310]: udev/mount.sh [/dev/loop6] is marked to ignore
    Feb 27 17:26:06 j722s systemd-timesyncd[216]: /etc/systemd/timesyncd.conf:14: Assignment outside of section. Ignoring.
    Feb 27 17:26:06 j722s root[315]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s systemd[1]: Started Network Time Synchronization.
    Feb 27 17:26:06 j722s root[318]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s systemd-resolved[211]: Positive Trust Anchors:
    Feb 27 17:26:06 j722s systemd-resolved[211]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
    Feb 27 17:26:06 j722s systemd-resolved[211]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 170.0.0.192.in-addr.arpa 171.0.0.192.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa ipv4only.arpa corp home internal intranet lan local private test
    Feb 27 17:26:06 j722s systemd-resolved[211]: Using system hostname 'j722s'.
    Feb 27 17:26:06 j722s systemd[1]: Found device /dev/ttyS2.
    Feb 27 17:26:06 j722s root[331]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[325]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[334]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s systemd[1]: Started Network Name Resolution.
    Feb 27 17:26:06 j722s root[345]: udev/mount.sh [/dev/mtdblock6] is marked to ignore
    Feb 27 17:26:06 j722s root[352]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[371]: udev/mount.sh [/dev/mtdblock0] is marked to ignore
    Feb 27 17:26:06 j722s root[360]: udev/mount.sh [/dev/loop3] is marked to ignore
    Feb 27 17:26:06 j722s root[379]: udev/mount.sh [/dev/mtdblock1] is marked to ignore
    Feb 27 17:26:06 j722s (udev-worker)[215]: loop3: Failed to add inotify watch, ignoring: File exists
    Feb 27 17:26:06 j722s root[365]: udev/mount.sh [/dev/loop1] is marked to ignore
    Feb 27 17:26:06 j722s root[380]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[385]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[384]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[402]: udev/mount.sh [/dev/loop6] is marked to ignore
    Feb 27 17:26:06 j722s (udev-worker)[258]: loop6: Failed to add inotify watch, ignoring: File exists
    Feb 27 17:26:06 j722s root[394]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[393]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[406]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[408]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[410]: udev/mount.sh [/dev/mtdblock5] is marked to ignore
    Feb 27 17:26:06 j722s root[427]: udev/mount.sh [/dev/loop2] is marked to ignore
    Feb 27 17:26:06 j722s root[419]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[432]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s (udev-worker)[231]: loop2: Failed to add inotify watch, ignoring: File exists
    Feb 27 17:26:06 j722s root[430]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[425]: udev/mount.sh [/dev/loop0] is marked to ignore
    Feb 27 17:26:06 j722s root[440]: udev/mount.sh [/dev/loop4] is marked to ignore
    Feb 27 17:26:06 j722s root[438]: udev/mount.sh [/dev/loop5] is marked to ignore
    Feb 27 17:26:06 j722s root[424]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[445]: udev/mount.sh [/dev/mtdblock4] is marked to ignore
    Feb 27 17:26:06 j722s root[442]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[457]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[464]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[465]: udev/mount.sh [/dev/loop7] is marked to ignore
    Feb 27 17:26:06 j722s root[462]: udev/mount.sh [/dev/mtdblock2] is marked to ignore
    Feb 27 17:26:06 j722s root[469]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[478]: udev/mount.sh [/dev/mtdblock3] is marked to ignore
    Feb 27 17:26:06 j722s root[496]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[483]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[489]: Using systemd-mount to finish mount
    Feb 27 17:26:06 j722s root[505]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s root[510]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s root[546]: udev/mount.sh [/dev/mtdblock6] is marked to ignore
    Feb 27 17:26:07 j722s root[551]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s root[553]: udev/mount.sh [/dev/mtdblock2] is marked to ignore
    Feb 27 17:26:07 j722s root[570]: udev/mount.sh [/dev/mtdblock4] is marked to ignore
    Feb 27 17:26:07 j722s root[569]: udev/mount.sh [/dev/mtdblock0] is marked to ignore
    Feb 27 17:26:07 j722s root[571]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s root[600]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s root[603]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s root[606]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s root[611]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s root[613]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s root[629]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s root[630]: udev/mount.sh [/dev/mtdblock3] is marked to ignore
    Feb 27 17:26:07 j722s root[632]: udev/mount.sh [/dev/mtdblock5] is marked to ignore
    Feb 27 17:26:07 j722s root[645]: udev/mount.sh [/dev/mtdblock1] is marked to ignore
    Feb 27 17:26:07 j722s root[649]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s systemd[1]: Reached target Host and Network Name Lookups.
    Feb 27 17:26:07 j722s systemd[1]: Reached target System Initialization.
    Feb 27 17:26:07 j722s systemd[1]: Started Daily Cleanup of Temporary Directories.
    Feb 27 17:26:07 j722s systemd[1]: Reached target System Time Set.
    Feb 27 17:26:07 j722s systemd[1]: logrotate.timer: Not using persistent file timestamp Wed 2024-02-28 00:00:23 UTC as it is in the future.
    Feb 27 17:26:07 j722s systemd[1]: Started Daily rotation of log files.
    Feb 27 17:26:07 j722s systemd[1]: Reached target Timer Units.
    Feb 27 17:26:07 j722s systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    Feb 27 17:26:07 j722s systemd[1]: Listening on D-Bus System Message Bus Socket.
    Feb 27 17:26:07 j722s systemd[1]: Starting Docker Socket for the API...
    Feb 27 17:26:07 j722s systemd[1]: Listening on dropbear.socket.
    Feb 27 17:26:07 j722s systemd[1]: Listening on PC/SC Smart Card Daemon Activation Socket.
    Feb 27 17:26:07 j722s systemd[1]: Starting Weston socket...
    Feb 27 17:26:07 j722s audit: BPF prog-id=13 op=LOAD
    Feb 27 17:26:07 j722s kernel: audit: type=1334 audit(1709054767.708:9): prog-id=13 op=LOAD
    Feb 27 17:26:07 j722s systemd[1]: Starting D-Bus System Message Bus...
    Feb 27 17:26:07 j722s systemd[1]: Starting Reboot and dump vmcore via kexec...
    Feb 27 17:26:07 j722s systemd[1]: Listening on Docker Socket for the API.
    Feb 27 17:26:07 j722s systemd[1]: Listening on Weston socket.
    Feb 27 17:26:07 j722s systemd[1]: Reached target Socket Units.
    Feb 27 17:26:07 j722s kernel: CAN device driver interface
    Feb 27 17:26:07 j722s kdump-helper[673]: No makedumpfile found.
    Feb 27 17:26:07 j722s root[680]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s systemd[1]: Finished Reboot and dump vmcore via kexec.
    Feb 27 17:26:07 j722s root[676]: Using systemd-mount to finish mount
    Feb 27 17:26:07 j722s systemd[1]: Started D-Bus System Message Bus.
    Feb 27 17:26:07 j722s systemd[1]: Reached target Basic System.
    Feb 27 17:26:07 j722s dbus-broker-lau[672]: Ready
    Feb 27 17:26:07 j722s systemd[1]: Started Job spooling tools.
    Feb 27 17:26:07 j722s kernel: mc: Linux media interface: v0.10
    Feb 27 17:26:08 j722s kernel: videodev: Linux video capture interface: v2.00
    Feb 27 17:26:08 j722s systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
    Feb 27 17:26:08 j722s kernel: tidss 30200000.dss: failed to init OLDI: -517
    Feb 27 17:26:08 j722s avahi-daemon[731]: Found user 'avahi' (UID 996) and group 'avahi' (GID 991).
    Feb 27 17:26:08 j722s kernel: tidss 30200000.dss: failed to init OLDI: -517
    Feb 27 17:26:08 j722s kernel: k3-dsp-rproc 7e000000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@ad000000
    Feb 27 17:26:08 j722s kernel: k3-dsp-rproc 7e000000.dsp: configured DSP for remoteproc mode
    Feb 27 17:26:08 j722s kernel: k3-dsp-rproc 7e000000.dsp: local reset is deasserted for device
    Feb 27 17:26:08 j722s kernel: tidss 30200000.dss: failed to init OLDI: -517
    Feb 27 17:26:08 j722s kernel: ds90ub960 4-0030: supply vddio not found, using dummy regulator
    Feb 27 17:26:08 j722s kernel: remoteproc remoteproc0: 7e000000.dsp is available
    Feb 27 17:26:08 j722s kernel: k3-dsp-rproc 7e200000.dsp: assigned reserved memory node vision-apps-c71_1-dma-memory@b1000000
    Feb 27 17:26:08 j722s kernel: k3-dsp-rproc 7e200000.dsp: configured DSP for remoteproc mode
    Feb 27 17:26:08 j722s kernel: k3-dsp-rproc 7e200000.dsp: local reset is deasserted for device
    Feb 27 17:26:08 j722s kernel: remoteproc remoteproc1: 7e200000.dsp is available
    Feb 27 17:26:08 j722s kernel: remoteproc remoteproc0: powering up 7e000000.dsp
    Feb 27 17:26:08 j722s kernel: remoteproc remoteproc0: Booting fw image j722s-c71_0-fw, size 11821224
    Feb 27 17:26:08 j722s kernel: k3-dsp-rproc 7e000000.dsp: booting DSP core using boot addr = 0xad200000
    Feb 27 17:26:08 j722s kernel: remoteproc remoteproc1: powering up 7e200000.dsp
    Feb 27 17:26:08 j722s kernel: remoteproc remoteproc1: Booting fw image j722s-c71_1-fw, size 11821224
    Feb 27 17:26:09 j722s kernel: rproc-virtio rproc-virtio.1.auto: assigned reserved memory node vision-apps-c71-dma-memory@ad000000
    Feb 27 17:26:09 j722s kernel: tidss 30200000.dss: failed to init OLDI: -517
    Feb 27 17:26:09 j722s kernel: vdec 30210000.video-codec: Added wave5 driver with caps: 'ENCODE' 'DECODE'
    Feb 27 17:26:09 j722s kernel: vdec 30210000.video-codec: Product Code:      0x521c
    Feb 27 17:26:09 j722s kernel: vdec 30210000.video-codec: Firmware Revision: 320127
    Feb 27 17:26:09 j722s kernel: virtio_rpmsg_bus virtio0: rpmsg host is online
    Feb 27 17:26:09 j722s kernel: rproc-virtio rproc-virtio.1.auto: registered virtio0 (type 7)
    Feb 27 17:26:09 j722s kernel: remoteproc remoteproc0: remote processor 7e000000.dsp is now up
    Feb 27 17:26:09 j722s kernel: virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xd
    Feb 27 17:26:09 j722s kernel: k3-dsp-rproc 7e200000.dsp: booting DSP core using boot addr = 0xb1200000
    Feb 27 17:26:09 j722s kernel: rproc-virtio rproc-virtio.2.auto: assigned reserved memory node vision-apps-c71_1-dma-memory@b1000000
    Feb 27 17:26:09 j722s kernel: virtio_rpmsg_bus virtio1: rpmsg host is online
    Feb 27 17:26:09 j722s kernel: rproc-virtio rproc-virtio.2.auto: registered virtio1 (type 7)
    Feb 27 17:26:09 j722s kernel: remoteproc remoteproc1: remote processor 7e200000.dsp is now up
    Feb 27 17:26:09 j722s kernel: virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xd
    Feb 27 17:26:09 j722s kernel: ds90ub960 4-0030: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30/links/link@0/serializer
    Feb 27 17:26:09 j722s kernel: i2c 4-0044: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30
    Feb 27 17:26:09 j722s kernel: i2c 4-0044: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30/links/link@0/serializer/i2c/sensor@10
    Feb 27 17:26:09 j722s kernel: tidss 30200000.dss: failed to init OLDI: -517
    Feb 27 17:26:09 j722s kernel: ds90ub960 5-0030: supply vddio not found, using dummy regulator
    Feb 27 17:26:09 j722s kernel: ds90ub960 5-0030: ub960_write: cannot write register 0x01 (-121)!
    Feb 27 17:26:09 j722s kernel: ds90ub960 5-0030: reset failed: -121
    Feb 27 17:26:09 j722s kernel: ds90ub960 5-0030: ub960_read: cannot read register 0x03 (-121)!
    Feb 27 17:26:09 j722s kernel: ds90ub960 5-0030: error -EREMOTEIO: Cannot read first register, abort
    Feb 27 17:26:09 j722s kernel: ds90ub960: probe of 5-0030 failed with error -121
    Feb 27 17:26:09 j722s kernel: rtc-ti-k3 2b1f0000.rtc: Clock rate 32552 is not 32768! Could misbehave!
    Feb 27 17:26:09 j722s kernel: platform 79000000.r5f: configured R5F for remoteproc mode
    Feb 27 17:26:09 j722s kernel: platform 79000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a1000000
    Feb 27 17:26:09 j722s kernel: remoteproc remoteproc2: 79000000.r5f is available
    Jan 01 00:00:08 j722s kernel: remoteproc remoteproc2: powering up 79000000.r5f
    Jan 01 00:00:08 j722s kernel: remoteproc remoteproc2: Booting fw image j722s-mcu-r5f0_0-fw, size 50228
    Jan 01 00:00:08 j722s kernel: tidss 30200000.dss: failed to init OLDI: -517
    Jan 01 00:00:08 j722s kernel: audit: type=1334 audit(1709054769.484:10): prog-id=14 op=LOAD
    Jan 01 00:00:08 j722s kernel: audit: type=1334 audit(1709054769.520:11): prog-id=15 op=LOAD
    Jan 01 00:00:08 j722s kernel: audit: type=1334 audit(1709054769.552:12): prog-id=16 op=LOAD
    Jan 01 00:00:08 j722s kernel: rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    Jan 01 00:00:08 j722s kernel: rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:08 UTC (8)
    Jan 01 00:00:08 j722s kernel: e5010 fd20000.e5010: Device registered as /dev/video2
    Jan 01 00:00:08 j722s kernel: rproc-virtio rproc-virtio.3.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a1000000
    Jan 01 00:00:08 j722s kernel: virtio_rpmsg_bus virtio2: rpmsg host is online
    Jan 01 00:00:08 j722s kernel: rproc-virtio rproc-virtio.3.auto: registered virtio2 (type 7)
    Jan 01 00:00:08 j722s kernel: remoteproc remoteproc2: remote processor 79000000.r5f is now up
    Jan 01 00:00:08 j722s kernel: platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    Jan 01 00:00:08 j722s kernel: m_can_platform 4e08000.can: m_can device registered (irq=502, version=32)
    Jan 01 00:00:08 j722s kernel: platform 78000000.r5f: configured R5F for IPC-only mode
    Jan 01 00:00:08 j722s kernel: platform 78000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    Jan 01 00:00:08 j722s kernel: remoteproc remoteproc3: 78000000.r5f is available
    Jan 01 00:00:08 j722s kernel: remoteproc remoteproc3: attaching to 78000000.r5f
    Jan 01 00:00:08 j722s kernel: platform 78000000.r5f: R5F core initialized in IPC-only mode
    Jan 01 00:00:08 j722s kernel: rproc-virtio rproc-virtio.5.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    Jan 01 00:00:08 j722s kernel: virtio_rpmsg_bus virtio2: creating channel ti.ipc4.ping-pong addr 0xd
    Jan 01 00:00:08 j722s kernel: virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xe
    Jan 01 00:00:08 j722s kernel: panel-simple display: supply power not found, using dummy regulator
    Jan 01 00:00:08 j722s kernel: m_can_platform 4e18000.can: m_can device registered (irq=503, version=32)
    Jan 01 00:00:08 j722s kernel: m_can_platform 20701000.can: m_can device registered (irq=504, version=32)
    Jan 01 00:00:08 j722s kernel: OF: graph: no port node found in /bus@f0000/dss@30200000/oldi-txes/oldi@1/ports
    Jan 01 00:00:08 j722s kernel: virtio_rpmsg_bus virtio3: rpmsg host is online
    Jan 01 00:00:08 j722s kernel: rproc-virtio rproc-virtio.5.auto: registered virtio3 (type 7)
    Jan 01 00:00:08 j722s kernel: remoteproc remoteproc3: remote processor 78000000.r5f is now attached
    Jan 01 00:00:08 j722s kernel: virtio_rpmsg_bus virtio3: creating channel ti.ipc4.ping-pong addr 0xd
    Jan 01 00:00:08 j722s kernel: [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 2
    Jan 01 00:00:08 j722s kernel: tidss 30200000.dss: [drm] fb1: tidssdrmfb frame buffer device
    Jan 01 00:00:08 j722s kernel: platform 78400000.r5f: configured R5F for remoteproc mode
    Jan 01 00:00:08 j722s kernel: virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0xe
    Jan 01 00:00:08 j722s kernel: platform 78400000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
    Jan 01 00:00:08 j722s systemd-journald[159]: Time jumped backwards, rotating.
    Jan 01 00:00:08 j722s kernel: remoteproc remoteproc4: 78400000.r5f is available
    Jan 01 00:00:09 j722s kernel: remoteproc remoteproc4: powering up 78400000.r5f
    Jan 01 00:00:09 j722s kernel: remoteproc remoteproc4: Booting fw image j722s-main-r5f0_0-fw, size 600992
    Jan 01 00:00:09 j722s kernel: rproc-virtio rproc-virtio.6.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
    Jan 01 00:00:09 j722s kernel: i2c 5-0030: Fixed dependency cycle(s) with /bus@f0000/ticsi2rx@30122000/csi-bridge@30121000
    Jan 01 00:00:09 j722s kernel: platform 30121000.csi-bridge: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@1/deser@30
    Jan 01 00:00:09 j722s kernel: virtio_rpmsg_bus virtio4: rpmsg host is online
    Jan 01 00:00:09 j722s kernel: rproc-virtio rproc-virtio.6.auto: registered virtio4 (type 7)
    Jan 01 00:00:09 j722s kernel: remoteproc remoteproc4: remote processor 78400000.r5f is now up
    Jan 01 00:00:09 j722s kernel: virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0xd
    Jan 01 00:00:09 j722s kernel: virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0x15
    Jan 01 00:00:09 j722s kernel: virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0x15
    Jan 01 00:00:09 j722s kernel: virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0x15
    Jan 01 00:00:09 j722s kernel: virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xe
    Jan 01 00:00:09 j722s kernel: virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xe
    Jan 01 00:00:09 j722s kernel: virtio_rpmsg_bus virtio4: creating channel ti.ipc4.ping-pong addr 0xe
    Jan 01 00:00:09 j722s kernel: virtio_rpmsg_bus virtio0: msg received with no recipient
    Jan 01 00:00:09 j722s kernel: virtio_rpmsg_bus virtio4: msg received with no recipient
    Jan 01 00:00:09 j722s kernel: virtio_rpmsg_bus virtio1: msg received with no recipient
    Jan 01 00:00:09 j722s kernel: audit: type=1334 audit(9.200:13): prog-id=17 op=LOAD
    Feb 27 17:26:09 j722s audit: BPF prog-id=14 op=LOAD
    Feb 27 17:26:09 j722s audit: BPF prog-id=15 op=LOAD
    Feb 27 17:26:09 j722s audit: BPF prog-id=16 op=LOAD
    Jan 01 00:00:09 j722s audit: BPF prog-id=17 op=LOAD
    Feb 27 17:26:08 j722s systemd[1]: Started Periodic Command Scheduler.
    Feb 27 17:26:08 j722s crond[748]: (CRON) STARTUP (1.7.2)
    Feb 27 17:26:08 j722s systemd[1]: Starting Print notice about GPLv3 packages...
    Feb 27 17:26:08 j722s crond[748]: (CRON) INFO (Syslog will be used instead of sendmail.)
    Feb 27 17:26:08 j722s systemd[1]: Starting IPv6 Packet Filtering Framework...
    Feb 27 17:26:08 j722s crond[748]: (CRON) INFO (RANDOM_DELAY will be scaled with factor 24% if used.)
    Feb 27 17:26:08 j722s systemd[1]: Starting IPv4 Packet Filtering Framework...
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ arch_timer(11) guessed as class 0
    Feb 27 17:26:09 j722s systemd[1]: Started irqbalance daemon.
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ mbox-c7x-0(16) guessed as class 0
    Feb 27 17:26:09 j722s systemd[1]: Starting Expand the rootfs partition to full size of the boot device....
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ mbox-c7x-1(17) guessed as class 0
    Feb 27 17:26:09 j722s systemd[1]: Started strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf.
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ arm-pmu(18) guessed as class 0
    Jan 01 00:00:09 j722s ipsec[780]: Starting strongSwan 5.9.14 IPsec [starter]...
    Jan 01 00:00:09 j722s ipsec[780]: charon (821) started after 420 ms
    Feb 27 17:26:09 j722s (qbalance)[764]: irqbalanced.service: Referenced but unset environment variable evaluates to an empty string: IRQBALANCE_ARGS
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 4d000000.mailbox thr_012(19) guessed as class 0
    Jan 01 00:00:08 j722s systemd-resolved[211]: Clock change detected. Flushing caches.
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 2b200000.i2c(25) guessed as class 0
    Jan 01 00:00:08 j722s systemd[1]: Starting User Login Management...
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: No directory /sys/devices/platform/20000000.i2c/: No such file or directory
    Jan 01 00:00:08 j722s systemd[1]: Starting Telnet Server...
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 20000000.i2c(26) guessed as class 0
    Jan 01 00:00:08 j722s systemd[1]: Finished IPv6 Packet Filtering Framework.
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: No directory /sys/devices/platform/20010000.i2c/: No such file or directory
    Jan 01 00:00:08 j722s systemd[1]: Finished IPv4 Packet Filtering Framework.
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 20010000.i2c(27) guessed as class 0
    Jan 01 00:00:08 j722s systemd[1]: Finished Expand the rootfs partition to full size of the boot device..
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: No directory /sys/devices/platform/20020000.i2c/: No such file or directory
    Jan 01 00:00:08 j722s systemd[1]: Finished Telnet Server.
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 20020000.i2c(28) guessed as class 0
    Jan 01 00:00:09 j722s systemd[1]: Started Avahi mDNS/DNS-SD Stack.
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 485c0100.dma-controller chan0(29) guessed as class 0
    Jan 01 00:00:09 j722s systemd[1]: Created slice Slice /system/systemd-fsck.
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 485c0100.dma-controller chan1(45) guessed as class 0
    Jan 01 00:00:09 j722s systemd[1]: Expecting device /dev/mmcblk1p1...
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 485c0100.dma-controller chan1(57) guessed as class 0
    Jan 01 00:00:09 j722s systemd[1]: Expecting device /dev/mmcblk1p2...
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 485c0100.dma-controller chan2(69) guessed as class 0
    Jan 01 00:00:09 j722s systemd[1]: Reached target Preparation for Network.
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 485c0100.dma-controller chan2(85) guessed as class 0
    Jan 01 00:00:09 j722s systemd[1]: Starting Network Configuration...
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 8000000.ethernet-tx0(111) guessed as class 5
    Jan 01 00:00:09 j722s systemd-logind[812]: New seat seat0.
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 8000000.ethernet-tx1(119) guessed as class 5
    Jan 01 00:00:09 j722s systemd[1]: Started User Login Management.
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 8000000.ethernet-tx2(127) guessed as class 5
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 8000000.ethernet-tx3(135) guessed as class 5
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 8000000.ethernet-tx4(143) guessed as class 5
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 8000000.ethernet-tx5(151) guessed as class 5
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 8000000.ethernet-tx6(159) guessed as class 5
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 8000000.ethernet-tx7(167) guessed as class 5
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 485c0000.dma-controller chan2(183) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 8000000.ethernet(201) guessed as class 5
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 485c0000.dma-controller chan0(225) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 485c0000.dma-controller chan1(226) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 2800000.serial(273) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ fc40000.spi(274) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 8000000.ethernet(276) guessed as class 5
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ mmc0(288) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ -davinci_gpio  2-0020(387) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ j721e-pcie-link-down-irq(485) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ PCIe PME, aerdrv(486) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ mmc1(487) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ pvrsrvkm(488) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 2-003b(489) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ tidss(490) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 2b10000.audio-controller_rx(494) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 2b10000.audio-controller_tx(495) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ vpu_irq(496) guessed as class 0
    Feb 27 17:26:09 j722s /usr/sbin/irqbalance[764]: IRQ 2b1f0000.rtc(509) guessed as class 0
    Jan 01 00:00:08 j722s ipsec_starter[780]: Starting strongSwan 5.9.14 IPsec [starter]...
    Jan 01 00:00:08 j722s charon[821]: 00[DMN] Starting IKE charon daemon (strongSwan 5.9.14, Linux 6.6.32-ti-gdb8871293143-dirty, aarch64)
    Jan 01 00:00:08 j722s charon[821]: 00[LIB] providers loaded by OpenSSL: legacy default
    Jan 01 00:00:08 j722s avahi-daemon[731]: Successfully dropped root privileges.
    Jan 01 00:00:09 j722s systemd[1]: Found device /dev/mmcblk1p2.
    Jan 01 00:00:08 j722s avahi-daemon[731]: avahi-daemon 0.8 starting up.
    Jan 01 00:00:08 j722s charon[821]: 00[CFG] using '/sbin/resolvconf' to install DNS servers
    Jan 01 00:00:08 j722s avahi-daemon[731]: Successfully called chroot().
    Jan 01 00:00:08 j722s avahi-daemon[731]: Successfully dropped remaining capabilities.
    Jan 01 00:00:08 j722s avahi-daemon[731]: No service file found in /etc/avahi/services.
    Jan 01 00:00:08 j722s avahi-daemon[731]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
    Jan 01 00:00:08 j722s avahi-daemon[731]: New relevant interface lo.IPv6 for mDNS.
    Jan 01 00:00:08 j722s avahi-daemon[731]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
    Jan 01 00:00:08 j722s avahi-daemon[731]: New relevant interface lo.IPv4 for mDNS.
    Jan 01 00:00:08 j722s avahi-daemon[731]: Network interface enumeration completed.
    Jan 01 00:00:08 j722s avahi-daemon[731]: Registering new address record for ::1 on lo.*.
    Jan 01 00:00:08 j722s avahi-daemon[731]: Registering new address record for 127.0.0.1 on lo.IPv4.
    Jan 01 00:00:08 j722s charon[821]: 00[KNL] received netlink error: Unknown device type (95)
    Jan 01 00:00:08 j722s charon[821]: 00[KNL] failed to create XFRM interface 'xfrmi-test-1241'
    Jan 01 00:00:08 j722s charon[821]: 00[KNL] received netlink error: Operation not supported (95)
    Jan 01 00:00:08 j722s charon[821]: 00[KNL] unable to create IPv4 routing table rule
    Jan 01 00:00:08 j722s charon[821]: 00[KNL] received netlink error: Operation not supported (95)
    Jan 01 00:00:08 j722s charon[821]: 00[KNL] unable to create IPv6 routing table rule
    Jan 01 00:00:08 j722s charon[821]: 00[CFG] loading ca certificates from '/etc/ipsec.d/cacerts'
    Jan 01 00:00:08 j722s charon[821]: 00[CFG] loading aa certificates from '/etc/ipsec.d/aacerts'
    Jan 01 00:00:08 j722s charon[821]: 00[CFG] loading ocsp signer certificates from '/etc/ipsec.d/ocspcerts'
    Jan 01 00:00:08 j722s charon[821]: 00[CFG] loading attribute certificates from '/etc/ipsec.d/acerts'
    Jan 01 00:00:08 j722s charon[821]: 00[CFG] loading crls from '/etc/ipsec.d/crls'
    Jan 01 00:00:08 j722s charon[821]: 00[CFG] loading secrets from '/etc/ipsec.secrets'
    Jan 01 00:00:09 j722s charon[821]: 00[LIB] loaded plugins: charon aes des rc2 sha2 sha1 md5 mgf1 random nonce x509 revocation constraints pubkey pkcs1 pkcs7 pkcs12 pgp dnskey sshkey pem openssl pkcs8 fips-prf xcbc cmac hmac kdf gcm drbg curl sqlite attr kernel-netlink resolve socket-default stroke vici updown xauth-generic
    Jan 01 00:00:09 j722s charon[821]: 00[JOB] spawning 16 worker threads
    Jan 01 00:00:09 j722s ipsec_starter[780]: charon (821) started after 420 ms
    Jan 01 00:00:09 j722s root[856]: mount.sh/automount Auto-mount of [/run/media/rootfs-mmcblk1p2] successful
    Jan 01 00:00:09 j722s root[862]: mount.sh/automount Auto-mount of [/run/media/BOOT-mmcblk1p1] successful
    Jan 01 00:00:09 j722s root[876]: Using systemd-mount to finish mount
    Jan 01 00:00:09 j722s root[879]: Using systemd-mount to finish mount
    Jan 01 00:00:09 j722s avahi-daemon[731]: Server startup complete. Host name is j722s.local. Local service cookie is 3157031775.
    Jan 01 00:00:09 j722s root[936]: mount.sh/automount /run/media/mmcblk1p2 already mounted
    Jan 01 00:00:09 j722s root[937]: mount.sh/automount /run/media/mmcblk1p1 already mounted
    Jan 01 00:00:09 j722s root[938]: mount.sh/automount [/run/media/rootfs-mmcblk1p2] is already cached
    Jan 01 00:00:09 j722s systemd[1]: Found device /dev/mmcblk1p1.
    Jan 01 00:00:09 j722s root[947]: Using systemd-mount to finish mount
    Jan 01 00:00:10 j722s systemd[1]: Starting File System Check on /dev/mmcblk1p1...
    Jan 01 00:00:10 j722s systemd[1]: Starting File System Check on /dev/mmcblk1p2...
    Jan 01 00:00:10 j722s kernel: ds90ub953 4-0044: Found ub953 rev/mask 0x20
    Jan 01 00:00:10 j722s root[975]: mount.sh/automount /run/media/mmcblk1p2 already mounted
    Jan 01 00:00:10 j722s kernel: ds90ub953 4-0044: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30/links/link@0/serializer/i2c/sensor@10
    Jan 01 00:00:10 j722s kernel: i2c 9-0010: Fixed dependency cycle(s) with /bus@f0000/i2c@20020000/i2c-mux@70/i2c@0/deser@30/links/link@0/serializer
    Jan 01 00:00:10 j722s kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
    Jan 01 00:00:10 j722s kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    Jan 01 00:00:10 j722s kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    Jan 01 00:00:10 j722s kernel: m_can_platform 20701000.can main_mcan0: renamed from can2
    Jan 01 00:00:10 j722s systemd[1]: Starting Virtual Console Setup...
    Jan 01 00:00:10 j722s kernel: m_can_platform 4e18000.can mcu_mcan1: renamed from can1
    Jan 01 00:00:11 j722s kernel: m_can_platform 4e08000.can mcu_mcan0: renamed from can0
    Jan 01 00:00:11 j722s kernel: xhci-hcd xhci-hcd.7.auto: xHCI Host Controller
    Jan 01 00:00:11 j722s kernel: xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 1
    Jan 01 00:00:11 j722s kernel: xhci-hcd xhci-hcd.7.auto: hcc params 0x200073c9 hci version 0x100 quirks 0x0000002000008010
    Jan 01 00:00:11 j722s kernel: xhci-hcd xhci-hcd.7.auto: irq 506, io mem 0x31210000
    Jan 01 00:00:11 j722s kernel: xhci-hcd xhci-hcd.7.auto: xHCI Host Controller
    Jan 01 00:00:11 j722s kernel: xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 2
    Jan 01 00:00:11 j722s kernel: xhci-hcd xhci-hcd.7.auto: Host supports USB 3.0 SuperSpeed
    Jan 01 00:00:11 j722s kernel: cdns-csi2rx 30101000.csi-bridge: Probed CSI2RX with 4/4 lanes, 4 streams, external D-PHY
    Jan 01 00:00:11 j722s kernel: am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
    Jan 01 00:00:11 j722s kernel: am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    Jan 01 00:00:11 j722s kernel: hub 1-0:1.0: USB hub found
    Jan 01 00:00:11 j722s kernel: hub 1-0:1.0: 1 port detected
    Jan 01 00:00:11 j722s kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    Jan 01 00:00:11 j722s kernel: configfs-gadget.g1 gadget.0: HOST MAC 02:02:4c:dc:d4:af
    Jan 01 00:00:11 j722s kernel: configfs-gadget.g1 gadget.0: MAC 0e:18:38:82:55:be
    Jan 01 00:00:11 j722s kernel: hub 2-0:1.0: USB hub found
    Jan 01 00:00:11 j722s kernel: hub 2-0:1.0: 1 port detected
    Jan 01 00:00:12 j722s kernel: configfs-gadget.g1 gadget.0: HOST MAC ba:00:15:86:e3:cc
    Jan 01 00:00:12 j722s kernel: configfs-gadget.g1 gadget.0: MAC da:50:07:d0:a7:21
    Jan 01 00:00:12 j722s kernel: cdns-csi2rx 30121000.csi-bridge: Probed CSI2RX with 4/4 lanes, 4 streams, external D-PHY
    Jan 01 00:00:12 j722s kernel: imx219 9-0010: supply VANA not found, using dummy regulator
    Jan 01 00:00:12 j722s kernel: imx219 9-0010: supply VDIG not found, using dummy regulator
    Jan 01 00:00:12 j722s kernel: imx219 9-0010: supply VDDL not found, using dummy regulator
    Jan 01 00:00:12 j722s kernel: usb 1-1: new high-speed USB device number 2 using xhci-hcd
    Jan 01 00:00:12 j722s kernel: usb 2-1: new SuperSpeed USB device number 2 using xhci-hcd
    Jan 01 00:00:12 j722s kernel: hub 1-1:1.0: USB hub found
    Jan 01 00:00:12 j722s kernel: hub 1-1:1.0: 4 ports detected
    Jan 01 00:00:12 j722s kernel: hub 2-1:1.0: USB hub found
    Jan 01 00:00:12 j722s kernel: hub 2-1:1.0: 4 ports detected
    Jan 01 00:00:12 j722s systemd-fsck[1048]: fsck.fat 4.2 (2021-01-31)
    Jan 01 00:00:12 j722s systemd-fsck[1048]: Dirty bit is set. Fs was not properly unmounted and some data may be corrupt.
    Jan 01 00:00:12 j722s systemd-fsck[1048]:  Automatically removing dirty bit.
    Jan 01 00:00:12 j722s systemd-fsck[1048]: *** Filesystem was changed ***
    Jan 01 00:00:12 j722s systemd-fsck[1048]: Writing changes.
    Jan 01 00:00:12 j722s systemd-fsck[1048]: /dev/mmcblk1p1: 38 files, 1769/65399 clusters
    Jan 01 00:00:12 j722s systemd-fsck[1047]: rootfs: recovering journal
    Jan 01 00:00:12 j722s systemd-fsck[1047]: rootfs: clean, 136674/3852672 files, 1890279/7758720 blocks
    Jan 01 00:00:10 j722s systemd[1]: Finished Virtual Console Setup.
    Jan 01 00:00:11 j722s charon[821]: 11[KNL] interface eth0 activated
    Jan 01 00:00:10 j722s systemd-networkd[873]: lo: Link UP
    Jan 01 00:00:11 j722s root[1178]: Using systemd-mount to finish mount
    Jan 01 00:00:10 j722s systemd-networkd[873]: lo: Gained carrier
    Jan 01 00:00:11 j722s root[1235]: mount.sh/automount /run/media/mmcblk1p1 already mounted
    Jan 01 00:00:10 j722s systemd[1]: Finished File System Check on /dev/mmcblk1p1.
    Jan 01 00:00:11 j722s charon[821]: 06[KNL] interface usb0 activated
    Jan 01 00:00:11 j722s systemd-networkd[873]: Enumeration completed
    Jan 01 00:00:11 j722s charon[821]: 15[KNL] interface usb1 activated
    Jan 01 00:00:11 j722s systemd[1]: Started Network Configuration.
    Jan 01 00:00:11 j722s systemd-networkd[873]: eth0: found matching network '/etc/systemd/network/09-eth.network', based on potentially unpredictable interface name.
    Jan 01 00:00:11 j722s systemd-networkd[873]: eth0: Configuring with /etc/systemd/network/09-eth.network.
    Jan 01 00:00:11 j722s systemd-networkd[873]: eth0: found matching network '/etc/systemd/network/09-eth.network', based on potentially unpredictable interface name.
    Jan 01 00:00:11 j722s systemd[1]: Finished File System Check on /dev/mmcblk1p2.
    Jan 01 00:00:11 j722s systemd-networkd[873]: eth0: Link UP
    Jan 01 00:00:12 j722s systemd-networkd[873]: usb0: Link UP
    Jan 01 00:00:12 j722s systemd-networkd[873]: usb1: Link UP
    Jan 01 00:00:12 j722s systemd[1]: gplv3-notice.service: Deactivated successfully.
    Jan 01 00:00:12 j722s systemd-networkd[873]: usb1: found matching network '/usr/lib/systemd/network/53-usb-otg-ecm.network', based on potentially unpredictable interface name.
    Jan 01 00:00:12 j722s systemd-networkd[873]: usb1: Configuring with /usr/lib/systemd/network/53-usb-otg-ecm.network.
    Jan 01 00:00:12 j722s systemd[1]: Finished Print notice about GPLv3 packages.
    Jan 01 00:00:12 j722s systemd[1]: gplv3-notice.service: Consumed 2.872s CPU time.
    Jan 01 00:00:12 j722s systemd-networkd[873]: usb0: found matching network '/etc/systemd/network/60-usb.network', based on potentially unpredictable interface name.
    Jan 01 00:00:12 j722s systemd-networkd[873]: usb0: Configuring with /etc/systemd/network/60-usb.network.
    Jan 01 00:00:12 j722s systemd-networkd[873]: usb1: found matching network '/usr/lib/systemd/network/53-usb-otg-ecm.network', based on potentially unpredictable interface name.
    Jan 01 00:00:13 j722s systemd-networkd[873]: usb0: Gained carrier
    Jan 01 00:00:13 j722s systemd-networkd[873]: usb0: found matching network '/etc/systemd/network/60-usb.network', based on potentially unpredictable interface name.
    Jan 01 00:00:13 j722s systemd[1]: Reached target Network.
    Jan 01 00:00:13 j722s systemd[1]: Reached target Hardware activated USB gadget.
    Jan 01 00:00:13 j722s (udev-worker)[224]: controlC0: Process '/usr/sbin/alsactl restore /dev/snd/controlC0' failed with exit code 99.
    Jan 01 00:00:13 j722s systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    Jan 01 00:00:13 j722s systemd[1]: Mounting /run/media/BOOT-mmcblk1p1...
    Jan 01 00:00:13 j722s systemd[1]: Mounting /run/media/rootfs-mmcblk1p2...
    Jan 01 00:00:13 j722s systemd[1]: Starting Save/Restore Sound Card State...
    Jan 01 00:00:13 j722s systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
    Jan 01 00:00:13 j722s systemd[1]: Starting Enable and configure wl18xx bluetooth stack...
    Jan 01 00:00:13 j722s systemd[1]: Starting containerd container runtime...
    Jan 01 00:00:13 j722s systemd[1]: Started Netperf Benchmark Server.
    Jan 01 00:00:13 j722s systemd[1]: NFS status monitor for NFSv2/3 locking. was skipped because of an unmet condition check (ConditionPathExists=/etc/exports).
    Jan 01 00:00:13 j722s systemd[1]: Starting Simple Network Management Protocol (SNMP) Daemon....
    Jan 01 00:00:13 j722s systemd[1]: Starting Permit User Sessions...
    Jan 01 00:00:13 j722s systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
    Jan 01 00:00:13 j722s netserver[1510]: Starting netserver with host 'IN(6)ADDR_ANY' port '12865' and family AF_UNSPEC
    Jan 01 00:00:13 j722s systemd[1]: Stopped Virtual Console Setup.
    Jan 01 00:00:13 j722s systemd[1]: Stopping Virtual Console Setup...
    Jan 01 00:00:13 j722s systemd[1]: Starting Virtual Console Setup...
    Jan 01 00:00:13 j722s bt-enable.sh[1508]: /usr/bin/bt-enable.sh: line 96: warning: command substitution: ignored null byte in input
    Jan 01 00:00:13 j722s bt-enable.sh[1508]: Texas Instruments J722S EVM
    Jan 01 00:00:13 j722s systemd[1]: Mounted /run/media/BOOT-mmcblk1p1.
    Jan 01 00:00:13 j722s alsactl[1507]: alsa-lib /usr/src/debug/alsa-lib/1.2.11/src/ucm/main.c:1554:(snd_use_case_mgr_open) error: failed to import hw:0 use case configuration -2
    Jan 01 00:00:13 j722s alsactl[1507]: No state is present for card J722SEVM
    Jan 01 00:00:13 j722s alsactl[1507]: alsa-lib /usr/src/debug/alsa-lib/1.2.11/src/ucm/main.c:1554:(snd_use_case_mgr_open) error: failed to import hw:0 use case configuration -2
    Jan 01 00:00:13 j722s alsactl[1507]: Found hardware: "simple-card" "" "" "" ""
    Jan 01 00:00:13 j722s alsactl[1507]: Hardware is initialized using a generic method
    Jan 01 00:00:13 j722s alsactl[1507]: No state is present for card J722SEVM
    Jan 01 00:00:13 j722s systemd[1]: Finished Save/Restore Sound Card State.
    Jan 01 00:00:13 j722s systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
    Jan 01 00:00:13 j722s bt-enable.sh[1508]: Not a TI board
    Jan 01 00:00:13 j722s snmpd[1512]: systemstats_linux: unexpected header length in /proc/net/snmp. 237 != 224
    Jan 01 00:00:13 j722s systemd[1]: Reached target Sound Card.
    Jan 01 00:00:13 j722s snmpd[1512]: systemstats_linux: unexpected header length in /proc/net/snmp. 237 != 224
    Jan 01 00:00:13 j722s systemd[1]: bt-enable.service: Deactivated successfully.
    Jan 01 00:00:13 j722s snmpd[1512]: systemstats_linux: unexpected header length in /proc/net/snmp. 237 != 224
    Jan 01 00:00:13 j722s systemd[1]: Finished Enable and configure wl18xx bluetooth stack.
    Jan 01 00:00:13 j722s systemd[1]: Finished Permit User Sessions.
    Jan 01 00:00:13 j722s systemd[1]: Started Getty on tty1.
    Jan 01 00:00:13 j722s systemd[1]: Started Serial Getty on ttyS2.
    Jan 01 00:00:13 j722s systemd[1]: Reached target Login Prompts.
    Jan 01 00:00:13 j722s systemd[1]: Starting Synchronize System and HW clocks...
    Jan 01 00:00:13 j722s systemd[1]: Starting Weston, a Wayland compositor, as a system service...
    Jan 01 00:00:13 j722s systemd[1]: Finished Virtual Console Setup.
    Jan 01 00:00:13 j722s systemd-networkd[873]: usb0: found matching network '/etc/systemd/network/60-usb.network', based on potentially unpredictable interface name.
    Jan 01 00:00:13 j722s (weston)[1557]: pam_unix(weston-autologin:session): session opened for user weston(uid=1000) by weston(uid=0)
    Jan 01 00:00:14 j722s systemd[1]: sync-clocks.service: Deactivated successfully.
    Jan 01 00:00:14 j722s systemd[1]: Finished Synchronize System and HW clocks.
    Jan 01 00:00:14 j722s kernel: EXT4-fs (mmcblk1p2): recovery complete
    Jan 01 00:00:14 j722s kernel: EXT4-fs (mmcblk1p2): mounted filesystem 970435ba-92b9-4f2c-99f0-2cf0c5028d29 r/w with ordered data mode. Quota mode: none.
    Jan 01 00:00:14 j722s systemd[1]: Created slice User Slice of UID 1000.
    Jan 01 00:00:14 j722s systemd-networkd[873]: usb1: found matching network '/usr/lib/systemd/network/53-usb-otg-ecm.network', based on potentially unpredictable interface name.
    Jan 01 00:00:14 j722s systemd[1]: Starting User Runtime Directory /run/user/1000...
    Jan 01 00:00:14 j722s systemd[1]: Mounted /run/media/rootfs-mmcblk1p2.
    Jan 01 00:00:14 j722s snmpd[1512]: NET-SNMP version 5.9.4.pre2
    Jan 01 00:00:14 j722s systemd[1]: Started Simple Network Management Protocol (SNMP) Daemon..
    Jan 01 00:00:14 j722s systemd-logind[812]: New session c1 of user weston.
    Jan 01 00:00:14 j722s systemd[1]: Finished User Runtime Directory /run/user/1000.
    Jan 01 00:00:14 j722s systemd[1]: Starting User Manager for UID 1000...
    Jan 01 00:00:14 j722s (systemd)[1577]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[<unknown>] user=[weston] ruser=[<unknown>] rhost=[<unknown>]
    Jan 01 00:00:14 j722s kernel: audit: type=1006 audit(14.304:14): pid=1577 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=1 res=1
    Jan 01 00:00:14 j722s kernel: audit: type=1300 audit(14.304:14): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffdae807e8 a2=4 a3=1 items=0 ppid=1 pid=1577 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/usr/lib/systemd/systemd-executor" key=(null)
    Jan 01 00:00:14 j722s kernel: audit: type=1327 audit(14.304:14): proctitle="(systemd)"
    Jan 01 00:00:14 j722s audit[1577]: SYSCALL arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffdae807e8 a2=4 a3=1 items=0 ppid=1 pid=1577 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/usr/lib/systemd/systemd-executor" key=(null)
    Jan 01 00:00:14 j722s audit: PROCTITLE proctitle="(systemd)"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.318561120Z" level=info msg="starting containerd" revision=b1624c3628954e769dd50783b63823040b2db38c.m version=v2.0.0-beta.2-204-gb1624c362.m
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.426603370Z" level=info msg="loading plugin" id=io.containerd.image-verifier.v1.bindir type=io.containerd.image-verifier.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.426998095Z" level=info msg="loading plugin" id=io.containerd.internal.v1.opt type=io.containerd.internal.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.428251610Z" level=info msg="loading plugin" id=io.containerd.warning.v1.deprecations type=io.containerd.warning.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.428530045Z" level=info msg="loading plugin" id=io.containerd.event.v1.exchange type=io.containerd.event.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.430848660Z" level=info msg="loading plugin" id=io.containerd.monitor.task.v1.cgroups type=io.containerd.monitor.task.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.435842930Z" level=info msg="loading plugin" id=io.containerd.content.v1.content type=io.containerd.content.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.436947865Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.blockfile type=io.containerd.snapshotter.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.438008685Z" level=info msg="skip loading plugin" error="no scratch file generator: skip plugin" id=io.containerd.snapshotter.v1.blockfile type=io.containerd.snapshotter.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.438312200Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.438563275Z" level=info msg="skip loading plugin" error="devmapper not configured: skip plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.438729620Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.native type=io.containerd.snapshotter.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.439576075Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.overlayfs type=io.containerd.snapshotter.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.441294775Z" level=info msg="loading plugin" id=io.containerd.metadata.v1.bolt type=io.containerd.metadata.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.441737845Z" level=info msg="metadata content store policy set" policy=shared
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.447290450Z" level=info msg="loading plugin" id=io.containerd.gc.v1.scheduler type=io.containerd.gc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.447868125Z" level=info msg="loading plugin" id=io.containerd.runtime.v2.task type=io.containerd.runtime.v2
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.449988930Z" level=info msg="loading plugin" id=io.containerd.runtime.v2.shim type=io.containerd.runtime.v2
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.450321845Z" level=info msg="loading plugin" id=io.containerd.differ.v1.walking type=io.containerd.differ.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.450540010Z" level=info msg="loading plugin" id=io.containerd.lease.v1.manager type=io.containerd.lease.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.450718555Z" level=info msg="loading plugin" id=io.containerd.sandbox.controller.v1.shim type=io.containerd.sandbox.controller.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.450871340Z" level=info msg="loading plugin" id=io.containerd.service.v1.containers-service type=io.containerd.service.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.451034730Z" level=info msg="loading plugin" id=io.containerd.service.v1.content-service type=io.containerd.service.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.451180950Z" level=info msg="loading plugin" id=io.containerd.service.v1.diff-service type=io.containerd.service.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.451335125Z" level=info msg="loading plugin" id=io.containerd.service.v1.images-service type=io.containerd.service.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.451551785Z" level=info msg="loading plugin" id=io.containerd.service.v1.introspection-service type=io.containerd.service.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.451779015Z" level=info msg="loading plugin" id=io.containerd.service.v1.namespaces-service type=io.containerd.service.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.451987745Z" level=info msg="loading plugin" id=io.containerd.service.v1.snapshots-service type=io.containerd.service.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.452186055Z" level=info msg="loading plugin" id=io.containerd.service.v1.tasks-service type=io.containerd.service.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.452394780Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.containers type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.452654870Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.content type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.453045560Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.diff type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.453296600Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.events type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.453494550Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.images type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.453680205Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.introspection type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.453949585Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.leases type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.454196595Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.namespaces type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.454418325Z" level=info msg="loading plugin" id=io.containerd.sandbox.store.v1.local type=io.containerd.sandbox.store.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.454640435Z" level=info msg="loading plugin" id=io.containerd.cri.v1.images type=io.containerd.cri.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.455812870Z" level=info msg="Get image filesystem path \"/var/lib/containerd/io.containerd.snapshotter.v1.overlayfs\" for snapshotter \"overlayfs\""
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.456127345Z" level=info msg="Start snapshots syncer"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.457280430Z" level=info msg="loading plugin" id=io.containerd.cri.v1.runtime type=io.containerd.cri.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.458483015Z" level=info msg="Start cri plugin with config {RuntimeConfig:{ContainerdConfig:{DefaultRuntimeName:runc Runtimes:map[runc:{Type:io.containerd.runc.v2 Path: PodAnnotations:[] ContainerAnnotations:[] Options:map[BinaryName: CriuImagePath: CriuWorkPath: IoGid:0 IoUid:0 NoNewKeyring:false Root: ShimCgroup:] PrivilegedWithoutHostDevices:false PrivilegedWithoutHostDevicesAllDevicesAllowed:false BaseRuntimeSpec: NetworkPluginConfDir: NetworkPluginMaxConfNum:0 Snapshotter: Sandboxer:podsandbox}] IgnoreBlockIONotEnabledErrors:false IgnoreRdtNotEnabledErrors:false} CniConfig:{NetworkPluginBinDir:/opt/cni/bin NetworkPluginConfDir:/etc/cni/net.d NetworkPluginMaxConfNum:1 NetworkPluginSetupSerially:false NetworkPluginConfTemplate: IPPreference:} EnableSelinux:false SelinuxCategoryRange:1024 MaxContainerLogLineSize:16384 DisableCgroup:false DisableApparmor:false RestrictOOMScoreAdj:false DisableProcMount:false UnsetSeccompProfile: TolerateMissingHugetlbController:true DisableHugetlbController:true DeviceOwnershipFromSecurityContext:false IgnoreImageDefinedVolumes:false NetNSMountsUnderStateDir:false EnableUnprivilegedPorts:true EnableUnprivilegedICMP:true EnableCDI:true CDISpecDirs:[/etc/cdi /var/run/cdi] DrainExecSyncIOTimeout:0s IgnoreDeprecationWarnings:[]} ContainerdRootDir:/var/lib/containerd ContainerdEndpoint:/run/containerd/containerd.sock RootDir:/var/lib/containerd/io.containerd.grpc.v1.cri StateDir:/run/containerd/io.containerd.grpc.v1.cri}"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.459219265Z" level=info msg="loading plugin" id=io.containerd.sandbox.controller.v1.podsandbox type=io.containerd.sandbox.controller.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.459841140Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandbox-controllers type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.460185795Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandboxes type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.460415705Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.snapshots type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.460634690Z" level=info msg="loading plugin" id=io.containerd.streaming.v1.manager type=io.containerd.streaming.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.460865380Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.streaming type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.461113845Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.tasks type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.461339955Z" level=info msg="loading plugin" id=io.containerd.transfer.v1.local type=io.containerd.transfer.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.461674665Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.transfer type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.462033020Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.version type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.462295610Z" level=info msg="loading plugin" id=io.containerd.monitor.container.v1.restart type=io.containerd.monitor.container.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.464668675Z" level=info msg="loading plugin" id=io.containerd.tracing.processor.v1.otlp type=io.containerd.tracing.processor.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.465085200Z" level=info msg="skip loading plugin" error="skip plugin: tracing endpoint not configured" id=io.containerd.tracing.processor.v1.otlp type=io.containerd.tracing.processor.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.465340385Z" level=info msg="loading plugin" id=io.containerd.internal.v1.tracing type=io.containerd.internal.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.465548755Z" level=info msg="skip loading plugin" error="skip plugin: tracing endpoint not configured" id=io.containerd.internal.v1.tracing type=io.containerd.internal.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.465698005Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.healthcheck type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.466013805Z" level=info msg="loading plugin" id=io.containerd.nri.v1.nri type=io.containerd.nri.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.466315110Z" level=info msg="runtime interface created"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.466425655Z" level=info msg="created NRI interface"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.466576815Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.cri type=io.containerd.grpc.v1
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.466739450Z" level=info msg="Connect containerd service"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.467524170Z" level=info msg="using experimental NRI integration - disable nri plugin to prevent this"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.486254745Z" level=error msg="failed to load cni during init, please check CRI plugin status before setting up network for pods" error="cni config load failed: no network config found in /etc/cni/net.d: cni plugin not initialized: failed to load cni config"
    Jan 01 00:00:14 j722s systemd-networkd[873]: usb0: Gained IPv6LL
    Jan 01 00:00:14 j722s avahi-daemon[731]: Joining mDNS multicast group on interface usb0.IPv6 with address fe80::f87b:cff:fe70:64fb.
    Jan 01 00:00:14 j722s avahi-daemon[731]: New relevant interface usb0.IPv6 for mDNS.
    Jan 01 00:00:14 j722s systemd-timesyncd[216]: Network configuration changed, trying to establish connection.
    Jan 01 00:00:14 j722s avahi-daemon[731]: Registering new address record for fe80::f87b:cff:fe70:64fb on usb0.*.
    Jan 01 00:00:14 j722s charon[821]: 06[KNL] fe80::f87b:cff:fe70:64fb appeared on usb0
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.725639735Z" level=info msg="Start subscribing containerd event"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.726348150Z" level=info msg="Start recovering state"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.727307710Z" level=info msg=serving... address=/run/containerd/containerd.sock.ttrpc
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.727969430Z" level=info msg=serving... address=/run/containerd/containerd.sock
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.728139015Z" level=info msg="Start event monitor"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.728291845Z" level=info msg="Start cni network conf syncer for default"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.728396905Z" level=info msg="Start streaming server"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.728495350Z" level=info msg="Registered namespace \"k8s.io\" with NRI"
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.728584715Z" level=info msg="runtime interface starting up..."
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.728901735Z" level=info msg="starting plugins..."
    Jan 01 00:00:14 j722s containerd[1534]: time="1970-01-01T00:00:14.729942530Z" level=info msg="containerd successfully booted in 0.414416s"
    Jan 01 00:00:14 j722s systemd[1]: Started containerd container runtime.
    Jan 01 00:00:15 j722s systemd[1577]: Queued start job for default target Main User Target.
    Jan 01 00:00:15 j722s systemd[1577]: Created slice User Application Slice.
    Jan 01 00:00:15 j722s systemd[1577]: Reached target Paths.
    Jan 01 00:00:15 j722s systemd[1577]: Reached target Timers.
    Jan 01 00:00:15 j722s systemd[1577]: Starting D-Bus User Message Bus Socket...
    Jan 01 00:00:15 j722s systemd[1577]: Listening on D-Bus User Message Bus Socket.
    Jan 01 00:00:15 j722s systemd[1577]: Reached target Sockets.
    Jan 01 00:00:15 j722s systemd[1577]: Reached target Basic System.
    Jan 01 00:00:15 j722s systemd[1577]: Reached target Main User Target.
    Jan 01 00:00:15 j722s systemd[1577]: Startup finished in 853ms.
    Jan 01 00:00:15 j722s systemd[1]: Started User Manager for UID 1000.
    Jan 01 00:00:15 j722s systemd[1]: Started Session c1 of User weston.
    Jan 01 00:00:15 j722s audit[1557]: SYSCALL arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffed76e5a8 a2=4 a3=1 items=0 ppid=1 pid=1557 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=tty7 ses=2 comm="(weston)" exe="/usr/lib/systemd/systemd-executor" key=(null)
    Jan 01 00:00:15 j722s audit: PROCTITLE proctitle="(weston)"
    Jan 01 00:00:15 j722s kernel: audit: type=1006 audit(15.200:15): pid=1557 uid=0 old-auid=4294967295 auid=1000 tty=tty7 old-ses=4294967295 ses=2 res=1
    Jan 01 00:00:15 j722s kernel: audit: type=1300 audit(15.200:15): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffed76e5a8 a2=4 a3=1 items=0 ppid=1 pid=1557 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=tty7 ses=2 comm="(weston)" exe="/usr/lib/systemd/systemd-executor" key=(null)
    Jan 01 00:00:15 j722s kernel: audit: type=1327 audit(15.200:15): proctitle="(weston)"
    Jan 01 00:00:15 j722s weston[1557]: Date: 1970-01-01 UTC
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.221] weston 13.0.0
    Jan 01 00:00:15 j722s weston[1557]:                https://wayland.freedesktop.org
    Jan 01 00:00:15 j722s weston[1557]:                Bug reports to: https://gitlab.freedesktop.org/wayland/weston/issues/
    Jan 01 00:00:15 j722s weston[1557]:                Build: 13.0.0
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.222] Command line: /usr/bin/weston --modules=systemd-notify.so
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.222] OS: Linux, 6.6.32-ti-gdb8871293143-dirty, #1 SMP PREEMPT Thu Aug  1 19:10:56 UTC 2024, aarch64
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.222] Flight recorder: enabled
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.223] Using config file '/etc/xdg/weston/weston.ini'
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.224] Output repaint window is 7 ms maximum.
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.224] Loading module '/usr/lib/libweston-13/drm-backend.so'
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.229] initializing drm backend
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.229] Trying libseat launcher...
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.230] [c/debug/seatd/0.8.0/libseat/backend/seatd.c:64] Could not connect to socket /run/seatd.sock: No such file or directory
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.230] [c/debug/seatd/0.8.0/libseat/libseat.c:76] Backend 'seatd' failed to open seat, skipping
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.259] [c/debug/seatd/0.8.0/libseat/libseat.c:73] Seat opened with backend 'logind'
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.259] libseat: session control granted
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.271] using /dev/dri/card2
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.271] DRM: supports atomic modesetting
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.271] DRM: supports GBM modifiers
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.271] DRM: does not support async page flipping
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.271] DRM: supports picture aspect ratio
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.313] Loading module '/usr/lib/libweston-13/gl-renderer.so'
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.318] Using rendering device: /dev/dri/card2
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.318] EGL version: 1.5
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.318] EGL vendor: Mesa Project
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.318] EGL client APIs: OpenGL_ES
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.318] EGL features:
    Jan 01 00:00:15 j722s weston[1557]:                EGL Wayland extension: yes
    Jan 01 00:00:15 j722s weston[1557]:                context priority: yes
    Jan 01 00:00:15 j722s weston[1557]:                buffer age: yes
    Jan 01 00:00:15 j722s weston[1557]:                partial update: yes
    Jan 01 00:00:15 j722s weston[1557]:                swap buffers with damage: no
    Jan 01 00:00:15 j722s weston[1557]:                configless context: yes
    Jan 01 00:00:15 j722s weston[1557]:                surfaceless context: yes
    Jan 01 00:00:15 j722s weston[1557]:                dmabuf support: modifiers
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.332] GL version: OpenGL ES 3.2 build 24.1@6554834
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.332] GLSL version: OpenGL ES GLSL ES 3.20 build 24.1@6554834
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.332] GL vendor: Imagination Technologies
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.332] GL renderer: PowerVR B-Series BXS-4-64
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.332] warning: Disabling render GPU timeline due to missing GL_EXT_disjoint_timer_query extension
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.362] GL ES 3.2 - renderer features:
    Jan 01 00:00:15 j722s weston[1557]:                read-back format: ARGB8888
    Jan 01 00:00:15 j722s weston[1557]:                wl_shm sub-image to texture: yes
    Jan 01 00:00:15 j722s weston[1557]:                glReadPixels supports y-flip: no
    Jan 01 00:00:15 j722s weston[1557]:                wl_shm 10 bpc formats: yes
    Jan 01 00:00:15 j722s weston[1557]:                wl_shm 16 bpc formats: no
    Jan 01 00:00:15 j722s weston[1557]:                wl_shm half-float formats: no
    Jan 01 00:00:15 j722s weston[1557]:                internal R and RG formats: yes
    Jan 01 00:00:15 j722s weston[1557]:                OES_EGL_image_external: yes
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.362] Using GL renderer
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.370] warning: no input devices found, but none required as per configuration.
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.370] DRM: head 'LVDS-1' found, connector 40 is connected, EDID make 'unknown', model 'unknown', serial ''
    Jan 01 00:00:15 j722s weston[1557]:                Supported EOTF modes: SDR
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.371] Registered plugin API 'weston_drm_output_api_v1' of size 40
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.371] Color manager: no-op
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.371] Output 'LVDS-1' attempts EOTF mode: SDR
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.371] Output 'LVDS-1' using color profile: stock sRGB color profile
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.372] Chosen EGL config details: id:   7 rgba: 8 8 8 0 buf: 24 dep:  0 stcl: 0 int: 1-1 type: win|pbf vis_id: XRGB8888 (0x34325258)
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.372] Output LVDS-1 (crtc 38) video modes:
    Jan 01 00:00:15 j722s weston[1557]:                1280x800@60.0, preferred, current, 71.1 MHz
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.372] Output 'LVDS-1' enabled with head(s) LVDS-1
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.372] Compositor capabilities:
    Jan 01 00:00:15 j722s weston[1557]:                arbitrary surface rotation: yes
    Jan 01 00:00:15 j722s weston[1557]:                screen capture uses y-flip: yes
    Jan 01 00:00:15 j722s weston[1557]:                cursor planes: yes
    Jan 01 00:00:15 j722s weston[1557]:                arbitrary resolutions: no
    Jan 01 00:00:15 j722s weston[1557]:                view mask clipping: yes
    Jan 01 00:00:15 j722s weston[1557]:                explicit sync: yes
    Jan 01 00:00:15 j722s weston[1557]:                color operations: no
    Jan 01 00:00:15 j722s weston[1557]:                presentation clock: CLOCK_MONOTONIC, id 1
    Jan 01 00:00:15 j722s weston[1557]:                presentation clock resolution: 0.000000001 s
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.372] Loading module '/usr/lib/weston/desktop-shell.so'
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.374] Loading module '/usr/lib/weston/systemd-notify.so'
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.374] info: add 1 socket(s) provided by systemd
    Jan 01 00:00:15 j722s systemd[1]: Started Weston, a Wayland compositor, as a system service.
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.377] launching '/usr/libexec/weston-keyboard'
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.380] launching '/usr/libexec/weston-desktop-shell'
    Jan 01 00:00:15 j722s weston[1599]: Touch screen not detected, skipping calibration...
    Jan 01 00:00:15 j722s systemd[1]: Starting EdgeAI OOB demos...
    Jan 01 00:00:15 j722s weston[1600]: could not load cursor 'dnd-move'
    Jan 01 00:00:15 j722s weston[1601]: could not load cursor 'dnd-move'
    Jan 01 00:00:15 j722s weston[1601]: could not load cursor 'dnd-copy'
    Jan 01 00:00:15 j722s weston[1600]: could not load cursor 'dnd-copy'
    Jan 01 00:00:15 j722s weston[1601]: could not load cursor 'dnd-none'
    Jan 01 00:00:15 j722s weston[1600]: could not load cursor 'dnd-none'
    Jan 01 00:00:15 j722s weston[1557]: [00:00:15.471] caught signal 15
    Jan 01 00:00:15 j722s systemd[1]: Stopping Weston, a Wayland compositor, as a system service...
    Jan 01 00:00:15 j722s systemd[1]: weston.service: Deactivated successfully.
    Jan 01 00:00:15 j722s systemd[1]: Stopped Weston, a Wayland compositor, as a system service.
    Jan 01 00:00:15 j722s systemd[1]: session-c1.scope: Deactivated successfully.
    Jan 01 00:00:15 j722s systemctl[1603]: Stopping 'weston.service', but its triggering units are still active:
    Jan 01 00:00:15 j722s systemctl[1603]: weston.socket
    Jan 01 00:00:15 j722s systemd-logind[812]: Removed session c1.
    Jan 01 00:00:15 j722s edgeai-launcher.sh[1636]: Unable to setup formats: Invalid argument (22)
    Jan 01 00:00:15 j722s edgeai-launcher.sh[1637]: Unable to setup formats: Invalid argument (22)
    Jan 01 00:00:15 j722s edgeai-launcher.sh[1616]: IMX219 Camera 0 detected
    Jan 01 00:00:15 j722s edgeai-launcher.sh[1616]:     device = /dev/video-imx219-cam0
    Jan 01 00:00:15 j722s edgeai-launcher.sh[1616]:     name = imx219
    Jan 01 00:00:15 j722s edgeai-launcher.sh[1616]:     format = [fmt:SRGGB8_1X8/1920x1080]
    Jan 01 00:00:15 j722s edgeai-launcher.sh[1616]:     subdev_id = /dev/v4l-imx219-subdev0
    Jan 01 00:00:15 j722s edgeai-launcher.sh[1616]:     isp_required = yes
    Jan 01 00:00:16 j722s edgeai-launcher.sh[1607]: Starting edgeai-gui-app...
    Jan 01 00:00:16 j722s edgeai-launcher.sh[1728]: -s option no longer works and will be removed soon.
    Jan 01 00:00:16 j722s edgeai-launcher.sh[1728]: Please reconfigure to use constraints or trusted servers.
    Jan 01 00:00:16 j722s edgeai-launcher.sh[1728]: constraint configured without libtls support
    Jan 01 00:00:16 j722s edgeai-launcher.sh[1728]: constraint configured without libtls support
    Jan 01 00:00:16 j722s edgeai-launcher.sh[1728]: constraint configured without libtls support
    Jan 01 00:00:16 j722s ntpd[1728]: -s option no longer works and will be removed soon.
    Jan 01 00:00:16 j722s ntpd[1728]: Please reconfigure to use constraints or trusted servers.
    Jan 01 00:00:16 j722s ntpd[1728]: constraint configured without libtls support
    Jan 01 00:00:16 j722s ntpd[1728]: constraint configured without libtls support
    Jan 01 00:00:16 j722s ntpd[1728]: constraint configured without libtls support
    Jan 01 00:00:16 j722s edgeai-launcher.sh[1607]: ntpd successful
    Jan 01 00:00:16 j722s ntpd[1729]: /var/db/ntpd.drift is empty
    Jan 01 00:00:16 j722s ntpd[1730]: -s option no longer works and will be removed soon.
    Jan 01 00:00:16 j722s ntpd[1730]: Please reconfigure to use constraints or trusted servers.
    Jan 01 00:00:16 j722s ntpd[1730]: constraint configured without libtls support
    Jan 01 00:00:16 j722s ntpd[1730]: constraint configured without libtls support
    Jan 01 00:00:16 j722s ntpd[1730]: constraint configured without libtls support
    Jan 01 00:00:16 j722s ntpd[1730]: ntp engine ready
    Jan 01 00:00:16 j722s ntpd[1732]: -s option no longer works and will be removed soon.
    Jan 01 00:00:16 j722s ntpd[1732]: Please reconfigure to use constraints or trusted servers.
    Jan 01 00:00:16 j722s ntpd[1732]: constraint configured without libtls support
    Jan 01 00:00:16 j722s ntpd[1732]: constraint configured without libtls support
    Jan 01 00:00:16 j722s ntpd[1732]: constraint configured without libtls support
    Jan 01 00:00:16 j722s ntpd[1730]: ntp engine exiting
    Jan 01 00:00:16 j722s ntpd[1729]: Terminating
    Jan 01 00:00:16 j722s systemd[1]: Started EdgeAI OOB demos.
    Jan 01 00:00:16 j722s systemd[1]: Reached target Multi-User System.
    Jan 01 00:00:16 j722s systemd[1]: Reached target Graphical Interface.
    Jan 01 00:00:16 j722s systemd[1]: Starting Record Runlevel Change in UTMP...
    Jan 01 00:00:16 j722s systemd[1]: systemd-update-utmp-runlevel.service: Deactivated successfully.
    Jan 01 00:00:16 j722s systemd[1]: Finished Record Runlevel Change in UTMP.
    Jan 01 00:00:16 j722s edgeai-launcher.sh[1725]: QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
    Jan 01 00:00:16 j722s kernel: usb 2-1-port4: Cannot enable. Maybe the USB cable is bad?
    Jan 01 00:00:18 j722s /usr/sbin/irqbalance[764]: IRQ mbox-r5-0(14) guessed as class 0
    Jan 01 00:00:18 j722s /usr/sbin/irqbalance[764]: IRQ mbox-mcu-r5-0(15) guessed as class 0
    Jan 01 00:00:18 j722s /usr/sbin/irqbalance[764]: IRQ dwc3(286) guessed as class 0
    Jan 01 00:00:18 j722s /usr/sbin/irqbalance[764]: IRQ e5010(501) guessed as class 0
    Jan 01 00:00:18 j722s /usr/sbin/irqbalance[764]: IRQ xhci-hcd:usb1(506) guessed as class 0
    Jan 01 00:00:18 j722s /usr/sbin/irqbalance[764]: IRQ tidss(507) guessed as class 0
    Jan 01 00:00:18 j722s /usr/sbin/irqbalance[764]: No directory /sys/devices/platform/31200000.usb/: No such file or directory
    Jan 01 00:00:18 j722s /usr/sbin/irqbalance[764]: IRQ 31200000.usb(512) guessed as class 0
    Jan 01 00:00:20 j722s login[1552]: pam_unix(login:auth): user [root] has blank password; authenticated without it
    Jan 01 00:00:20 j722s login[1552]: pam_unix(login:account): account root has password changed in future
    Jan 01 00:00:20 j722s login[1552]: pam_unix(login:session): session opened for user root(uid=0) by LOGIN(uid=0)
    Jan 01 00:00:20 j722s systemd-logind[812]: New session c2 of user root.
    Jan 01 00:00:20 j722s systemd[1]: Created slice User Slice of UID 0.
    Jan 01 00:00:20 j722s systemd[1]: Starting User Runtime Directory /run/user/0...
    Jan 01 00:00:20 j722s kernel: usb 2-1-port4: Cannot enable. Maybe the USB cable is bad?
    Jan 01 00:00:20 j722s kernel: usbcore: registered new device driver onboard-usb-hub
    Jan 01 00:00:20 j722s systemd[1]: Finished User Runtime Directory /run/user/0.
    Jan 01 00:00:20 j722s systemd[1]: Starting User Manager for UID 0...
    Jan 01 00:00:20 j722s (systemd)[1847]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[<unknown>] user=[root] ruser=[<unknown>] rhost=[<unknown>]
    Jan 01 00:00:20 j722s audit[1847]: SYSCALL arch=c00000b7 syscall=64 success=yes exit=1 a0=8 a1=ffffd803d5f8 a2=1 a3=1 items=0 ppid=1 pid=1847 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="(systemd)" exe="/usr/lib/systemd/systemd-executor" key=(null)
    Jan 01 00:00:20 j722s audit: PROCTITLE proctitle="(systemd)"
    Jan 01 00:00:20 j722s kernel: audit: type=1006 audit(20.960:16): pid=1847 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=3 res=1
    Jan 01 00:00:20 j722s kernel: audit: type=1300 audit(20.960:16): arch=c00000b7 syscall=64 success=yes exit=1 a0=8 a1=ffffd803d5f8 a2=1 a3=1 items=0 ppid=1 pid=1847 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="(systemd)" exe="/usr/lib/systemd/systemd-executor" key=(null)
    Jan 01 00:00:20 j722s kernel: audit: type=1327 audit(20.960:16): proctitle="(systemd)"
    Jan 01 00:00:21 j722s audit: BPF prog-id=18 op=LOAD
    Jan 01 00:00:21 j722s audit[1847]: SYSCALL arch=c00000b7 syscall=280 success=yes exit=8 a0=5 a1=fffff6f71d58 a2=90 a3=0 items=0 ppid=1 pid=1847 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/usr/lib/systemd/systemd" key=(null)
    Jan 01 00:00:21 j722s audit: PROCTITLE proctitle="(systemd)"
    Jan 01 00:00:21 j722s audit: BPF prog-id=18 op=UNLOAD
    Jan 01 00:00:21 j722s audit[1847]: SYSCALL arch=c00000b7 syscall=57 success=yes exit=0 a0=8 a1=1 a2=0 a3=ffff95f4ec60 items=0 ppid=1 pid=1847 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/usr/lib/systemd/systemd" key=(null)
    Jan 01 00:00:21 j722s audit: PROCTITLE proctitle="(systemd)"
    Jan 01 00:00:21 j722s audit: BPF prog-id=19 op=LOAD
    Jan 01 00:00:21 j722s audit[1847]: SYSCALL arch=c00000b7 syscall=280 success=yes exit=8 a0=5 a1=fffff6f71e08 a2=90 a3=21c2a7ba items=0 ppid=1 pid=1847 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/usr/lib/systemd/systemd" key=(null)
    Jan 01 00:00:21 j722s audit: PROCTITLE proctitle="(systemd)"
    Jan 01 00:00:21 j722s audit: BPF prog-id=19 op=UNLOAD
    Jan 01 00:00:21 j722s audit[1847]: SYSCALL arch=c00000b7 syscall=57 success=yes exit=0 a0=8 a1=1 a2=0 a3=0 items=0 ppid=1 pid=1847 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/usr/lib/systemd/systemd" key=(null)
    Jan 01 00:00:21 j722s audit: PROCTITLE proctitle="(systemd)"
    Jan 01 00:00:21 j722s kernel: audit: type=1334 audit(21.028:17): prog-id=18 op=LOAD
    Jan 01 00:00:21 j722s kernel: audit: type=1300 audit(21.028:17): arch=c00000b7 syscall=280 success=yes exit=8 a0=5 a1=fffff6f71d58 a2=90 a3=0 items=0 ppid=1 pid=1847 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/usr/lib/systemd/systemd" key=(null)
    Jan 01 00:00:21 j722s kernel: audit: type=1327 audit(21.028:17): proctitle="(systemd)"
    Jan 01 00:00:21 j722s kernel: audit: type=1334 audit(21.028:18): prog-id=18 op=UNLOAD
    Jan 01 00:00:21 j722s kernel: audit: type=1300 audit(21.028:18): arch=c00000b7 syscall=57 success=yes exit=0 a0=8 a1=1 a2=0 a3=ffff95f4ec60 items=0 ppid=1 pid=1847 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/usr/lib/systemd/systemd" key=(null)
    Jan 01 00:00:21 j722s kernel: audit: type=1327 audit(21.028:18): proctitle="(systemd)"
    Jan 01 00:00:21 j722s kernel: audit: type=1334 audit(21.028:19): prog-id=19 op=LOAD
    Jan 01 00:00:21 j722s kernel: hub 1-1:1.0: USB hub found
    Jan 01 00:00:21 j722s kernel: hub 1-1:1.0: 4 ports detected
    Jan 01 00:00:21 j722s kernel: hub 1-1:1.0: USB hub found
    Jan 01 00:00:21 j722s kernel: hub 1-1:1.0: 4 ports detected
    Jan 01 00:00:21 j722s systemd[1847]: Queued start job for default target Main User Target.
    Jan 01 00:00:21 j722s systemd[1847]: Created slice User Application Slice.
    Jan 01 00:00:21 j722s systemd[1847]: Reached target Paths.
    Jan 01 00:00:21 j722s systemd[1847]: Reached target Timers.
    Jan 01 00:00:21 j722s systemd[1847]: Starting D-Bus User Message Bus Socket...
    Jan 01 00:00:21 j722s systemd[1847]: Listening on D-Bus User Message Bus Socket.
    Jan 01 00:00:21 j722s systemd[1847]: Reached target Sockets.
    Jan 01 00:00:21 j722s systemd[1847]: Reached target Basic System.
    Jan 01 00:00:21 j722s systemd[1847]: Reached target Main User Target.
    Jan 01 00:00:21 j722s systemd[1847]: Startup finished in 816ms.
    Jan 01 00:00:21 j722s systemd[1]: Started User Manager for UID 0.
    Jan 01 00:00:21 j722s systemd[1]: Started Session c2 of User root.
    Jan 01 00:00:21 j722s login[1860]: ROOT LOGIN  on '/dev/ttyS2'
    Jan 01 00:00:24 j722s systemd-bootchart[158]: Error reading disk model for mmc: No such file or directory
    Jan 01 00:00:24 j722s systemd-bootchart[158]: systemd-bootchart wrote /run/log/bootchart-19700101-0000.svg
    Jan 01 00:00:24 j722s systemd-bootchart[158]: Bootchart created: /run/log/bootchart-19700101-0000.svg
    Jan 01 00:00:24 j722s systemd[1]: systemd-bootchart.service: Deactivated successfully.
    Jan 01 00:00:24 j722s systemd-bootchart[158]: systemd-bootchart: sample time overrun 12 times
    Jan 01 00:00:24 j722s systemd[1]: systemd-bootchart.service: Consumed 6.006s CPU time.
    Jan 01 00:00:24 j722s kernel: usb 2-1-port4: Cannot enable. Maybe the USB cable is bad?
    Jan 01 00:00:25 j722s systemd[1]: Stopping User Manager for UID 1000...
    Jan 01 00:00:25 j722s systemd[1577]: Activating special unit Exit the Session...
    Jan 01 00:00:25 j722s systemd[1577]: Stopped target Main User Target.
    Jan 01 00:00:25 j722s systemd[1577]: Stopped target Basic System.
    Jan 01 00:00:25 j722s systemd[1577]: Stopped target Paths.
    Jan 01 00:00:25 j722s systemd[1577]: Stopped target Sockets.
    Jan 01 00:00:25 j722s systemd[1577]: Stopped target Timers.
    Jan 01 00:00:25 j722s systemd[1577]: Closed D-Bus User Message Bus Socket.
    Jan 01 00:00:25 j722s systemd[1577]: Removed slice User Application Slice.
    Jan 01 00:00:25 j722s systemd[1577]: Reached target Shutdown.
    Jan 01 00:00:25 j722s systemd[1577]: Finished Exit the Session.
    Jan 01 00:00:25 j722s systemd[1577]: Reached target Exit the Session.
    Jan 01 00:00:25 j722s (sd-pam)[1579]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8004 service=[systemd-user] terminal=[<unknown>] user=[weston] ruser=[<unknown>] rhost=[<unknown>]
    Jan 01 00:00:25 j722s systemd[1]: user@1000.service: Deactivated successfully.
    Jan 01 00:00:25 j722s systemd[1]: Stopped User Manager for UID 1000.
    Jan 01 00:00:25 j722s systemd[1]: Stopping User Runtime Directory /run/user/1000...
    Jan 01 00:00:25 j722s systemd[1]: run-user-1000.mount: Deactivated successfully.
    Jan 01 00:00:25 j722s systemd[1]: user-runtime-dir@1000.service: Deactivated successfully.
    Jan 01 00:00:25 j722s systemd[1]: Stopped User Runtime Directory /run/user/1000.
    Jan 01 00:00:25 j722s systemd[1]: Removed slice User Slice of UID 1000.
    Jan 01 00:00:25 j722s systemd[1]: user-1000.slice: Consumed 1.360s CPU time.
    Jan 01 00:00:29 j722s kernel: usb 2-1-port4: Cannot enable. Maybe the USB cable is bad?
    Jan 01 00:00:29 j722s kernel: hub 2-1:1.0: USB hub found
    Jan 01 00:00:29 j722s kernel: hub 2-1:1.0: 4 ports detected
    Jan 01 00:00:29 j722s kernel: hub 2-1:1.0: USB hub found
    Jan 01 00:00:29 j722s kernel: hub 2-1:1.0: 4 ports detected
    Jan 01 00:00:33 j722s kernel: usb 2-1-port4: Cannot enable. Maybe the USB cable is bad?
    Jan 01 00:00:37 j722s kernel: usb 2-1-port4: Cannot enable. Maybe the USB cable is bad?


    Using gstreamer, I found using glimagesink instead of the kmssink will render to the weston desktop (but shows in a weird location, clipping most of the video).
    Is there a way to modify our boot script to output to card2 first?

  • Hi Evan,

    I am not sure how to output to card2 instead of card1, nor did the person I consult know how to modify for card2. I will need to ask around some more.

    However, as an alternative, my colleague had moved the LVDS output to be on the same dss instance: https://openbeagle.org/beagleboard/BeagleBoard-DeviceTrees/-/blob/v6.1.x-Beagle/src/arm64/overlays/k3-am67a-beagley-ai-hdmi-dss0-dpi1.dts?ref_type=heads

    This should make everything show up under one card.

    Regards,

    Takuma

  • Perfect, Thanks Takuma, I'll try this out.

  • Hi Takuma,

    I'm able to output to the LVDS connector by default now, this solved our problem for now.

    Thanks!

  • Hi Evan,

    Awesome to hear that! Glad we could help.

    Regards,

    Takuma