Difference between revisions of "DESK-MX8M-L/General/Booting from NFS"

From DAVE Developer's Wiki
Jump to: navigation, search
(12 intermediate revisions by 3 users not shown)
Line 3: Line 3:
 
!colspan="4" style="width:100%; text-align:left"; border-bottom:solid 2px #ededed"|History
 
!colspan="4" style="width:100%; text-align:left"; border-bottom:solid 2px #ededed"|History
 
|-  
 
|-  
 +
!style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white"|ID#
 
!style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white"|Issue Date
 
!style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white"|Issue Date
 
!style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white"|Notes
 
!style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white"|Notes
 
|-
 
|-
| style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000" |{{oldid|17632|2023/02/27}}
+
! style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#ededed; padding:5px; color:#000000" |{{oldid|17632|17632}}
| style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000" |DESK-MX8M-L-2.0.0 release
+
! style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#ededed; padding:5px; color:#000000" |27/02/2023
|-
+
! style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#ededed; padding:5px; color:#000000" |DESK-MX8M-L-2.0.0 release  
| style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000" |{{oldid|19011|2023/08/22}}
 
| style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000" |DESK-MX8M-L-4.x.x release  
 
|-
 
! style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#ededed; padding:5px; color:#000000" |2024/05/30
 
! style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#ededed; padding:5px; color:#000000" |Fix device tree configid
 
 
|-
 
|-
 
|}
 
|}
Line 36: Line 32:
 
The [[DESK-MX8M-L]] Virtual Machine has the '''tftp''' and '''nfs''' services already running. Optionally, their configuration has to be changed according to the network configuration where the target is connected to.
 
The [[DESK-MX8M-L]] Virtual Machine has the '''tftp''' and '''nfs''' services already running. Optionally, their configuration has to be changed according to the network configuration where the target is connected to.
  
Check and properly configure the items describe in [https://wiki.dave.eu/index.php/VirtualBox_Network_Configuration VirtualBox Network Configuration]
+
{{ImportantMessage|text=The ''Virtual Machine'' is created following the procedure at the [[DESK-MX8M-L/General/DVDK_Virtual_Machine#DVDK_for_release_2.0.0 | DVDK Virtual Machine]] wiki page}}
  
=== Target configuration ===
+
Check and properly configure the items the following chapters: network adapter, nfs server
  
The IP address for server and target should be configured: an example (for a network subnet <code>192.168.0.x</code>)
+
==== network adapter ====
 +
The network adpater should be configured in '''bridge mode''' in order to allow the target to get the files from the VM
  
<pre class="workstation-terminal">
 
u-boot=> setenv serverip 192.168.10.100
 
u-boot=> setenv ipaddr 192.168.10.56
 
u-boot=> setenv gatewayip 192.168.10.254
 
u-boot=> setenv netmask 255.255.255.0
 
u-boot=> setenv netdev eth0
 
</pre>
 
  
* <code>serverip</code> is the IP address of the host machine running the tftp/nfs server
+
[[File:Network-bridge.png|500px]]
* <code>ipaddr</code> is the IP address of the target
 
* <code>gatewayip</code> is the gateway address of the target
 
* <code>netmask</code> is the netmask address of the target
 
* <code>netdev</code> is the name of ethernet interface of the target
 
  
For using the DVDK Virtual Machine, a static IP address configuration has been selected, to the U-Boot variable <code>ip_dyn</code> has to be set to '''no''':
 
<pre class="workstation-terminal">
 
u-boot=> setenv ip_dyn no
 
</pre>
 
  
The ''kernel'' and ''device tree'' files have to be selected
+
[[File:XELK VM Network.png|500px]]
<pre class="workstation-terminal">
 
u-boot=> setenv bootfile /tftpboot/desk-mx8m-l/Image
 
</pre>
 
ORCA has its dtb file <code>imx8mp-mito8mplus-cb1001.dtb</code>
 
<pre class="workstation-terminal">
 
u-boot=> setenv fdt_file /tftpboot/desk-mx8m-l/imx8mp-mito8mplus-cb1001.dtb
 
</pre>
 
while MITO 8M Mini has its own ''dtb'' file <code>imx8mm-mito8mmini.dtb</code>
 
<pre class="workstation-terminal">
 
u-boot=> setenv fdt_file /tftpboot/desk-mx8m-l/imx8mm-mito8mmini.dtb
 
</pre>
 
finally, the ''root file system'' directory on the Virtual Machine should be configured to let the kernel find the '''INIT'''
 
<pre class="workstation-terminal">
 
u-boot=> setenv rootpath /home/dvdk/desk-mx-l/rfs/desk-mx8m-l-4.0.0/mx8mp/
 
</pre>
 
To run this configuration just issue the '''net_nfs''' command which firstly downloads the kernel and device tree using the tftp protocol
 
  
<pre class="workstation-terminal">
 
u-boot=> setenv net_nfs 'run loadk loadfdt nfsargs addip addcons addmisc; if run configid_fixupfdt; then sleep 3; booti ${loadaddr} - ${fdt_addr}; fi'
 
</pre>
 
  
Here below the complete bootlog from ''nfs'':
+
then check or re-configure the Host IP address
  
<pre class="mw-collapsible mw-collapsed workstation-terminal">
+
<pre>
u-boot=> run net_nfs
+
dvdk@vagrant:~$ ifconfig
Using ethernet@30be0000 device
+
eth0      Link encap:Ethernet  HWaddr 08:00:27:ed:54:80 
TFTP from server 192.168.10.100; our IP address is 192.168.10.56
+
          inet addr:192.168.0.121  Bcast:192.168.0.255  Mask:255.255.255.0
Filename '/tftpboot/desk-mx8m-l/Image'.
+
          inet6 addr: fe80::a00:27ff:feed:5480/64 Scope:Link
Load address: 0x40480000
+
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
Loading: *#################################################################
+
          RX packets:342143 errors:0 dropped:0 overruns:0 frame:0
#################################################################
+
          TX packets:267700 errors:0 dropped:0 overruns:0 carrier:0
##############
+
          collisions:0 txqueuelen:1000
3 MiB/s
+
          RX bytes:160784829 (160.7 MB)  TX bytes:214001179 (214.0 MB)
done
 
Bytes transferred = 31351296 (1de6200 hex)
 
Using ethernet@30be0000 device
 
TFTP from server 192.168.10.100; our IP address is 192.168.10.56
 
Filename '/tftpboot/desk-mx8m-l/imx8mp-mito8mplus-cb1001.dtb'.
 
Load address: 0x43000000
 
Loading: *############
 
1.2 MiB/s
 
done
 
Bytes transferred = 61299 (ef73 hex)
 
Moving Image from 0x40480000 to 0x40600000, end=42480000
 
## Flattened Device Tree blob at 43000000
 
  Booting using the fdt blob at 0x43000000
 
  Using Device Tree in place at 0000000043000000, end 0000000043011f72
 
  
Starting kernel ...
+
lo        Link encap:Local Loopback 
 +
          inet addr:127.0.0.1  Mask:255.0.0.0
 +
          inet6 addr: ::1/128 Scope:Host
 +
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
 +
          RX packets:201 errors:0 dropped:0 overruns:0 frame:0
 +
          TX packets:201 errors:0 dropped:0 overruns:0 carrier:0
 +
          collisions:0 txqueuelen:1
 +
          RX bytes:21929 (21.9 KB)  TX bytes:21929 (21.9 KB)
  
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
+
dvdk@vagrant:~$
[    0.000000] Linux version 5.15.71-desk-mx8m-l-4.0.0 (jenkins@focalbakery) (aarch64-poky-linux-gcc (GCC) 11.3.0, GNU ld (GNU Binutils) 2.38.20220708) #1 SMP PREEMPT Thu Jun 29 20:50:11 CEST 2023
+
</pre>
[    0.000000] Machine model: i.MX8MPlus Mito8MPlus on SBC Orca - adapter LVDS HDMI
 
[    0.000000] efi: UEFI not found.
 
[    0.000000] Reserved memory: created CMA memory pool at 0x00000000c4000000, size 960 MiB
 
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
 
[    0.000000] Reserved memory: created DMA memory pool at 0x0000000094300000, size 1 MiB
 
[    0.000000] OF: reserved mem: initialized node vdev0buffer@94300000, compatible id shared-dma-pool
 
[    0.000000] NUMA: No NUMA configuration found
 
[    0.000000] NUMA: Faking a node at [mem 0x0000000040000000-0x00000001bfffffff]
 
[    0.000000] NUMA: NODE_DATA [mem 0x1bf449800-0x1bf44bfff]
 
[    0.000000] Zone ranges:
 
[    0.000000]  DMA      [mem 0x0000000040000000-0x00000000ffffffff]
 
[    0.000000]  DMA32    empty
 
[    0.000000]  Normal  [mem 0x0000000100000000-0x00000001bfffffff]
 
[    0.000000] Movable zone start for each node
 
[    0.000000] Early memory node ranges
 
[    0.000000]  node  0: [mem 0x0000000040000000-0x00000000557fffff]
 
[    0.000000]  node  0: [mem 0x0000000055800000-0x0000000055ffffff]
 
[    0.000000]  node  0: [mem 0x0000000058000000-0x00000000923fffff]
 
[    0.000000]  node  0: [mem 0x0000000092400000-0x00000000a43fffff]
 
[    0.000000]  node  0: [mem 0x00000000a4400000-0x00000001bfffffff]
 
[    0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x00000001bfffffff]
 
[    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
 
[    0.000000] psci: probing for conduit method from DT.
 
[    0.000000] psci: PSCIv1.1 detected in firmware.
 
[    0.000000] psci: Using standard PSCI v0.2 function IDs
 
[    0.000000] psci: Trusted OS migration not required
 
[    0.000000] psci: SMC Calling Convention v1.2
 
[    0.000000] percpu: Embedded 20 pages/cpu s41368 r8192 d32360 u81920
 
[    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] Built 1 zonelists, mobility grouping on.  Total pages: 1540096
 
[    0.000000] Policy zone: Normal
 
[    0.000000] Kernel command line: root=/dev/nfs rw nfsroot=192.168.10.100:/home/dvdk/desk-mx-l/rfs/desk-mx8m-l-4.0.0/mx8mp/,v3,tcp ip=192.168.10.56:192.168.10.100:192.168.10.254:255.255.255.0:desk-mx:eth0:off panic=1 console=ttymxc1,115200,115200 mtdparts=gpmi-nand:2M(nand-SPL),6M(nand-uboot),1M(nand-env1),1M(nand-env2),1M(nand-fdt),1M(nand-spare),8M(nand-kernel),4M(nand-splash),-(nand-ubi);
 
[    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] mem auto-init: stack:off, heap alloc:off, heap free:off
 
[    0.000000] software IO TLB: mapped [mem 0x00000000c0000000-0x00000000c4000000] (64MB)
 
[    0.000000] Memory: 4752040K/6258688K available (18688K kernel code, 1560K rwdata, 7244K rodata, 3008K init, 543K bss, 523608K reserved, 983040K 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] 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: 160 SPIs implemented
 
[    0.000000] GICv3: 0 Extended SPIs implemented
 
[    0.000000] GICv3: Distributor has no Range Selector support
 
[    0.000000] Root IRQ handler: gic_handle_irq
 
[    0.000000] GICv3: 16 PPIs implemented
 
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000038880000
 
[    0.000000] ITS: No ITS available, not enabling LPIs
 
[    0.000000] arch_timer: cp15 timer(s) running at 8.00MHz (phys).
 
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1d854df40, max_idle_ns: 440795202120 ns
 
[    0.000000] sched_clock: 56 bits at 8MHz, resolution 125ns, wraps every 2199023255500ns
 
[    0.000455] Console: colour dummy device 80x25
 
[    0.000521] Calibrating delay loop (skipped), value calculated using timer frequency.. 16.00 BogoMIPS (lpj=32000)
 
[    0.000534] pid_max: default: 32768 minimum: 301
 
[    0.000590] LSM: Security Framework initializing
 
[    0.000687] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
 
[    0.000714] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
 
[    0.002059] rcu: Hierarchical SRCU implementation.
 
[    0.003318] EFI services will not be available.
 
[    0.003517] smp: Bringing up secondary CPUs ...
 
[    0.003945] Detected VIPT I-cache on CPU1
 
[    0.003972] GICv3: CPU1: found redistributor 1 region 0:0x00000000388a0000
 
[    0.004006] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
 
[    0.004486] Detected VIPT I-cache on CPU2
 
[    0.004508] GICv3: CPU2: found redistributor 2 region 0:0x00000000388c0000
 
[    0.004527] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
 
[    0.004952] Detected VIPT I-cache on CPU3
 
[    0.004970] GICv3: CPU3: found redistributor 3 region 0:0x00000000388e0000
 
[    0.004990] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
 
[    0.005051] smp: Brought up 1 node, 4 CPUs
 
[    0.005079] SMP: Total of 4 processors activated.
 
[    0.005087] CPU features: detected: 32-bit EL0 Support
 
[    0.005091] CPU features: detected: 32-bit EL1 Support
 
[    0.005099] CPU features: detected: CRC32 instructions
 
[    0.013007] CPU: All CPU(s) started at EL2
 
[    0.013041] alternatives: patching kernel code
 
[    0.014740] devtmpfs: initialized
 
[    0.023103] KASLR disabled due to lack of seed
 
[    0.023242] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
 
[    0.023258] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
 
[    0.051091] pinctrl core: initialized pinctrl subsystem
 
[    0.051584] DMI not present or invalid.
 
[    0.052185] NET: Registered PF_NETLINK/PF_ROUTE protocol family
 
[    0.057111] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
 
[    0.057588] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
 
[    0.058153] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
 
[    0.058245] audit: initializing netlink subsys (disabled)
 
[    0.058443] audit: type=2000 audit(0.056:1): state=initialized audit_enabled=0 res=1
 
[    0.059004] thermal_sys: Registered thermal governor 'step_wise'
 
[    0.059009] thermal_sys: Registered thermal governor 'power_allocator'
 
[    0.059287] cpuidle: using governor menu
 
[    0.059500] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
 
[    0.059583] ASID allocator initialised with 65536 entries
 
[    0.060670] Serial: AMBA PL011 UART driver
 
[    0.060728] imx mu driver is registered.
 
[    0.060748] imx rpmsg driver is registered.
 
[    0.071830] imx8mp-pinctrl 30330000.pinctrl: initialized IMX pinctrl driver
 
[    0.081199] platform 32c00000.bus:ldb@32ec005c: Fixing up cyclic dependency with 32e90000.lcd-controller
 
[    0.087724] platform 32fd8000.hdmi: Fixing up cyclic dependency with 32fc6000.lcd-controller
 
[    0.110049] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
 
[    0.110066] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
 
[    0.110075] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
 
[    0.110084] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
 
[    0.111215] cryptd: max_cpu_qlen set to 1000
 
[    0.114238] ACPI: Interpreter disabled.
 
[    0.114999] iommu: Default domain type: Translated
 
[    0.115008] iommu: DMA domain TLB invalidation policy: strict mode
 
[    0.115141] vgaarb: loaded
 
[    0.115409] SCSI subsystem initialized
 
[    0.115707] usbcore: registered new interface driver usbfs
 
[    0.115744] usbcore: registered new interface driver hub
 
[    0.115774] usbcore: registered new device driver usb
 
[    0.116899] mc: Linux media interface: v0.10
 
[    0.116924] videodev: Linux video capture interface: v2.00
 
[    0.117002] pps_core: LinuxPPS API ver. 1 registered
 
[    0.117008] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
 
[    0.117024] PTP clock support registered
 
[    0.117201] EDAC MC: Ver: 3.0.0
 
[    0.118325] FPGA manager framework
 
[    0.118410] Advanced Linux Sound Architecture Driver Initialized.
 
[    0.118894] Bluetooth: Core ver 2.22
 
[    0.118919] NET: Registered PF_BLUETOOTH protocol family
 
[    0.118927] Bluetooth: HCI device and connection manager initialized
 
[    0.118936] Bluetooth: HCI socket layer initialized
 
[    0.118945] Bluetooth: L2CAP socket layer initialized
 
[    0.118959] Bluetooth: SCO socket layer initialized
 
[    0.119745] clocksource: Switched to clocksource arch_sys_counter
 
[    0.119882] VFS: Disk quotas dquot_6.6.0
 
[    0.119931] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
 
[    0.120075] pnp: PnP ACPI: disabled
 
[    0.125933] NET: Registered PF_INET protocol family
 
[    0.126175] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
 
[    0.129066] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
 
[    0.129174] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
 
[    0.129193] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
 
[    0.129602] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
 
[    0.130467] TCP: Hash tables configured (established 65536 bind 65536)
 
[    0.130570] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
 
[    0.130725] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
 
[    0.130987] NET: Registered PF_UNIX/PF_LOCAL protocol family
 
[    0.131404] RPC: Registered named UNIX socket transport module.
 
[    0.131411] RPC: Registered udp transport module.
 
[    0.131415] RPC: Registered tcp transport module.
 
[    0.131422] RPC: Registered tcp NFSv4.1 backchannel transport module.
 
[    0.132141] PCI: CLS 0 bytes, default 64
 
[    0.132783] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
 
[    0.133572] kvm [1]: IPA Size Limit: 40 bits
 
[    0.135214] kvm [1]: GICv3: no GICV resource entry
 
[    0.135221] kvm [1]: disabling GICv2 emulation
 
[    0.135235] kvm [1]: GIC system register CPU interface enabled
 
[    0.135324] kvm [1]: vgic interrupt IRQ9
 
[    0.135434] kvm [1]: Hyp mode initialized successfully
 
[    0.138714] Initialise system trusted keyrings
 
[    0.138862] workingset: timestamp_bits=42 max_order=21 bucket_order=0
 
[    0.144847] squashfs: version 4.0 (2009/01/31) Phillip Lougher
 
[    0.145412] NFS: Registering the id_resolver key type
 
[    0.145456] Key type id_resolver registered
 
[    0.145462] Key type id_legacy registered
 
[    0.145534] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
 
[    0.145541] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
 
[    0.145563] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
 
[    0.145881] 9p: Installing v9fs 9p2000 file system support
 
[    0.181913] Key type asymmetric registered
 
[    0.181922] Asymmetric key parser 'x509' registered
 
[    0.181970] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
 
[    0.181978] io scheduler mq-deadline registered
 
[    0.181986] io scheduler kyber registered
 
[    0.189113] EINJ: ACPI disabled.
 
[    0.199773] imx-sdma 30bd0000.dma-controller: Direct firmware load for imx/sdma/sdma-imx7d.bin failed with error -2
 
[    0.199794] imx-sdma 30bd0000.dma-controller: Falling back to sysfs fallback for: imx/sdma/sdma-imx7d.bin
 
[    0.201537] mxs-dma 33000000.dma-apbh: initialized
 
[    0.203215] SoC: i.MX8MP revision 1.1
 
[    0.203857] Bus freq driver module loaded
 
[    0.210209] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
 
[    0.212539] 30860000.serial: ttymxc0 at MMIO 0x30860000 (irq = 31, base_baud = 5000000) is a IMX
 
[    0.213022] 30880000.serial: ttymxc2 at MMIO 0x30880000 (irq = 32, base_baud = 5000000) is a IMX
 
[    0.213423] 30890000.serial: ttymxc1 at MMIO 0x30890000 (irq = 33, base_baud = 1500000) is a IMX
 
[    1.335825] printk: console [ttymxc1] enabled
 
[    1.355599] loop: module loaded
 
[    1.360173] megasas: 07.717.02.00-rc1
 
[    1.365502] imx ahci driver is registered.
 
[    1.371351] SPI driver spidev has no spi_device_id for spidev
 
[    1.377113] SPI driver spidev has no spi_device_id for dave,sbcx-exp
 
[    1.387662] tun: Universal TUN/TAP device driver, 1.6
 
[    1.392902] CAN device driver interface
 
[    1.398172] thunder_xcv, ver 1.0
 
[    1.401442] thunder_bgx, ver 1.0
 
[    1.404710] nicpf, ver 1.0
 
[    1.409904] hclge is initializing
 
[    1.413242] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
 
[    1.420471] hns3: Copyright (c) 2017 Huawei Corporation.
 
[    1.425836] e1000: Intel(R) PRO/1000 Network Driver
 
[    1.430721] e1000: Copyright (c) 1999-2006 Intel Corporation.
 
[    1.436502] e1000e: Intel(R) PRO/1000 Network Driver
 
[    1.441471] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
 
[    1.447436] igb: Intel(R) Gigabit Ethernet Network Driver
 
[    1.452841] igb: Copyright (c) 2007-2014 Intel Corporation.
 
[    1.458445] igbvf: Intel(R) Gigabit Virtual Function Network Driver
 
[    1.464723] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
 
[    1.470843] sky2: driver version 1.30
 
[    1.475206] usbcore: registered new interface driver r8152
 
[    1.480945] VFIO - User Level meta-driver version: 0.3
 
[    1.491762] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
 
[    1.498360] ehci-pci: EHCI PCI platform driver
 
[    1.502853] ehci-platform: EHCI generic platform driver
 
[    1.508326] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
 
[    1.514537] ohci-pci: OHCI PCI platform driver
 
[    1.519026] ohci-platform: OHCI generic platform driver
 
[    1.525175] usbcore: registered new interface driver uas
 
[    1.530540] usbcore: registered new interface driver usb-storage
 
[    1.536619] usbcore: registered new interface driver usbserial_generic
 
[    1.543172] usbserial: USB Serial support registered for generic
 
[    1.549206] usbcore: registered new interface driver ftdi_sio
 
[    1.554976] usbserial: USB Serial support registered for FTDI USB Serial Device
 
[    1.562323] usbcore: registered new interface driver usb_serial_simple
 
[    1.568875] usbserial: USB Serial support registered for carelink
 
[    1.574988] usbserial: USB Serial support registered for zio
 
[    1.580671] usbserial: USB Serial support registered for funsoft
 
[    1.586693] usbserial: USB Serial support registered for flashloader
 
[    1.593068] usbserial: USB Serial support registered for google
 
[    1.599007] usbserial: USB Serial support registered for libtransistor
 
[    1.605556] usbserial: USB Serial support registered for vivopay
 
[    1.611583] usbserial: USB Serial support registered for moto_modem
 
[    1.617875] usbserial: USB Serial support registered for motorola_tetra
 
[    1.624516] usbserial: USB Serial support registered for nokia
 
[    1.630369] usbserial: USB Serial support registered for novatel_gps
 
[    1.636744] usbserial: USB Serial support registered for hp4x
 
[    1.642517] usbserial: USB Serial support registered for suunto
 
[    1.648455] usbserial: USB Serial support registered for siemens_mpi
 
[    1.654841] usbcore: registered new interface driver usb_ehset_test
 
[    1.665735] snvs_rtc 30370000.snvs:snvs-rtc-lp: registered as rtc0
 
[    1.671962] snvs_rtc 30370000.snvs:snvs-rtc-lp: setting system clock to 2023-07-26T09:52:50 UTC (1690365170)
 
[    1.681948] i2c_dev: i2c /dev entries driver
 
[    1.688387] Driver for 1-wire Dallas network protocol.
 
[    1.696911] Bluetooth: HCI UART driver ver 2.3
 
[    1.701383] Bluetooth: HCI UART protocol H4 registered
 
[    1.706529] Bluetooth: HCI UART protocol BCSP registered
 
[    1.711865] Bluetooth: HCI UART protocol LL registered
 
[    1.717011] Bluetooth: HCI UART protocol ATH3K registered
 
[    1.722439] Bluetooth: HCI UART protocol Three-wire (H5) registered
 
[    1.728818] Bluetooth: HCI UART protocol Broadcom registered
 
[    1.734500] Bluetooth: HCI UART protocol QCA registered
 
[    1.739968] EDAC MC: ECC not enabled
 
[    1.745045] sdhci: Secure Digital Host Controller Interface driver
 
[    1.751246] sdhci: Copyright(c) Pierre Ossman
 
[    1.756455] Synopsys Designware Multimedia Card Interface Driver
 
[    1.763293] sdhci-pltfm: SDHCI platform and OF driver helper
 
[    1.771334] ledtrig-cpu: registered to indicate activity on CPUs
 
[    1.778302] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
 
[    1.785251] usbcore: registered new interface driver usbhid
 
[    1.790837] usbhid: USB HID core driver
 
[    1.800286]  cs_system_cfg: CoreSight Configuration manager initialised
 
[    1.801888] mmc2: SDHCI controller on 30b60000.mmc [30b60000.mmc] using ADMA
 
[    1.808612] optee: probing for conduit method.
 
[    1.818449] optee: revision 3.19 (00919403)
 
[    1.819278] optee: dynamic shared memory is enabled
 
[    1.828702] optee: initialized driver
 
[    1.835068] Galcore version 6.4.3.p4.398061
 
[    1.897395] mmc2: new HS400 Enhanced strobe MMC card at address 0001
 
[    1.905453] mmcblk2: mmc2:0001 DG4008 7.28 GiB
 
[    1.912620]  mmcblk2: p1 p2
 
[    1.917199] mmcblk2boot0: mmc2:0001 DG4008 4.00 MiB
 
[    1.923946] mmcblk2boot1: mmc2:0001 DG4008 4.00 MiB
 
[    1.930831] mmcblk2rpmb: mmc2:0001 DG4008 4.00 MiB, chardev (234:0)
 
[    1.952496] [drm] Initialized vivante 1.0.0 20170808 for 40000000.mix_gpu_ml on minor 0
 
[    1.961940] hantrodec 0 : module inserted. Major = 510
 
[    1.967545] hantrodec 1 : module inserted. Major = 510
 
[    1.974110] hantroenc: HW at base <0000000038320000> with ID <0x80006200>
 
[    1.981044] hx280enc: module inserted. Major <509>
 
[    1.989485] NET: Registered PF_LLC protocol family
 
[    1.994787] NET: Registered PF_INET6 protocol family
 
[    2.002043] Segment Routing with IPv6
 
[    2.005755] In-situ OAM (IOAM) with IPv6
 
[    2.009725] NET: Registered PF_PACKET protocol family
 
[    2.014810] can: controller area network core
 
[    2.019207] NET: Registered PF_CAN protocol family
 
[    2.024019] can: raw protocol
 
[    2.026989] can: broadcast manager protocol
 
[    2.031190] can: netlink gateway - max_hops=1
 
[    2.036279] Bluetooth: RFCOMM TTY layer initialized
 
[    2.041192] Bluetooth: RFCOMM socket layer initialized
 
[    2.046362] Bluetooth: RFCOMM ver 1.11
 
[    2.050128] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
 
[    2.055446] Bluetooth: BNEP filters: protocol multicast
 
[    2.060681] Bluetooth: BNEP socket layer initialized
 
[    2.065651] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
 
[    2.071581] Bluetooth: HIDP socket layer initialized
 
[    2.077592] 8021q: 802.1Q VLAN Support v1.8
 
[    2.081806] lib80211: common routines for IEEE802.11 drivers
 
[    2.087923] 9pnet: Installing 9P2000 support
 
[    2.092224] tsn generic netlink module v1 init...
 
[    2.097031] Key type dns_resolver registered
 
[    2.102197] Loading compiled-in X.509 certificates
 
[    2.131413] regulator-se050-en GPIO handle specifies active low - ignored
 
[    2.140742] i2c i2c-0: IMX I2C adapter registered
 
[    2.146393] i2c 1-003c: Fixing up cyclic dependency with 32e40000.csi
 
[    2.153133] ov5640 1-003c: supply DOVDD not found, using dummy regulator
 
[    2.159926] ov5640 1-003c: supply AVDD not found, using dummy regulator
 
[    2.166603] ov5640 1-003c: supply DVDD not found, using dummy regulator
 
[    2.175534] i2c i2c-1: IMX I2C adapter registered
 
[    2.181406] i2c 2-003c: Fixing up cyclic dependency with 32e50000.csi
 
[    2.188157] ov5640 2-003c: supply DOVDD not found, using dummy regulator
 
[    2.194960] ov5640 2-003c: supply AVDD not found, using dummy regulator
 
[    2.201622] ov5640 2-003c: supply DVDD not found, using dummy regulator
 
[    2.214438] i2c i2c-2: IMX I2C adapter registered
 
[    2.220302] i2c 5-004c: Fixing up cyclic dependency with 32c00000.bus:ldb@32ec005c
 
[    2.313322] i2c i2c-5: IMX I2C adapter registered
 
[    2.318968] imx8mq-usb-phy 381f0040.usb-phy: supply vbus not found, using dummy regulator
 
[    2.327483] imx8mq-usb-phy 382f0040.usb-phy: supply vbus not found, using dummy regulator
 
[    2.338004] imx6q-pcie 33800000.pcie: supply epdev_on not found, using dummy regulator
 
[    2.346340] imx6q-pcie 33800000.pcie: EXT REF_CLK is used!.
 
[    2.352545] imx6q-pcie 33800000.pcie: PCIe PHY PLL clock is locked.
 
[    2.359804] pps pps0: new PPS source ptp0
 
[    2.371856] fec 30be0000.ethernet eth0: registered PHC device 0
 
[    2.378677] imx-dwmac 30bf0000.ethernet: IRQ eth_lpi not found
 
[    2.385090] imx-dwmac 30bf0000.ethernet: User ID: 0x10, Synopsys ID: 0x51
 
[    2.388131] imx6q-pcie 33800000.pcie: PCIe PLL is locked.
 
[    2.391909] imx-dwmac 30bf0000.ethernet: DWMAC4/5
 
[    2.397342] imx6q-pcie 33800000.pcie: iATU unroll: enabled
 
[    2.402093] imx-dwmac 30bf0000.ethernet: DMA HW capability register supported
 
[    2.407579] imx6q-pcie 33800000.pcie: Detected iATU regions: 4 outbound, 4 inbound
 
[    2.414715] imx-dwmac 30bf0000.ethernet: RX Checksum Offload Engine supported
 
[    2.422292] imx6q-pcie 33800000.pcie: host bridge /soc@0/pcie@33800000 ranges:
 
[    2.429422] imx-dwmac 30bf0000.ethernet: TX Checksum insertion supported
 
[    2.436648] imx6q-pcie 33800000.pcie:  No bus range found for /soc@0/pcie@33800000, using [bus 00-ff]
 
[    2.443346] imx-dwmac 30bf0000.ethernet: Wake-Up On Lan supported
 
[    2.452673] imx6q-pcie 33800000.pcie:      IO 0x001ff80000..0x001ff8ffff -> 0x0000000000
 
[    2.458796] imx-dwmac 30bf0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
 
[    2.466932] imx6q-pcie 33800000.pcie:      MEM 0x0018000000..0x001fefffff -> 0x0018000000
 
[    2.474585] imx-dwmac 30bf0000.ethernet: Enabled L3L4 Flow TC (entries=8)
 
[    2.482838] imx6q-pcie 33800000.pcie: iATU unroll: enabled
 
[    2.489554] imx-dwmac 30bf0000.ethernet: Enabled RFS Flow TC (entries=8)
 
[    2.495037] imx6q-pcie 33800000.pcie: Detected iATU regions: 4 outbound, 4 inbound
 
[    2.501779] imx-dwmac 30bf0000.ethernet: Enabling HW TC (entries=256, max_off=256)
 
[    2.516888] imx-dwmac 30bf0000.ethernet: Using 34 bits DMA width
 
[    2.526985] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
 
[    2.532522] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
 
[    2.540526] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe6d hci version 0x110 quirks 0x0000002001010010
 
[    2.549969] xhci-hcd xhci-hcd.1.auto: irq 77, io mem 0x38100000
 
[    2.556002] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
 
[    2.561505] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
 
[    2.569181] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
 
[    2.576661] hub 1-0:1.0: USB hub found
 
[    2.580453] hub 1-0:1.0: 1 port detected
 
[    2.584669] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
 
[    2.593789] hub 2-0:1.0: USB hub found
 
[    2.597573] hub 2-0:1.0: 1 port detected
 
[    2.602487] dwc3 38200000.usb: Configuration mismatch. dr_mode forced to gadget
 
[    2.609675] imx6q-pcie 33800000.pcie: Link up
 
[    2.611711] gpio-42 (onewire): enforced open drain please flag it properly in DT/ACPI DSDT/board file
 
[    2.624836] imx-cpufreq-dt imx-cpufreq-dt: cpu speed grade 7 mkt segment 2 supported-hw 0x80 0x4
 
[    2.637462] mxc-mipi-csi2-sam 32e40000.csi: supply mipi-phy not found, using dummy regulator
 
[    2.637622] sdhci-esdhc-imx 30b50000.mmc: Got CD GPIO
 
[    2.646280] : mipi_csis_imx8mp_phy_reset, No remote pad found!
 
[    2.656888] mxc-mipi-csi2-sam 32e40000.csi: lanes: 2, hs_settle: 13, clk_settle: 2, wclk: 1, freq: 500000000
 
[    2.660539] w1_master_driver w1_bus_master1: Attaching one wire slave 2d.000035c49266 crc 4e
 
[    2.667797] mxc-mipi-csi2-sam 32e50000.csi: supply mipi-phy not found, using dummy regulator
 
[    2.683966] : mipi_csis_imx8mp_phy_reset, No remote pad found!
 
[    2.684709] mmc1: SDHCI controller on 30b50000.mmc [30b50000.mmc] using ADMA
 
[    2.689865] mxc-mipi-csi2-sam 32e50000.csi: lanes: 2, hs_settle: 13, clk_settle: 2, wclk: 1, freq: 266000000
 
[    2.708680] isi-capture 32e00000.isi:cap_device: deferring 32e00000.isi:cap_device device registration
 
[    2.712071] imx6q-pcie 33800000.pcie: Link up
 
[    2.718948] mxc-isi 32e00000.isi: mxc_isi.0 registered successfully
 
[    2.722386] imx6q-pcie 33800000.pcie: Link up, Gen2
 
[    2.730395] isi-capture 32e02000.isi:cap_device: deferring 32e02000.isi:cap_device device registration
 
[    2.742977] mxc-isi 32e02000.isi: mxc_isi.1 registered successfully
 
[    2.745487] mmc1: host does not support reading read-only switch, assuming write-enable
 
[    2.752485] dwhdmi-imx 32fd8000.hdmi: Detected HDMI TX controller v2.13a with HDCP (samsung_dw_hdmi_phy2)
 
[    2.761488] mmc1: new high speed SDHC card at address e624
 
[    2.769385] dwhdmi-imx 32fd8000.hdmi: registered DesignWare HDMI I2C bus driver
 
[    2.773242] mmcblk1: mmc1:e624 SA32G 29.7 GiB
 
[    2.782094] imx-drm display-subsystem: bound imx-lcdifv3-crtc.0 (ops lcdifv3_crtc_ops)
 
[    2.787214]  mmcblk1: p1 p2
 
[    2.792118] imx-drm display-subsystem: bound imx-lcdifv3-crtc.1 (ops lcdifv3_crtc_ops)
 
[    2.803054] imx-drm display-subsystem: bound 32c00000.bus:ldb@32ec005c (ops imx8mp_ldb_ops)
 
[    2.811456] imx-drm display-subsystem: bound 32fd8000.hdmi (ops dw_hdmi_imx_ops)
 
[    2.819374] [drm] Initialized imx-drm 1.0.0 20120507 for display-subsystem on minor 1
 
[    2.834708] mmc0: SDHCI controller on 30b40000.mmc [30b40000.mmc] using ADMA
 
[    2.840066] imx6q-pcie 33800000.pcie: Link up
 
[    2.846229] imx6q-pcie 33800000.pcie: PCI host bridge to bus 0000:00
 
[    2.847760] usb 1-1: new high-speed USB device number 2 using xhci-hcd
 
[    2.852612] pci_bus 0000:00: root bus resource [bus 00-ff]
 
[    2.864635] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
 
[    2.870830] pci_bus 0000:00: root bus resource [mem 0x18000000-0x1fefffff]
 
[    2.877734] pci 0000:00:00.0: [16c3:abcd] type 01 class 0x060400
 
[    2.881480] mmc0: queuing unknown CIS tuple 0x01 [d9 01 ff] (3 bytes)
 
[    2.883755] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x000fffff]
 
[    2.896478] pci 0000:00:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
 
[    2.903230] pci 0000:00:00.0: supports D1
 
[    2.904523] mmc0: queuing unknown CIS tuple 0x1a [01 01 00 02 07] (5 bytes)
 
[    2.907253] pci 0000:00:00.0: PME# supported from D0 D1 D3hot D3cold
 
[    2.920758] mmc0: queuing unknown CIS tuple 0x1b [c1 41 30 30 ff ff 32 00] (8 bytes)
 
[    2.923524] pci 0000:01:00.0: [1912:0015] type 00 class 0x0c0330
 
[    2.930255] mmc0: queuing unknown CIS tuple 0x14 [] (0 bytes)
 
[    2.934603] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00001fff 64bit]
 
[    2.947439] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
 
[    2.966965] pci 0000:00:00.0: BAR 0: assigned [mem 0x18000000-0x180fffff]
 
[    2.973800] pci 0000:00:00.0: BAR 14: assigned [mem 0x18100000-0x181fffff]
 
[    2.980704] mmc0: new high speed SDIO card at address 0001
 
[    2.983832] pci 0000:00:00.0: BAR 6: assigned [mem 0x18200000-0x1820ffff pref]
 
[    2.993743] pci 0000:01:00.0: BAR 0: assigned [mem 0x18100000-0x18101fff 64bit]
 
[    3.001109] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
 
[    3.006350] pci 0000:00:00.0:  bridge window [mem 0x18100000-0x181fffff]
 
[    3.013507] pcieport 0000:00:00.0: PME: Signaling with IRQ 242
 
[    3.019498] pci 0000:01:00.0: enabling device (0000 -> 0002)
 
[    3.056014] hub 1-1:1.0: USB hub found
 
[    3.060012] hub 1-1:1.0: 4 ports detected
 
[    3.182267] usb 2-1: new SuperSpeed USB device number 2 using xhci-hcd
 
[    3.328595] hub 2-1:1.0: USB hub found
 
[    3.333068] hub 2-1:1.0: 4 ports detected
 
[    3.511287] Console: switching to colour frame buffer device 160x45
 
[    3.533422] imx-drm display-subsystem: [drm] fb0: imx-drmdrmfb frame buffer device
 
[    3.545381] isi-m2m 32e00000.isi:m2m_device: Register m2m success for ISI.0
 
[    3.558258] Generic PHY 30be0000.ethernet-1:08: attached PHY driver (mii_bus:phy_addr=30be0000.ethernet-1:08, irq=POLL)
 
[    3.712379] Hot alarm is canceled. GPU3D clock will return to 64/64
 
[    7.649184] fec 30be0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off
 
[    7.660396] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
 
[    7.680063] IP-Config: Complete:
 
[    7.683290]      device=eth0, hwaddr=da:2c:c3:a1:70:74, ipaddr=192.168.10.56, mask=255.255.255.0, gw=192.168.10.254
 
[    7.693741]      host=desk-mx, domain=, nis-domain=(none)
 
[    7.699148]      bootserver=192.168.10.100, rootserver=192.168.10.100, rootpath=
 
[    7.699275] cfg80211: Loading compiled-in X.509 certificates for regulatory database
 
[    7.717997] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
 
[    7.724630] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
 
[    7.733258] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db
 
[    7.743582] ALSA device list:
 
[    7.746577]  No soundcards found.
 
[    7.779341] VFS: Mounted root (nfs filesystem) on device 0:21.
 
[    7.786366] devtmpfs: mounted
 
[    7.790046] Freeing unused kernel memory: 3008K
 
[    7.808130] Run /sbin/init as init process
 
[    8.162684] systemd[1]: systemd 250.5+ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
 
[    8.194573] systemd[1]: Detected architecture arm64.
 
  
Welcome to NXP i.MX Release Distro 5.15-kirkstone (kirkstone)!
+
==== nfs server ====
 +
The NFS server should exports the correct file system directory (in our example)
  
[    8.292660] systemd[1]: Hostname set to <desk-mx8mp>.
+
<pre>
[    8.315686] systemd[1]: Initializing machine ID from random generator.
+
dvdk@vagrant:~$ cat /etc/exports
[    8.454934] systemd-sysv-generator[192]: SysV service '/etc/init.d/single' 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 more safe and robust.
+
/home 0.0.0.0/0.0.0.0(rw,async,no_root_squash,no_subtree_check,crossmnt)
[    8.484897] systemd-sysv-generator[192]: SysV service '/etc/init.d/halt' 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 more safe and robust.
+
dvdk@vagrant:~$
[    8.533352] systemd-sysv-generator[192]: SysV service '/etc/init.d/sendsigs' 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 more safe and robust.
+
</pre>
[    8.560790] systemd-sysv-generator[192]: SysV service '/etc/init.d/umountfs' 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 more safe and robust.
 
[    8.606224] systemd-sysv-generator[192]: SysV service '/etc/init.d/rc.local' 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 more safe and robust.
 
[    8.634155] systemd-sysv-generator[192]: SysV service '/etc/init.d/reboot' 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 more safe and robust.
 
[    8.663799] systemd-sysv-generator[192]: SysV service '/etc/init.d/umountnfs.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 more safe and robust.
 
[    8.691554] systemd-sysv-generator[192]: SysV service '/etc/init.d/save-rtc.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 more safe and robust.
 
[    8.795127] systemd[183]: /lib/systemd/system-generators/systemd-gpt-auto-generator failed with exit status 1.
 
[  10.183524] systemd[1]: Queued start job for default target Graphical Interface.
 
[  10.246267] systemd[1]: Created slice Slice /system/getty.
 
[  OK  ] Created slice Slice /system/getty.
 
[  10.270241] systemd[1]: Created slice Slice /system/modprobe.
 
[  OK  ] Created slice Slice /system/modprobe.
 
[  10.294876] systemd[1]: Created slice Slice /system/serial-getty.
 
[  OK  ] Created slice Slice /system/serial-getty.
 
[  10.318632] systemd[1]: Created slice User and Session Slice.
 
[  OK  ] Created slice User and Session Slice.
 
[  10.340138] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
 
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
 
[  10.364064] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
 
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
 
[  10.388076] systemd[1]: Reached target Host and Network Name Lookups.
 
[  OK  ] Reached target Host and Network Name Lookups.
 
[  10.412177] systemd[1]: Reached target Path Units.
 
[  OK  ] Reached target Path Units.
 
[  10.432199] systemd[1]: Reached target Remote File Systems.
 
[  OK  ] Reached target Remote File Systems.
 
[  10.456179] systemd[1]: Reached target Slice Units.
 
[  OK  ] Reached target Slice Units.
 
[  10.476212] systemd[1]: Reached target Swaps.
 
[  OK  ] Reached target Swaps.
 
[  10.502253] systemd[1]: Listening on RPCbind Server Activation Socket.
 
[  OK  ] Listening on RPCbind Server Activation Socket.
 
[  10.523940] systemd[1]: Reached target RPC Port Mapper.
 
[  OK  ] Reached target RPC Port Mapper.
 
[  10.549035] systemd[1]: Listening on Syslog Socket.
 
[  OK  ] Listening on Syslog Socket.
 
[  10.568473] systemd[1]: Listening on initctl Compatibility Named Pipe.
 
[  OK  ] Listening on initctl Compatibility Named Pipe.
 
[  10.596272] systemd[1]: Listening on Journal Audit Socket.
 
[  OK  ] Listening on Journal Audit Socket.
 
[  10.620579] systemd[1]: Listening on Journal Socket (/dev/log).
 
[  OK  ] Listening on Journal Socket (/dev/log).
 
[  10.644652] systemd[1]: Listening on Journal Socket.
 
[  OK  ] Listening on Journal Socket.
 
[  10.668443] systemd[1]: Listening on Network Service Netlink Socket.
 
[  OK  ] Listening on Network Service Netlink Socket.
 
[  10.710423] systemd[1]: Listening on udev Control Socket.
 
[  OK  ] Listening on udev Control Socket.
 
[  10.732582] systemd[1]: Listening on udev Kernel Socket.
 
[  OK  ] Listening on udev Kernel Socket.
 
[  10.748577] systemd[1]: Listening on User Database Manager Socket.
 
[  OK  ] Listening on User Database Manager Socket.
 
[  10.776008] systemd[1]: Mounting Huge Pages File System...
 
        Mounting Huge Pages File System...
 
[  10.799828] systemd[1]: Mounting POSIX Message Queue File System...
 
        Mounting POSIX Message Queue File System...
 
[  10.828441] systemd[1]: Mounting Kernel Debug File System...
 
        Mounting Kernel Debug File System...
 
[  10.852557] systemd[1]: Kernel Trace File System was skipped because of a failed condition check (ConditionPathExists=/sys/kernel/tracing).
 
[  10.876046] systemd[1]: Mounting Temporary Directory /tmp...
 
        Mounting Temporary Directory /tmp...
 
[  10.900026] systemd[1]: Create List of Static Device Nodes was skipped because of a failed condition check (ConditionFileNotEmpty=/lib/modules/5.15.71-desk-mx8m-l-4.0.0/modules.devname).
 
[  10.920739] systemd[1]: Starting Load Kernel Module configfs...
 
        Starting Load Kernel Module configfs...
 
[  10.944608] systemd[1]: Starting Load Kernel Module drm...
 
        Starting Load Kernel Module drm...
 
[  10.967970] systemd[1]: Starting Load Kernel Module fuse...
 
        Starting Load Kernel Module fuse...
 
[  10.998516] systemd[1]: Starting RPC Bind...
 
        Starting RPC Bind...
 
[  11.017262] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
 
[  11.030456] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
 
[  11.043652] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
 
[  11.058726] systemd[1]: Starting Journal Service...
 
        Starting Journal Service...
 
[  11.088324] systemd[1]: Load Kernel Modules was skipped because all trigger condition checks failed.
 
[  11.102853] systemd[1]: Starting Generate network units from Kernel command line...
 
        Starting Generate network …ts from Kernel command line...
 
[  11.133852] systemd[1]: Starting Remount Root and Kernel File Systems...
 
        Starting Remount Root and Kernel File Systems...
 
[  11.160276] systemd[1]: Starting Apply Kernel Variables...
 
        Starting Apply Kernel Variables...
 
[  11.184484] systemd[1]: Starting Coldplug All udev Devices...
 
        Starting Coldplug All udev Devices...
 
[  11.209418] systemd[1]: Started RPC Bind.
 
[  OK  ] Started RPC Bind.
 
[  11.228452] systemd[1]: Mounted Huge Pages File System.
 
[  OK  ] Mounted Huge Pages File System.
 
[  11.248400] systemd[1]: Mounted POSIX Message Queue File System.
 
[  OK  ] Mounted POSIX Message Queue File System.
 
[  11.272469] systemd[1]: Mounted Kernel Debug File System.
 
[  OK  ] Mounted Kernel Debug File System.
 
[  11.292369] systemd[1]: Mounted Temporary Directory /tmp.
 
[  OK  ] Mounted Temporary Directory /tmp.
 
[  11.312863] systemd[1]: modprobe@configfs.service: Deactivated successfully.
 
[  11.321142] systemd[1]: Finished Load Kernel Module configfs.
 
[  OK  ] Finished Load Kernel Module configfs.
 
[  11.344551] systemd[1]: Started Journal Service.
 
[  OK  ] Started Journal Service.
 
[  OK  ] Finished Load Kernel Module drm.
 
[  OK  ] Finished Load Kernel Module fuse.
 
[  OK  ] Finished Generate network units from Kernel command line.
 
[  OK  ] Finished Remount Root and Kernel File Systems.
 
[  OK  ] Finished Apply Kernel Variables.
 
        Mounting Kernel Configuration File System...
 
        Starting Flush Journal to Persistent Storage...
 
        Starting Create System Users...
 
[  11.533452] systemd-journald[201]: Received client request to flush runtime journal.
 
[  OK  ] Mounted Kernel Configuration File System.
 
[  OK  ] Finished Flush Journal to Persistent Storage.
 
[  OK  ] Finished Create System Users.
 
        Starting Create Static Device Nodes in /dev...
 
[  OK  ] Finished Coldplug All udev Devices.
 
[  OK  ] Finished Create Static Device Nodes in /dev.
 
[  OK  ] Reached target Preparation for Local File Systems.
 
        Mounting /var/volatile...
 
        Starting Rule-based Manage…for Device Events and Files...
 
[  OK  ] Mounted /var/volatile.
 
        Starting Load/Save Random Seed...
 
[  OK  ] Reached target Local File Systems.
 
        Starting Rebuild Dynamic Linker Cache...
 
        Starting Create Volatile Files and Directories...
 
[  OK  ] Started Rule-based Manager for Device Events and Files.
 
[  OK  ] Finished Create Volatile Files and Directories.
 
        Starting Rebuild Journal Catalog...
 
        Starting Network Time Synchronization...
 
        Starting Record System Boot/Shutdown in UTMP...
 
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
 
[  OK  ] Finished Rebuild Journal Catalog.
 
[  OK  ] Reached target Hardware activated USB gadget.
 
[  OK  ] Started Network Time Synchronization.
 
[  OK  ] Reached target System Time Set.
 
[  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
 
[  OK  ] Created slice Slice /system/systemd-fsck.
 
[  OK  ] Found device /dev/mmcblk2p2.
 
[  OK  ] Found device /dev/mmcblk2p1.
 
        Starting File System Check on /dev/mmcblk2p1...
 
        Starting File System Check on /dev/mmcblk2p2...
 
[  OK  ] Finished File System Check on /dev/mmcblk2p1.
 
[  OK  ] Finished File System Check on /dev/mmcblk2p2.
 
        Mounting /run/media/boot-mmcblk2p1...
 
        Mounting /run/media/rfs-mmcblk2p2...
 
[  15.217320] EXT4-fs (mmcblk2p1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
 
[  OK  ] Found device /dev/mmcblk1p1.
 
[  15.231849] EXT4-fs (mmcblk2p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
 
[  OK  ] Mounted /run/media/boot-mmcblk2p1.
 
[  OK  ] Mounted /run/media/rfs-mmcblk2p2.
 
[  OK  ] Found device /dev/mmcblk1p2.
 
        Starting File System Check on /dev/mmcblk1p1...
 
        Starting File System Check on /dev/mmcblk1p2...
 
[  OK  ] Finished File System Check on /dev/mmcblk1p2.
 
        Mounting /run/media/root-mmcblk1p2...
 
[  15.948603] random: crng init done
 
[  OK  ] Finished Load/Save Random Seed.
 
[  16.205334] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
 
[  OK  ] Mounted /run/media/root-mmcblk1p2.
 
[  OK  ] Finished File System Check on /dev/mmcblk1p1.
 
        Mounting /run/media/boot-mmcblk1p1...
 
[  OK  ] Mounted /run/media/boot-mmcblk1p1.
 
[*    ] A start job is running for Rebuild …namic Linker Cache (8s / no limit)
 
[**    ] A start job is running for Rebuild …namic Linker Cache (9s / no limit)
 
[***  ] A start job is running for Rebuild …namic Linker Cache (9s / no limit)
 
[  OK  ] Finished Rebuild Dynamic Linker Cache.
 
        Starting Update is Completed...
 
[  OK  ] Finished Update is Completed.
 
[  OK  ] Reached target System Initialization.
 
[  OK  ] Started Daily rotation of log files.
 
[  OK  ] Started Daily Cleanup of Temporary Directories.
 
[  OK  ] Reached target Timer Units.
 
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
 
[  OK  ] Listening on D-Bus System Message Bus Socket.
 
        Starting Docker Socket for the API...
 
        Starting sshd.socket...
 
        Starting Weston socket...
 
[  OK  ] Listening on Docker Socket for the API.
 
[  OK  ] Listening on sshd.socket.
 
[  OK  ] Listening on Weston socket.
 
[  OK  ] Reached target Socket Units.
 
[  OK  ] Reached target Basic System.
 
[  OK  ] Started Job spooling tools.
 
[  OK  ] Started Periodic Command Scheduler.
 
        Starting D-Bus System Message Bus...
 
[  OK  ] Started Linux Firmware Loader Daemon.
 
[  OK  ] Started Configuration for i.MX GPU (Former rc_gpu.S).
 
[  20.808053] imx-sdma 30e10000.dma-controller: firmware found.
 
[  20.808118] imx-sdma 30bd0000.dma-controller: firmware found.
 
[  OK  ] Started    20.819894] imx-sdma 30bd0000.dma-controller: loaded firmware 4.6
 
;39mISP i.MX 8Mplus daemon.
 
        Starting IPv6 Packet Filtering Framework...
 
        Starting IPv4 Packet Filtering Framework...
 
        Starting Network Time Service (one-shot ntpdate mode)...
 
        Starting Telephony service...
 
[  OK  ] Started System Logging Service.
 
        Starting User Login Management...
 
[  OK  ] Started TEE Supplicant.
 
        Starting OpenSSH Key Generation...
 
[  OK  ] Started D-Bus System Message Bus.
 
[  OK  ] Finished IPv6 Packet Filtering Framework.
 
[  OK  ] Finished IPv4 Packet Filtering Framework.
 
[  OK  ] Finished Network Time Service (one-shot ntpdate mode).
 
[  OK  ] Reached target Preparation for Network.
 
        Starting Connection service...
 
        Starting Network Configuration...
 
[  OK  ] Started Telephony service.
 
[  OK  ] Started Connection service.
 
        Starting Avahi mDNS/DNS-SD Stack...
 
[  OK  ] Started User Login Management.
 
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
 
        Starting WPA supplicant...
 
        Starting Hostname Service...
 
[  OK  ] Started Network Configuration.
 
[  OK  ] Started WPA supplicant.
 
[  OK  ] Reached target Network.
 
        Starting containerd container runtime...
 
[  OK  ] Started NFS status monitor for NFSv2/3 locking..
 
[  OK  ] Started Respond to IPv6 Node Information Queries.
 
        Starting /etc/rc.local Compatibility...
 
[  OK  ] Started Network Router Discovery Daemon.
 
        Starting Permit User Sessions...
 
[  OK  ] Started /etc/rc.local Compatibility.
 
[  OK  ] Finished Permit User Sessions.
 
[  OK  ] Started Getty on tty1.
 
[  OK  ] Started Serial Getty on ttymxc1.
 
[  OK  ] Reached target Login Prompts.
 
        Starting Weston, a Wayland…ositor, as a system service...
 
[  OK  ] Started Hostname Service.
 
        Starting User Database Manager...
 
[  OK  ] Started User Database Manager.
 
[  OK  ] Created slice User Slice of UID 0.
 
        Starting User Runtime Directory /run/user/0...
 
[  OK  ] Finished User Runtime Directory /run/user/0.
 
        Starting User Manager for UID 0...
 
[  22.877331] audit: type=1006 audit(1690365191.700:2): pid=656 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=1 res=1
 
[  22.891620] audit: type=1300 audit(1690365191.700:2): arch=c00000b7 syscall=64 success=yes exit=1 a0=8 a1=ffffdcf1acd0 a2=1 a3=ffffa0828020 items=0 ppid=1 pid=656 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/lib/systemd/systemd" key=(null)
 
[  22.918049] audit: type=1327 audit(1690365191.700:2): proctitle="(systemd)"
 
[  OK  ] Started User Manager for UID 0.
 
[  OK  ] Started Session c1 of User root.
 
[  OK  ] Started containerd container runtime.
 
[  OK  ] Reached target Multi-User System.
 
[  23.727673] audit: type=1006 audit(1690365192.548:3): pid=645 uid=0 old-auid=4294967295 auid=0 tty=tty7 old-ses=4294967295 ses=2 res=1
 
[  23.740728] audit: type=1300 audit(1690365192.548:3): arch=c00000b7 syscall=64 success=yes exit=1 a0=8 a1=ffffdcf1acd0 a2=1 a3=ffffa0828020 items=0 ppid=1 pid=645 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=tty7 ses=2 comm="(weston)" exe="/lib/systemd/systemd" key=(null)
 
[  23.766854] audit: type=1327 audit(1690365192.548:3): proctitle="(weston)"
 
[  24.674026] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
 
[  24.680657] imx-dwmac 30bf0000.ethernet eth1: Link is Up - 1Gbps/Full - flow control off
 
[  OK  ] Started Weston, a Wayland …mpositor, as a system service.
 
[  OK  ] Reached target Graphical Interface.
 
        Starting Record Runlevel Change in UTMP...
 
[  OK  ] Finished Record Runlevel Change in UTMP.
 
[  OK  ] Stopped ISP i.MX 8Mplus daemon.
 
[  OK  ] Started ISP i.MX 8Mplus daemon.
 
  
NXP i.MX Release Distro 5.15-kirkstone desk-mx8mp ttymxc1
+
otherwise, change its configuration and then restart the nfs server:
  
desk-mx8mp login: root
+
<pre>
root@desk-mx8mp:~#
+
dvdk@vagrant:~$ sudo /etc/init.d/nfs-kernel-server restart
 +
[sudo] password for dvdk:  
 +
* Stopping NFS kernel daemon                                                                                                                                                                                                        [ OK ]
 +
* Unexporting directories for NFS kernel daemon...                                                                                                                                                                                  [ OK ]
 +
* Exporting directories for NFS kernel daemon...                                                                                                                                                                                    [ OK ]
 +
* Starting NFS kernel daemon                                                                                                                                                                                                        [ OK ]
 +
dvdk@vagrant:~$
 
</pre>
 
</pre>
  
The following message appears from the VM, when the rootfs is mounted:
+
==== Installing the root file system ====
 +
Using the [[DESK-MX6-L | DESK-MX6-L]] Virtual Machine it is required to extracting the rfs in the exported file system:
 +
 
 +
* download the <code>fsl-imx-wayland-glibc-x86_64-meta-toolchain-aarch64-desk-mx8mp-toolchain-5.4-zeus.sh</code> from the mirror server
 +
<pre class="workstation-terminal">
 +
dvdk@vagrant:~/desk-mx-l/rfs$ wget https://mirror.dave.eu/desk-mx-l/desk-mx8m-l-2.0.0/dave-image-devel-desk-mx8mp.tar.bz2
 +
dvdk@vagrant:~/desk-mx-l/rfs$
 +
</pre>
 +
extracting the archive (with '''root''' permissions!!) and create the symbolic link:
 
<pre>
 
<pre>
dvdk@vagrant:~$ cat /var/log/syslog | tail -n 2
+
mkdir /home/dvdk/desk-mx-l/rfs/desk-mx8m-l-2.0.0
Jul 26 11:52:45 vagrant tftpd[13249]: tftpd: trying to get file: /tftpboot/desk-mx8m-l/imx8mp-mito8mplus-cb1001.dtb
+
sudo tar jxpf dave-image-devel-desk-mx8mp.tar.bz2 -C /home/dvdk/desk-mx-l/rfs/desk-mx8m-l-2.0.0/
Jul 26 11:52:56 vagrant rpc.mountd[808]: authenticated mount request from 192.168.10.56:1004 for /home/dvdk/desk-mx-l/rfs/desk-mx8m-l-4.0.0/mx8mp (/home)
+
ln -s /home/dvdk/desk-mx-l/rfs/desk-mx8m-l-2.0.0 /home/dvdk/desk-mx-l/rfs/desk-mx8m-l
 
</pre>
 
</pre>
  
===Install Module===
+
Then, the rfs directory appears like this:
 +
<pre class="workstation-terminal">
 +
dvdk@vagrant:~/desk-mx-l/rfs$ ls -la
 +
total 725876
 +
drwxr-xr-x  4 dvdk dvdk      4096 Feb 15 12:37 .
 +
drwxr-xr-x  7 dvdk dvdk      4096 Feb 15 11:50 ..
 +
lrwxrwxrwx  1 root root        41 Apr  9  2021 desk-mx6-l -> /home/dvdk/desk-mx-l/rfs/desk-mx6-l-1.0.0
 +
drwxr-xr-x 19  541  502      4096 Jan 25  2021 desk-mx6-l-1.0.0
 +
lrwxrwxrwx  1 dvdk dvdk        46 Feb 15 12:37 desk-mx8m-l -> /home/dvdk/desk-mx-l/rfs/desk-mx8m-l-2.0.0
 +
drwxrwxr-x  8 dvdk dvdk      4096 Feb 15 12:36 desk-mx8m-l-2.0.0
 +
dvdk@vagrant:~/desk-mx-l/rfs$
 +
</pre>
  
Host side, transfer <code>~/desk-mx-l/rfs/desk-mx8m-l-4.0.0_modules.tar.gz</code> file on target.
+
=== Target configuration ===
  
Target side execute the follow command:
+
The IP address for server and target should be configured: an example (for a network subnet <code>192.168.0.x</code>)
  
 
<pre>
 
<pre>
root@desk-mx6ul-axelulite:~# tar xvzf desk-mx8m-l-4.0.0_modules.tar.gz -C /                                                                                                               
+
=> setenv serverip 192.168.0.125
 +
=> setenv ipaddr 192.168.0.89
 +
=> setenv gatewayip '192.168.0.254'
 +
=> setenv netmask '255.255.255.0'
 +
=> setenv netdev 'eth0'
 
</pre>
 
</pre>
  
To check that everything went well, run the following command:
+
* <code>serverip</code> is the IP address of the host machine running the tftp/nfs server
 +
* <code>ipaddr</code> is the IP address of the target
 +
* <code>gatewayip</code> is the gateway address of the target
 +
* <code>netmask</code> is the netmask address of the target
 +
* <code>netdev</code> is the name of ethernet interface of the target
  
<pre>
+
For using the DVDK Virtual Machine, a static IP address configuration has been selected, to the U-Boot variable <code>ip_dyn</code> has to be set to '''no''':
root@desk-mx8mp:~# ls -l /lib/modules/$(uname -r)
+
  => setenv ip_dyn no
total 1152
 
lrwxrwxrwx  1 541 502    64 Jun 29 18:58 build -> /home/jenkins/workspace/workspace/DESK-MX8M-L-4.x.x_Linux-kernel
 
drwxr-xr-x 10 541 502  4096 Jun 29 18:58 kernel
 
-rw-r--r--  1 541 502 203921 Jun 29 18:58 modules.alias
 
-rw-r--r--  1 541 502 208115 Jun 29 18:58 modules.alias.bin
 
-rw-r--r--  1 541 502  36037 Jun 29 18:58 modules.builtin
 
-rw-r--r--  1 541 502  70747 Jun 29 18:58 modules.builtin.alias.bin
 
-rw-r--r--  1 541 502  39328 Jun 29 18:58 modules.builtin.bin
 
-rw-r--r--  1 541 502 229962 Jun 29 18:58 modules.builtin.modinfo
 
-rw-r--r--  1 541 502  46720 Jun 29 18:58 modules.dep
 
-rw-r--r--  1 541 502  82895 Jun 29 18:58 modules.dep.bin
 
-rw-r--r--  1 541 502    146 Jun 29 18:58 modules.devname
 
-rw-r--r--  1 541 502  31093 Jun 29 18:58 modules.order
 
-rw-r--r--  1 541 502    366 Jun 29 18:58 modules.softdep
 
-rw-r--r--  1 541 502  81992 Jun 29 18:58 modules.symbols
 
-rw-r--r--  1 541 502 105342 Jun 29 18:58 modules.symbols.bin
 
lrwxrwxrwx 1 541 502    64 Jun 29 18:58 source -> /home/jenkins/workspace/workspace/DESK-MX8M-L-4.x.x_Linux-kernel
 
root@desk-mx8mp:~#
 
</pre>
 
  
=== Boot via NFS with default environment===
+
The ''kernel'' and ''device tree'' files have to be selected
 +
  setenv bootfile /tftpboot/desk-mx-l/Image
  
In DESK-MX8M-L-4.0.0, U-Boot default envirounment has already all command, and variables, to perform boot via NFS, without apply any manual change to U-Boot environment, apart from IP address. All binaries are in DESK-MX8M-L-4.0.0 Virtual Machine. The rootfs installed on DESK-MX8M-L-4.0.0 Virtual Machine have already module installed.  
+
ORCA has its dtb file <code>imx8mp-mito8mplus-cb1001.dtb</code>
 +
setenv fdt_file /tftpboot/desk-mx-l/imx8mp-mito8mplus-cb1001.dtb
  
<pre class="mw-collapsible mw-collapsed workstation-terminal">
+
while MITO 8M Mini has its own ''dtb'' file <code>imx8mm-mito8mmini.dtb</code>
 +
setenv fdt_file /tftpboot/desk-mx-l/imx8mm-mito8mmini.dtb
  
U-Boot SPL 2022.04-desk-mx8m-l-4.0.0 (Jul 26 2023 - 15:37:11 +0200)
+
finally, the ''root file system'' directory on the Virtual Machine should be configured to let the kernel find the '''INIT'''
WARNING: SOM ConfigID on block 0 is UNLOCKED
 
SOM ConfigID#: 00000005
 
DDRINFO: start DRAM init
 
DDRINFO: DRAM rate 4000MTS
 
DDRINFO:ddrphy calibration done
 
DDRINFO: ddrmix config done
 
Normal Boot
 
Trying to boot from BOOTROM
 
Boot Stage: Primary boot
 
image offset 0x8000, pagesize 0x200, ivt offset 0x0
 
WARNING: CB ConfigID on block 0 is UNLOCKED
 
Failed to find node!, err: -1!
 
Failed to find node!, err: -1!
 
NOTICE:  BL31: v2.6(release):desk-mx8m-l-4.0.0-0-gb55505767
 
NOTICE:  BL31: Built : 13:42:25, Jul 26 2023
 
  
 +
setenv nfsroot /home/dvdk/desk-mx-l/rfs/desk-mx8m-l
  
U-Boot 2022.04-desk-mx8m-l-4.0.0 (Jul 26 2023 - 15:37:11 +0200)
+
To run this configuration just issue the '''netboot''' command which firstly downloads the kernel and device tree using the tftp protocol
  
CPU:  Freescale i.MX8MP[8] rev1.1 1600 MHz (running at 1200 MHz)
+
<pre class="workstation-terminal">
CPU:  Industrial temperature grade (-40C to 105C) at 55C
+
  => print netboot
Reset cause: POR
+
netboot=echo Booting from net ...; run netargs;  if test ${ip_dyn} = yes; then setenv get_cmd dhcp; else setenv get_cmd tftp; fi; ${get_cmd} ${loadaddr} ${image}; if test ${boot_fit} = yes || test ${boot_fit} = try; then bootm ${loadaddr}; else if ${get_cmd} ${fdt_addr} ${fdt_file}; then booti ${loadaddr} - ${fdt_addr}; else echo WARN: Cannot load the DT; fi; fi;
Model: DAVE i.MX8MPlus on SBC ORCA Rev A
+
</pre>
DRAM: 6 GiB
 
Relocating to fff05000, new gd at fdbffda0, sp at fdbf5350
 
WARNING: CB ConfigID on block 0 is UNLOCKED
 
TCPC:  Vendor ID [0x1fc9], Product ID [0x5110], Addr [I2C2 0x50]
 
TCPC:  Vendor ID [0x0], Product ID [0x202], Addr [I2C2 0x3d]
 
Core:  175 devices, 20 uclasses, devicetree: fit
 
MMC:  FSL_SDHC: 1, FSL_SDHC: 2
 
Loading Environment from MMC... *** Warning - bad CRC, using default environment
 
  
Fail to setup video link
+
Here below the complete bootlog from ''nfs'':
In:   serial
 
Out:  serial
 
Err:  serial
 
  
BuildInfo:
+
<pre class="mw-collapsible mw-collapsed workstation-terminal">
  - ATF b555057
+
u-boot=> run netboot
 
+
Booting from net ...
WARNING: SOM ConfigID on block 0 is UNLOCKED
+
Using ethernet@30be0000 device
SOM ConfigID#: 00000005
+
TFTP from server 192.168.0.125; our IP address is 192.168.0.89
SOM UniqueID#: 1e261000:55aa2564:469660d3:d0c2b602
+
Filename 'desk-mx8m/linux/desk-mx8m-l-2.0.0_Image'.
CB ConfigID#: 00001001
 
CB UniqueID#: b7000035:c48de62d
 
WARNING: SOM ConfigID on block 0 is UNLOCKED
 
SOM: MX8MP-Mito8MPlus on SBC-ORCA HDMI + LVDStoHDMI
 
switch to partitions #0, OK
 
mmc1 is current device (SD)
 
flash target is MMC:1
 
Net:
 
Warning: ethernet@30bf0000 (eth1) using random MAC address - 2a:2d:b6:16:9b:da
 
 
 
Warning: ethernet@30be0000 (eth0) using random MAC address - 0a:34:b4:63:39:ef
 
eth0: ethernet@30be0000, eth1: ethernet@30bf0000 [PRIME]
 
Fastboot: Normal
 
Normal Boot
 
Hit any key to stop autoboot:  2  0
 
u-boot=> setenv serverip 192.168.0.90
 
u-boot=> setenv ipaddr 192.168.0.89
 
u-boot=> saveenv
 
Saving Environment to MMC... Writing to MMC(1)... OK
 
u-boot=> run net_nfs
 
Using ethernet@30bf0000 device
 
TFTP from server 192.168.0.90; our IP address is 192.168.0.89
 
Filename 'desk-mx8m-l/Image'.
 
 
Load address: 0x40480000
 
Load address: 0x40480000
Loading: *#################################################################
+
Loading: #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        #################################################################
#################################################################
+
        ####################################################
#################################################################
+
        2.4 MiB/s
#################################################################
 
#################################################################
 
#################################################################
 
#################################################################
 
#################################################################
 
#################################################################
 
#################################################################
 
#################################################################
 
##############
 
564.5 KiB/s
 
 
done
 
done
Bytes transferred = 31351296 (1de6200 hex)
+
Bytes transferred = 28219904 (1ae9a00 hex)
Using ethernet@30bf0000 device
+
Using ethernet@30be0000 device
TFTP from server 192.168.0.90; our IP address is 192.168.0.89
+
TFTP from server 192.168.0.125; our IP address is 192.168.0.89
Filename 'desk-mx8m-l/imx8mp-mito8mplus-cb1001.dtb'.
+
Filename 'desk-mx8m/linux/desk-mx8m-l-2.0.0_imx8mm-mito8mmini.dtb'.
 
Load address: 0x43000000
 
Load address: 0x43000000
Loading: *############
+
Loading: #########
852.5 KiB/s
+
        1.6 MiB/s
 
done
 
done
Bytes transferred = 61121 (eec1 hex)
+
Bytes transferred = 41062 (a066 hex)
FDT: override 'som_uniqueid' with '1e261000:55aa2564:469660d3:d0c2b602'
 
FDT: override 'cb_uniqueid' with 'b7000035:c48de62d'
 
Moving Image from 0x40480000 to 0x40600000, end=42480000
 
 
## Flattened Device Tree blob at 43000000
 
## Flattened Device Tree blob at 43000000
 
   Booting using the fdt blob at 0x43000000
 
   Booting using the fdt blob at 0x43000000
   Using Device Tree in place at 0000000043000000, end 0000000043011fff
+
   Using Device Tree in place at 0000000043000000, end 000000004300d065
  
 
Starting kernel ...
 
Starting kernel ...
  
 
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
 
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 5.15.71-desk-mx8m-l-4.0.0 (jenkins@focalbakery) (aarch64-poky-linux-gcc (GCC) 11.3.0, GNU ld (GNU Binutils) 2.38.20220708) #1 SMP PREEMPT Thu Jul 20 15:30:07 CEST 2023
+
[    0.000000] Linux version 5.4.70-desk-mx8m-l-2.0.0 (jenkins@xenialbakery) (gcc version 9.2.0 (GCC)) #1 SMP PREEMPT Wed Feb 8 15:40:22 CET 2023
[    0.000000] Machine model: i.MX8MPlus Mito8MPlus on SBC Orca - adapter LVDS HDMI
+
[    0.000000] Machine model: DAVE i.MX8MM MITO8MMINI board
 +
[    0.000000] efi: Getting EFI parameters from FDT:
 
[    0.000000] efi: UEFI not found.
 
[    0.000000] efi: UEFI not found.
[    0.000000] Reserved memory: created CMA memory pool at 0x00000000c4000000, size 960 MiB
+
[    0.000000] Reserved memory: created CMA memory pool at 0x0000000078000000, size 640 MiB
 
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
 
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x0000000094300000, size 1 MiB
 
[    0.000000] OF: reserved mem: initialized node vdev0buffer@94300000, compatible id shared-dma-pool
 
 
[    0.000000] NUMA: No NUMA configuration found
 
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000040000000-0x00000001bfffffff]
+
[    0.000000] NUMA: Faking a node at [mem 0x0000000040000000-0x00000000bfffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x1bf43a800-0x1bf43cfff]
+
[    0.000000] NUMA: NODE_DATA [mem 0xbfbd2500-0xbfbd3fff]
 
[    0.000000] Zone ranges:
 
[    0.000000] Zone ranges:
[    0.000000]  DMA      [mem 0x0000000040000000-0x00000000ffffffff]
+
[    0.000000]  DMA32    [mem 0x0000000040000000-0x00000000bfffffff]
[    0.000000]   DMA32    empty
+
[    0.000000]  Normal  empty
[    0.000000]  Normal  [mem 0x0000000100000000-0x00000001bfffffff]
 
 
[    0.000000] Movable zone start for each node
 
[    0.000000] Movable zone start for each node
 
[    0.000000] Early memory node ranges
 
[    0.000000] Early memory node ranges
[    0.000000]  node  0: [mem 0x0000000040000000-0x00000000557fffff]
+
[    0.000000]  node  0: [mem 0x0000000040000000-0x00000000b7ffffff]
[    0.000000]  node  0: [mem 0x0000000055800000-0x0000000055ffffff]
+
[    0.000000]  node  0: [mem 0x00000000b8400000-0x00000000bfffffff]
[    0.000000]  node  0: [mem 0x0000000056000000-0x00000000923fffff]
+
[    0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x00000000bfffffff]
[    0.000000]  node  0: [mem 0x0000000092400000-0x00000000a43fffff]
 
[    0.000000]  node  0: [mem 0x00000000a4400000-0x00000001bfffffff]
 
[    0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x00000001bfffffff]
 
 
[    0.000000] psci: probing for conduit method from DT.
 
[    0.000000] psci: probing for conduit method from DT.
 
[    0.000000] psci: PSCIv1.1 detected in firmware.
 
[    0.000000] psci: PSCIv1.1 detected in firmware.
 
[    0.000000] psci: Using standard PSCI v0.2 function IDs
 
[    0.000000] psci: Using standard PSCI v0.2 function IDs
 
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
 
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
+
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 20 pages/cpu s41368 r8192 d32360 u81920
+
[    0.000000] percpu: Embedded 24 pages/cpu s58904 r8192 d31208 u98304
 
[    0.000000] Detected VIPT I-cache on CPU0
 
[    0.000000] Detected VIPT I-cache on CPU0
 +
[    0.000000] CPU features: detected: ARM erratum 845719
 
[    0.000000] CPU features: detected: GIC system register CPU interface
 
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: ARM erratum 845719
+
[    0.000000] Speculative Store Bypass Disable mitigation not required
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1548288
+
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 515072
[    0.000000] Policy zone: Normal
+
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: root=/dev/nfs rw nfsroot=192.168.0.90:/home/dvdk/desk-mx-l/rfs/desk-mx8m-l-mx8mp/,v3,tcp ip=192.168.0.89:192.168.0.90:192.168.0.254:255.255.255.0:desk-mx:eth0:off panic=1 console=ttymxc1,115200,115200 mtdparts=gpmi-nand:2M(nand-SPL),6M(nand-uboot),1M(nand-env1),1M(nand-env2),1M(nand-fdt),1M(nand-spare),8M(nand-kernel),4M(nand-splash),-(nand-ubi);
+
[    0.000000] Kernel command line: console=ttymxc1,115200 root=/dev/nfs ip=192.168.0.89 nfsroot=192.168.0.125:/home/dvdk/desk-mx-l/rfs/desk-mx8m-l,v3,tcp
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
+
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
+
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
 
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
 
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000c0000000-0x00000000c4000000] (64MB)
+
[    0.000000] Memory: 1368548K/2093056K available (16764K kernel code, 1254K rwdata, 6620K rodata, 2880K init, 1015K bss, 69148K reserved, 655360K cma-reserved)
[    0.000000] Memory: 4784748K/6291456K available (18688K kernel code, 1560K rwdata, 7244K rodata, 3008K init, 543K bss, 523668K reserved, 983040K cma-reserved)
 
 
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
 
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
 
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
 
[    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] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
+
[    0.000000] Tasks RCU enabled.
[    0.000000] Trampoline variant of Tasks RCU enabled.
 
 
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
 
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
 
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
 
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
 
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
 
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
 
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
 
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 160 SPIs implemented
+
[    0.000000] GICv3: 128 SPIs implemented
 
[    0.000000] GICv3: 0 Extended SPIs implemented
 
[    0.000000] GICv3: 0 Extended SPIs implemented
 
[    0.000000] GICv3: Distributor has no Range Selector support
 
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] Root IRQ handler: gic_handle_irq
 
 
[    0.000000] GICv3: 16 PPIs implemented
 
[    0.000000] GICv3: 16 PPIs implemented
 +
[    0.000000] GICv3: no VLPI support, no direct LPI support
 
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000038880000
 
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000038880000
 
[    0.000000] ITS: No ITS available, not enabling LPIs
 
[    0.000000] ITS: No ITS available, not enabling LPIs
 +
[    0.000000] random: get_random_bytes called from start_kernel+0x2b8/0x44c with crng_init=0
 
[    0.000000] arch_timer: cp15 timer(s) running at 8.00MHz (phys).
 
[    0.000000] arch_timer: cp15 timer(s) running at 8.00MHz (phys).
 
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1d854df40, max_idle_ns: 440795202120 ns
 
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1d854df40, max_idle_ns: 440795202120 ns
[    0.000000] sched_clock: 56 bits at 8MHz, resolution 125ns, wraps every 2199023255500ns
+
[    0.000003] sched_clock: 56 bits at 8MHz, resolution 125ns, wraps every 2199023255500ns
[    0.000454] Console: colour dummy device 80x25
+
[    0.000369] Console: colour dummy device 80x25
[    0.000521] Calibrating delay loop (skipped), value calculated using timer frequency.. 16.00 BogoMIPS (lpj=32000)
+
[    0.000432] Calibrating delay loop (skipped), value calculated using timer frequency.. 16.00 BogoMIPS (lpj=32000)
[    0.000535] pid_max: default: 32768 minimum: 301
+
[    0.000441] pid_max: default: 32768 minimum: 301
[    0.000591] LSM: Security Framework initializing
+
[    0.000514] LSM: Security Framework initializing
[    0.000691] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
+
[    0.000569] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.000719] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
+
[    0.000580] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.002082] rcu: Hierarchical SRCU implementation.
+
[    0.001718] ASID allocator initialised with 32768 entries
[    0.003327] EFI services will not be available.
+
[    0.001785] rcu: Hierarchical SRCU implementation.
[    0.003526] smp: Bringing up secondary CPUs ...
+
[    0.002653] EFI services will not be available.
[    0.003937] Detected VIPT I-cache on CPU1
+
[    0.002808] smp: Bringing up secondary CPUs ...
[    0.003964] GICv3: CPU1: found redistributor 1 region 0:0x00000000388a0000
+
[    0.003162] Detected VIPT I-cache on CPU1
[    0.003998] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
+
[    0.003186] GICv3: CPU1: found redistributor 1 region 0:0x00000000388a0000
[    0.004465] Detected VIPT I-cache on CPU2
+
[    0.003217] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.004484] GICv3: CPU2: found redistributor 2 region 0:0x00000000388c0000
+
[    0.003602] Detected VIPT I-cache on CPU2
[    0.004504] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
+
[    0.003618] GICv3: CPU2: found redistributor 2 region 0:0x00000000388c0000
[    0.004933] Detected VIPT I-cache on CPU3
+
[    0.003635] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.004952] GICv3: CPU3: found redistributor 3 region 0:0x00000000388e0000
+
[    0.004041] Detected VIPT I-cache on CPU3
[    0.004969] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
+
[    0.004055] GICv3: CPU3: found redistributor 3 region 0:0x00000000388e0000
[    0.005027] smp: Brought up 1 node, 4 CPUs
+
[    0.004073] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.005050] SMP: Total of 4 processors activated.
+
[    0.004125] smp: Brought up 1 node, 4 CPUs
[    0.005056] CPU features: detected: 32-bit EL0 Support
+
[    0.004134] SMP: Total of 4 processors activated.
[    0.005060] CPU features: detected: 32-bit EL1 Support
+
[    0.004139] CPU features: detected: 32-bit EL0 Support
[    0.005068] CPU features: detected: CRC32 instructions
+
[    0.004145] CPU features: detected: CRC32 instructions
[    0.012521] CPU: All CPU(s) started at EL2
+
[    0.010710] CPU: All CPU(s) started at EL2
[    0.012556] alternatives: patching kernel code
+
[    0.010730] alternatives: patching kernel code
[    0.014254] devtmpfs: initialized
+
[    0.012157] devtmpfs: initialized
[    0.022604] KASLR disabled due to lack of seed
+
[    0.018166] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.022750] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
+
[    0.018184] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.022767] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
+
[    0.034322] pinctrl core: initialized pinctrl subsystem
[    0.049483] pinctrl core: initialized pinctrl subsystem
+
[    0.035023] DMI not present or invalid.
[    0.049966] DMI not present or invalid.
+
[    0.035279] NET: Registered protocol family 16
[    0.050544] NET: Registered PF_NETLINK/PF_ROUTE protocol family
+
[    0.042061] DMA: preallocated 256 KiB pool for atomic allocations
[    0.055624] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
+
[    0.042091] audit: initializing netlink subsys (disabled)
[    0.056097] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
+
[    0.042358] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1
[    0.056664] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
+
[    0.043200] cpuidle: using governor menu
[    0.056757] audit: initializing netlink subsys (disabled)
+
[    0.043636] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.056953] audit: type=2000 audit(0.056:1): state=initialized audit_enabled=0 res=1
+
[    0.044426] Serial: AMBA PL011 UART driver
[    0.057522] thermal_sys: Registered thermal governor 'step_wise'
+
[    0.044489] imx mu driver is registered.
[    0.057528] thermal_sys: Registered thermal governor 'power_allocator'
+
[    0.044510] imx rpmsg driver is registered.
[    0.057802] cpuidle: using governor menu
+
[    0.049801] imx8mm-pinctrl 30330000.pinctrl: initialized IMX pinctrl driver
[    0.058021] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
+
[    0.072571] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.058104] ASID allocator initialised with 65536 entries
+
[    0.072582] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.059221] Serial: AMBA PL011 UART driver
+
[    0.072590] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.059280] imx mu driver is registered.
+
[    0.072597] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.059302] imx rpmsg driver is registered.
+
[    0.073460] cryptd: max_cpu_qlen set to 1000
[    0.070357] imx8mp-pinctrl 30330000.pinctrl: initialized IMX pinctrl driver
+
[    0.076520] ACPI: Interpreter disabled.
[    0.079812] platform 32c00000.bus:ldb@32ec005c: Fixing up cyclic dependency with 32e90000.lcd-controller
+
[    0.077681] iommu: Default domain type: Translated
[    0.086431] platform 32fd8000.hdmi: Fixing up cyclic dependency with 32fc6000.lcd-controller
+
[    0.077826] vgaarb: loaded
[    0.108732] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
+
[    0.078117] SCSI subsystem initialized
[    0.108748] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
+
[    0.078468] usbcore: registered new interface driver usbfs
[    0.108756] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
+
[    0.078502] usbcore: registered new interface driver hub
[    0.108764] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
+
[    0.078552] usbcore: registered new device driver usb
[    0.109910] cryptd: max_cpu_qlen set to 1000
+
[    0.079689] mc: Linux media interface: v0.10
[    0.112959] ACPI: Interpreter disabled.
+
[    0.079718] videodev: Linux video capture interface: v2.00
[    0.113727] iommu: Default domain type: Translated
+
[    0.079808] pps_core: LinuxPPS API ver. 1 registered
[    0.113735] iommu: DMA domain TLB invalidation policy: strict mode
+
[    0.079814] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.113874] vgaarb: loaded
+
[    0.079832] PTP clock support registered
[    0.114137] SCSI subsystem initialized
+
[    0.079972] EDAC MC: Ver: 3.0.0
[    0.114438] usbcore: registered new interface driver usbfs
+
[    0.080765] No BMan portals available!
[    0.114476] usbcore: registered new interface driver hub
+
[    0.080982] QMan: Allocated lookup table at (____ptrval____), entry count 65537
[    0.114507] usbcore: registered new device driver usb
+
[    0.081228] No QMan portals available!
[    0.115533] mc: Linux media interface: v0.10
+
[    0.081592] No USDPAA memory, no 'fsl,usdpaa-mem' in device-tree
[    0.115556] videodev: Linux video capture interface: v2.00
+
[    0.082008] FPGA manager framework
[    0.115633] pps_core: LinuxPPS API ver. 1 registered
+
[    0.082097] Advanced Linux Sound Architecture Driver Initialized.
[    0.115640] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
+
[    0.082489] Bluetooth: Core ver 2.22
[    0.115656] PTP clock support registered
+
[    0.082517] NET: Registered protocol family 31
[    0.115827] EDAC MC: Ver: 3.0.0
+
[    0.082522] Bluetooth: HCI device and connection manager initialized
[    0.116986] FPGA manager framework
+
[    0.082531] Bluetooth: HCI socket layer initialized
[    0.117074] Advanced Linux Sound Architecture Driver Initialized.
+
[    0.082537] Bluetooth: L2CAP socket layer initialized
[    0.117586] Bluetooth: Core ver 2.22
+
[    0.082549] Bluetooth: SCO socket layer initialized
[    0.117612] NET: Registered PF_BLUETOOTH protocol family
+
[    0.083225] clocksource: Switched to clocksource arch_sys_counter
[    0.117618] Bluetooth: HCI device and connection manager initialized
+
[    0.083390] VFS: Disk quotas dquot_6.6.0
[    0.117629] Bluetooth: HCI socket layer initialized
+
[    0.083435] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.117639] Bluetooth: L2CAP socket layer initialized
+
[    0.083589] pnp: PnP ACPI: disabled
[    0.117653] Bluetooth: SCO socket layer initialized
+
[    0.089056] thermal_sys: Registered thermal governor 'step_wise'
[    0.118489] clocksource: Switched to clocksource arch_sys_counter
+
[    0.089060] thermal_sys: Registered thermal governor 'power_allocator'
[    0.118620] VFS: Disk quotas dquot_6.6.0
+
[    0.089389] NET: Registered protocol family 2
[    0.118666] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
+
[    0.089704] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    0.118804] pnp: PnP ACPI: disabled
+
[    0.089734] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.124736] NET: Registered PF_INET protocol family
+
[    0.089842] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.124983] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
+
[    0.090066] TCP: Hash tables configured (established 16384 bind 16384)
[    0.128074] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
+
[    0.090144] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.128182] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
+
[    0.090185] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.128198] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
+
[    0.090332] NET: Registered protocol family 1
[    0.128607] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
+
[    0.090655] RPC: Registered named UNIX socket transport module.
[    0.129476] TCP: Hash tables configured (established 65536 bind 65536)
+
[    0.090661] RPC: Registered udp transport module.
[    0.129583] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
+
[    0.090667] RPC: Registered tcp transport module.
[    0.129739] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
+
[    0.090670] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.130004] NET: Registered PF_UNIX/PF_LOCAL protocol family
+
[    0.091034] PCI: CLS 0 bytes, default 64
[    0.130416] RPC: Registered named UNIX socket transport module.
+
[    0.091727] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    0.130423] RPC: Registered udp transport module.
+
[    0.092094] kvm [1]: IPA Size Limit: 40bits
[    0.130427] RPC: Registered tcp transport module.
+
[    0.092692] kvm [1]: GICv3: no GICV resource entry
[    0.130437] RPC: Registered tcp NFSv4.1 backchannel transport module.
+
[    0.092697] kvm [1]: disabling GICv2 emulation
[    0.131151] PCI: CLS 0 bytes, default 64
+
[    0.092714] kvm [1]: GIC system register CPU interface enabled
[    0.131785] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
+
[    0.092775] kvm [1]: vgic interrupt IRQ1
[    0.132574] kvm [1]: IPA Size Limit: 40 bits
+
[    0.092866] kvm [1]: Hyp mode initialized successfully
[    0.134207] kvm [1]: GICv3: no GICV resource entry
+
[    0.095844] Initialise system trusted keyrings
[    0.134214] kvm [1]: disabling GICv2 emulation
+
[    0.095958] workingset: timestamp_bits=44 max_order=19 bucket_order=0
[    0.134229] kvm [1]: GIC system register CPU interface enabled
+
[    0.102081] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.134306] kvm [1]: vgic interrupt IRQ9
+
[    0.102732] NFS: Registering the id_resolver key type
[    0.134406] kvm [1]: Hyp mode initialized successfully
+
[    0.102756] Key type id_resolver registered
[    0.137660] Initialise system trusted keyrings
+
[    0.102760] Key type id_legacy registered
[    0.137802] workingset: timestamp_bits=42 max_order=21 bucket_order=0
+
[    0.102770] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.143797] squashfs: version 4.0 (2009/01/31) Phillip Lougher
+
[    0.102788] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    0.144358] NFS: Registering the id_resolver key type
+
[    0.103152] 9p: Installing v9fs 9p2000 file system support
[    0.144392] Key type id_resolver registered
+
[    0.116490] Key type asymmetric registered
[    0.144400] Key type id_legacy registered
+
[    0.116497] Asymmetric key parser 'x509' registered
[    0.144474] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
+
[    0.116525] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    0.144481] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
+
[    0.116531] io scheduler mq-deadline registered
[    0.144500] jffs2: version 2.2. (NAND) 2001-2006 Red Hat, Inc.
+
[    0.116536] io scheduler kyber registered
[    0.144828] 9p: Installing v9fs 9p2000 file system support
+
[    0.121732] EINJ: ACPI disabled.
[    0.181240] Key type asymmetric registered
+
[    0.130488] imx-sdma 302c0000.dma-controller: Direct firmware load for imx/sdma/sdma-imx7d.bin failed with error -2
[    0.181250] Asymmetric key parser 'x509' registered
+
[    0.130503] imx-sdma 302c0000.dma-controller: Falling back to sysfs fallback for: imx/sdma/sdma-imx7d.bin
[    0.181305] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
+
[    0.138599] mxs-dma 33000000.dma-controller: initialized
[    0.181313] io scheduler mq-deadline registered
+
[    0.139836] Bus freq driver module loaded
[    0.181321] io scheduler kyber registered
+
[    0.145167] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.188390] EINJ: ACPI disabled.
+
[    0.147313] 30860000.serial: ttymxc0 at MMIO 0x30860000 (irq = 32, base_baud = 5000000) is a IMX
[    0.198982] imx-sdma 30bd0000.dma-controller: Direct firmware load for imx/sdma/sdma-imx7d.bin failed with error -2
+
[    0.147641] imx8mm-pinctrl 30330000.pinctrl: pin MX8MM_IOMUXC_UART3_RXD already requested by 30860000.serial; cannot claim for 30880000.serial
[    0.199004] imx-sdma 30bd0000.dma-controller: Falling back to sysfs fallback for: imx/sdma/sdma-imx7d.bin
+
[    0.147650] imx8mm-pinctrl 30330000.pinctrl: pin-145 (30880000.serial) status -22
[    0.200743] mxs-dma 33000000.dma-apbh: initialized
+
[    0.147657] imx8mm-pinctrl 30330000.pinctrl: could not request pin 145 (MX8MM_IOMUXC_UART3_RXD) from group uart3grp  on device 30330000.pinctrl
[    0.202398] SoC: i.MX8MP revision 1.1
+
[    0.147666] imx-uart 30880000.serial: Error applying setting, reverse things back
[    0.203027] Bus freq driver module loaded
+
[    0.147679] imx-uart: probe of 30880000.serial failed with error -22
[    0.209445] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
+
[    0.147856] 30890000.serial: ttymxc1 at MMIO 0x30890000 (irq = 34, base_baud = 1500000) is a IMX
[    0.211771] 30860000.serial: ttymxc0 at MMIO 0x30860000 (irq = 31, base_baud = 5000000) is a IMX
+
[    1.178433] printk: console [ttymxc1] enabled
[    0.212244] 30880000.serial: ttymxc2 at MMIO 0x30880000 (irq = 32, base_baud = 5000000) is a IMX
+
[    1.188043] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    0.212660] 30890000.serial: ttymxc1 at MMIO 0x30890000 (irq = 33, base_baud = 1500000) is a IMX
+
[    1.194676] [drm] No driver support for vblank timestamp query.
[    1.327412] printk: console [ttymxc1] enabled
+
[    1.200671] imx-drm soc@0:bus@32c00000:display-subsystem: bound imx-lcdif-crtc.0 (ops lcdif_crtc_ops)
[    1.346826] loop: module loaded
+
[    1.210086] [drm] Initialized imx-drm 1.0.0 20120507 for soc@0:bus@32c00000:display-subsystem on minor 0
[    1.351400] megasas: 07.717.02.00-rc1
+
[    1.229513] loop: module loaded
[    1.356718] imx ahci driver is registered.
+
[    1.234796] imx ahci driver is registered.
[    1.362513] SPI driver spidev has no spi_device_id for spidev
+
[    2.271254] gpmi-nand 33002000.nand-controller: DMA timeout, last DMA
[    1.368275] SPI driver spidev has no spi_device_id for dave,sbcx-exp
+
[    2.277711] gpmi-nand 33002000.nand-controller: Show GPMI registers :
[    1.378759] tun: Universal TUN/TAP device driver, 1.6
+
[    2.284165] gpmi-nand 33002000.nand-controller: offset 0x000 : 0x03800000
[    1.383981] CAN device driver interface
+
[    2.290962] gpmi-nand 33002000.nand-controller: offset 0x010 : 0x00000000
[    1.389227] thunder_xcv, ver 1.0
+
[    2.297758] gpmi-nand 33002000.nand-controller: offset 0x020 : 0x00000000
[    1.392495] thunder_bgx, ver 1.0
+
[    2.304554] gpmi-nand 33002000.nand-controller: offset 0x030 : 0x00000000
[    1.395768] nicpf, ver 1.0
+
[    2.311350] gpmi-nand 33002000.nand-controller: offset 0x040 : 0x00000000
[    1.400895] hclge is initializing
+
[    2.318145] gpmi-nand 33002000.nand-controller: offset 0x050 : 0x00000000
[    1.404236] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
+
[    2.324941] gpmi-nand 33002000.nand-controller: offset 0x060 : 0x010c000c
[    1.411468] hns3: Copyright (c) 2017 Huawei Corporation.
+
[    2.331738] gpmi-nand 33002000.nand-controller: offset 0x070 : 0x00020101
[    1.416835] e1000: Intel(R) PRO/1000 Network Driver
+
[    2.338532] gpmi-nand 33002000.nand-controller: offset 0x080 : 0x50000000
[    1.421724] e1000: Copyright (c) 1999-2006 Intel Corporation.
+
[    2.345328] gpmi-nand 33002000.nand-controller: offset 0x090 : 0x23023336
[    1.427512] e1000e: Intel(R) PRO/1000 Network Driver
+
[    2.352123] gpmi-nand 33002000.nand-controller: offset 0x0a0 : 0x000000ff
[    1.432484] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
+
[    2.358919] gpmi-nand 33002000.nand-controller: offset 0x0b0 : 0xfe000005
[    1.438442] igb: Intel(R) Gigabit Ethernet Network Driver
+
[    2.365715] gpmi-nand 33002000.nand-controller: offset 0x0c0 : 0x00000100
[    1.443846] igb: Copyright (c) 2007-2014 Intel Corporation.
+
[    2.372510] gpmi-nand 33002000.nand-controller: offset 0x0d0 : 0x05020000
[    1.449452] igbvf: Intel(R) Gigabit Virtual Function Network Driver
+
[    2.379305] gpmi-nand 33002000.nand-controller: Show BCH registers :
[    1.455724] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
+
[    2.385666] gpmi-nand 33002000.nand-controller: offset 0x000 : 0x00000000
[    1.461841] sky2: driver version 1.30
+
[    2.392460] gpmi-nand 33002000.nand-controller: offset 0x010 : 0x00000010
[    1.466179] usbcore: registered new interface driver r8152
+
[    2.399256] gpmi-nand 33002000.nand-controller: offset 0x020 : 0x00000000
[    1.471917] VFIO - User Level meta-driver version: 0.3
+
[    2.406054] gpmi-nand 33002000.nand-controller: offset 0x030 : 0x00000000
[    1.482772] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
+
[    2.412848] gpmi-nand 33002000.nand-controller: offset 0x040 : 0x00000000
[    1.489372] ehci-pci: EHCI PCI platform driver
+
[    2.419645] gpmi-nand 33002000.nand-controller: offset 0x050 : 0x00000000
[    1.493864] ehci-platform: EHCI generic platform driver
+
[    2.426441] gpmi-nand 33002000.nand-controller: offset 0x060 : 0x00000000
[    1.499347] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
+
[    2.433238] gpmi-nand 33002000.nand-controller: offset 0x070 : 0xe4e4e4e4
[    1.505569] ohci-pci: OHCI PCI platform driver
+
[    2.440034] gpmi-nand 33002000.nand-controller: offset 0x080 : 0x070a4080
[    1.510053] ohci-platform: OHCI generic platform driver
+
[    2.446830] gpmi-nand 33002000.nand-controller: offset 0x090 : 0x10da4080
[    1.516168] usbcore: registered new interface driver uas
+
[    2.453626] gpmi-nand 33002000.nand-controller: offset 0x0a0 : 0x070a4080
[    1.521533] usbcore: registered new interface driver usb-storage
+
[    2.460421] gpmi-nand 33002000.nand-controller: offset 0x0b0 : 0x10da4080
[    1.527610] usbcore: registered new interface driver usbserial_generic
+
[    2.467224] gpmi-nand 33002000.nand-controller: offset 0x0c0 : 0x070a4080
[    1.534161] usbserial: USB Serial support registered for generic
+
[    2.474019] gpmi-nand 33002000.nand-controller: offset 0x0d0 : 0x10da4080
[    1.540198] usbcore: registered new interface driver ftdi_sio
+
[    2.480815] gpmi-nand 33002000.nand-controller: offset 0x0e0 : 0x070a4080
[    1.545963] usbserial: USB Serial support registered for FTDI USB Serial Device
+
[    2.487611] gpmi-nand 33002000.nand-controller: offset 0x0f0 : 0x10da4080
[    1.553304] usbcore: registered new interface driver usb_serial_simple
+
[    2.494406] gpmi-nand 33002000.nand-controller: offset 0x100 : 0x00000000
[    1.559854] usbserial: USB Serial support registered for carelink
+
[    2.501202] gpmi-nand 33002000.nand-controller: offset 0x110 : 0x00000000
[    1.565968] usbserial: USB Serial support registered for zio
+
[    2.507998] gpmi-nand 33002000.nand-controller: offset 0x120 : 0x00000000
[    1.571648] usbserial: USB Serial support registered for funsoft
+
[    2.514794] gpmi-nand 33002000.nand-controller: offset 0x130 : 0x00000000
[    1.577676] usbserial: USB Serial support registered for flashloader
+
[    2.521590] gpmi-nand 33002000.nand-controller: offset 0x140 : 0x00000000
[    1.584050] usbserial: USB Serial support registered for google
+
[    2.528389] gpmi-nand 33002000.nand-controller: offset 0x150 : 0x20484342
[    1.589990] usbserial: USB Serial support registered for libtransistor
+
[    2.535185] gpmi-nand 33002000.nand-controller: offset 0x160 : 0x01010000
[    1.596538] usbserial: USB Serial support registered for vivopay
+
[    2.541981] gpmi-nand 33002000.nand-controller: offset 0x170 : 0x00000000
[    1.602572] usbserial: USB Serial support registered for moto_modem
+
[    2.548781] gpmi-nand 33002000.nand-controller: BCH Geometry :
[    1.608865] usbserial: USB Serial support registered for motorola_tetra
+
[    2.548781] GF length              : 0
[    1.615509] usbserial: USB Serial support registered for nokia
+
[    2.548781] ECC Strength          : 0
[    1.621359] usbserial: USB Serial support registered for novatel_gps
+
[    2.548781] Page Size in Bytes    : 0
[    1.627734] usbserial: USB Serial support registered for hp4x
+
[    2.548781] Metadata Size in Bytes : 0
[    1.633501] usbserial: USB Serial support registered for suunto
+
[    2.548781] ECC Chunk0 Size in Bytes: 0
[    1.639444] usbserial: USB Serial support registered for siemens_mpi
+
[    2.548781] ECC Chunkn Size in Bytes: 0
[    1.645830] usbcore: registered new interface driver usb_ehset_test
+
[    2.548781] ECC Chunk Count        : 0
[    1.656456] snvs_rtc 30370000.snvs:snvs-rtc-lp: registered as rtc0
+
[    2.548781] Payload Size in Bytes  : 1024
[    1.662676] snvs_rtc 30370000.snvs:snvs-rtc-lp: setting system clock to 1970-01-01T00:34:45 UTC (2085)
+
[    2.548781] Auxiliary Size in Bytes: 128
[    1.672145] i2c_dev: i2c /dev entries driver
+
[    2.548781] Auxiliary Status Offset: 0
[    1.678407] Driver for 1-wire Dallas network protocol.
+
[    2.548781] Block Mark Byte Offset : 0
[    1.686732] Bluetooth: HCI UART driver ver 2.3
+
[    2.548781] Block Mark Bit Offset  : 0
[    1.691199] Bluetooth: HCI UART protocol H4 registered
+
[    2.600025] nand: No NAND device found
[    1.696345] Bluetooth: HCI UART protocol BCSP registered
+
[    2.603850] gpmi-nand: probe of 33002000.nand-controller failed with error -110
[    1.701679] Bluetooth: HCI UART protocol LL registered
+
[    2.613234] libphy: Fixed MDIO Bus: probed
[    1.706831] Bluetooth: HCI UART protocol ATH3K registered
+
[    2.618149] tun: Universal TUN/TAP device driver, 1.6
[    1.712252] Bluetooth: HCI UART protocol Three-wire (H5) registered
+
[    2.623384] CAN device driver interface
[    1.718624] Bluetooth: HCI UART protocol Broadcom registered
+
[    2.628304] thunder_xcv, ver 1.0
[    1.724314] Bluetooth: HCI UART protocol QCA registered
+
[    2.631573] thunder_bgx, ver 1.0
[    1.729779] EDAC MC: ECC not enabled
+
[    2.634830] nicpf, ver 1.0
[    1.734839] sdhci: Secure Digital Host Controller Interface driver
+
[    2.638373] pps pps0: new PPS source ptp0
[    1.741047] sdhci: Copyright(c) Pierre Ossman
+
[    2.647608] Freescale FM module, FMD API version 21.1.0
[    1.746195] Synopsys Designware Multimedia Card Interface Driver
+
[    2.653094] Freescale FM Ports module
[    1.752979] sdhci-pltfm: SDHCI platform and OF driver helper
+
[    2.656763] fsl_mac: fsl_mac: FSL FMan MAC API based driver
[    1.760958] ledtrig-cpu: registered to indicate activity on CPUs
+
[   2.662490] fsl_dpa: FSL DPAA Ethernet driver
[    1.767952] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
+
[    2.666990] fsl_advanced: FSL DPAA Advanced drivers:
[    1.774887] usbcore: registered new interface driver usbhid
+
[    2.671966] fsl_proxy: FSL DPAA Proxy initialization driver
[    1.780468] usbhid: USB HID core driver
+
[    2.677645] fsl_oh: FSL FMan Offline Parsing port driver
[    1.789474] cs_system_cfg: CoreSight Configuration manager initialised
+
[    2.683853] hclge is initializing
[    1.792122] mmc2: SDHCI controller on 30b60000.mmc [30b60000.mmc] using ADMA
+
[    2.687171] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[    1.800177] Galcore version 6.4.3.p4.398061
+
[    2.694404] hns3: Copyright (c) 2017 Huawei Corporation.
[    1.912364] mmc2: new HS400 Enhanced strobe MMC card at address 0001
+
[    2.699762] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    1.919255] mmcblk2: mmc2:0001 DG4008 7.28 GiB
+
[    2.706816] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    1.925128] [drm] Initialized vivante 1.0.0 20170808 for 40000000.mix_gpu_ml on minor 0
+
[    2.712599] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.925763] mmcblk2: p1 p2
+
[    2.718435] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.934805] hantrodec 0 : module inserted. Major = 510
+
[    2.724393] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.6.0-k
[    1.937342] mmcblk2boot0: mmc2:0001 DG4008 4.00 MiB
+
[    2.731361] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.941611] hantrodec 1 : module inserted. Major = 510
+
[    2.736972] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    1.947623] mmcblk2boot1: mmc2:0001 DG4008 4.00 MiB
+
[    2.744807] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.952941] hantroenc: HW at base <0000000038320000> with ID <0x80006200>
+
[    2.750880] sky2: driver version 1.30
[    1.958270] mmcblk2rpmb: mmc2:0001 DG4008 4.00 MiB, chardev (234:0)
+
[    2.755481] VFIO - User Level meta-driver version: 0.3
[    1.963133] hx280enc: module inserted. Major <509>
+
[    2.762493] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.977674] NET: Registered PF_LLC protocol family
+
[    2.769042] ehci-pci: EHCI PCI platform driver
[    1.982986] NET: Registered PF_INET6 protocol family
+
[    2.773525] ehci-platform: EHCI generic platform driver
[    1.989602] Segment Routing with IPv6
+
[    2.778939] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.993312] In-situ OAM (IOAM) with IPv6
+
[    2.785176] ohci-pci: OHCI PCI platform driver
[    1.997296] NET: Registered PF_PACKET protocol family
+
[    2.789666] ohci-platform: OHCI generic platform driver
[    2.002398] can: controller area network core
+
[    2.795594] usbcore: registered new interface driver uas
[    2.006802] NET: Registered PF_CAN protocol family
+
[    2.800959] usbcore: registered new interface driver usb-storage
[    2.011602] can: raw protocol
+
[    2.807038] usbcore: registered new interface driver usbserial_generic
[    2.014582] can: broadcast manager protocol
+
[    2.813588] usbserial: USB Serial support registered for generic
[    2.018778] can: netlink gateway - max_hops=1
+
[    2.819624] usbcore: registered new interface driver ftdi_sio
[    2.024215] Bluetooth: RFCOMM TTY layer initialized
+
[    2.825392] usbserial: USB Serial support registered for FTDI USB Serial Device
[    2.029117] Bluetooth: RFCOMM socket layer initialized
+
[    2.832737] usbcore: registered new interface driver usb_serial_simple
[    2.034278] Bluetooth: RFCOMM ver 1.11
+
[    2.839285] usbserial: USB Serial support registered for carelink
[    2.038041] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
+
[    2.845398] usbserial: USB Serial support registered for zio
[    2.043366] Bluetooth: BNEP filters: protocol multicast
+
[    2.851078] usbserial: USB Serial support registered for funsoft
[    2.048602] Bluetooth: BNEP socket layer initialized
+
[    2.857106] usbserial: USB Serial support registered for flashloader
[    2.053574] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
+
[    2.863482] usbserial: USB Serial support registered for google
[    2.059503] Bluetooth: HIDP socket layer initialized
+
[    2.869421] usbserial: USB Serial support registered for libtransistor
[    2.065504] 8021q: 802.1Q VLAN Support v1.8
+
[    2.875968] usbserial: USB Serial support registered for vivopay
[    2.069717] lib80211: common routines for IEEE802.11 drivers
+
[    2.881995] usbserial: USB Serial support registered for moto_modem
[    2.075826] 9pnet: Installing 9P2000 support
+
[    2.888285] usbserial: USB Serial support registered for motorola_tetra
[    2.080135] tsn generic netlink module v1 init...
+
[    2.894925] usbserial: USB Serial support registered for novatel_gps
[    2.084930] Key type dns_resolver registered
+
[    2.901300] usbserial: USB Serial support registered for hp4x
[    2.090095] Loading compiled-in X.509 certificates
+
[    2.907071] usbserial: USB Serial support registered for suunto
[    2.119163] regulator-se050-en GPIO handle specifies active low - ignored
+
[    2.913013] usbserial: USB Serial support registered for siemens_mpi
[    2.190134] nxp-pca9450 0-0025: pca9450bc probed.
+
[    2.919404] usbcore: registered new interface driver usb_ehset_test
[    2.194955] i2c i2c-0: IMX I2C adapter registered
+
[    2.927405] imx_usb 32e50000.usb: No over current polarity defined
[    2.201041] i2c 1-003c: Fixing up cyclic dependency with 32e40000.csi
+
[    2.936287] snvs_rtc 30370000.snvs:snvs-rtc-lp: registered as rtc0
[    2.207787] ov5640 1-003c: supply DOVDD not found, using dummy regulator
+
[    2.942577] i2c /dev entries driver
[    2.214603] ov5640 1-003c: supply AVDD not found, using dummy regulator
+
[    2.946741] mx6s-csi 32e20000.csi1_bridge: initialising
[    2.221263] ov5640 1-003c: supply DVDD not found, using dummy regulator
+
[    2.952504] mxc_mipi-csi 32e30000.mipi_csi: 32e30000.mipi_csi supply mipi-phy not found, using dummy regulator
[    2.236233] i2c i2c-1: IMX I2C adapter registered
+
[    2.962694] mxc_mipi-csi 32e30000.mipi_csi: mipi csi v4l2 device registered
[    2.242353] i2c 2-003c: Fixing up cyclic dependency with 32e50000.csi
+
[    2.969669] CSI: Registered sensor subdevice: mxc_mipi-csi.0
[    2.249107] ov5640 2-003c: supply DOVDD not found, using dummy regulator
+
[    2.975355] mxc_mipi-csi 32e30000.mipi_csi: lanes: 2, hs_settle: 13, clk_settle: 2, wclk: 1, freq: 333000000
[    2.255910] ov5640 2-003c: supply AVDD not found, using dummy regulator
+
[    2.985462] Driver for 1-wire Dallas network protocol.
[    2.262574] ov5640 2-003c: supply DVDD not found, using dummy regulator
+
[    2.994643] imx2-wdt 30280000.watchdog: timeout 60 sec (nowayout=0)
[    2.286152] i2c i2c-2: IMX I2C adapter registered
+
[    3.001224] Bluetooth: HCI UART driver ver 2.3
[    2.292020] i2c 5-004c: Fixing up cyclic dependency with 32c00000.bus:ldb@32ec005c
+
[    3.005685] Bluetooth: HCI UART protocol H4 registered
[    2.430554] i2c i2c-5: IMX I2C adapter registered
+
[    3.010833] Bluetooth: HCI UART protocol BCSP registered
[    2.436220] imx8mq-usb-phy 381f0040.usb-phy: supply vbus not found, using dummy regulator
+
[    3.016169] Bluetooth: HCI UART protocol LL registered
[    2.444751] imx8mq-usb-phy 382f0040.usb-phy: supply vbus not found, using dummy regulator
+
[    3.021314] Bluetooth: HCI UART protocol ATH3K registered
[    2.455264] imx6q-pcie 33800000.pcie: supply epdev_on not found, using dummy regulator
+
[    3.026738] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    2.463536] imx6q-pcie 33800000.pcie: EXT REF_CLK is used!.
+
[    3.033101] Bluetooth: HCI UART protocol Broadcom registered
[    2.469743] imx6q-pcie 33800000.pcie: PCIe PHY PLL clock is locked.
+
[    3.038785] Bluetooth: HCI UART protocol QCA registered
[    2.476375] pps pps0: new PPS source ptp0
+
[    3.045971] sdhci: Secure Digital Host Controller Interface driver
[    2.489316] fec 30be0000.ethernet eth0: registered PHC device 0
+
[    3.052167] sdhci: Copyright(c) Pierre Ossman
[    2.496142] imx-dwmac 30bf0000.ethernet: IRQ eth_lpi not found
+
[    3.056724] Synopsys Designware Multimedia Card Interface Driver
[    2.502542] imx6q-pcie 33800000.pcie: PCIe PLL is locked.
+
[    3.063347] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.503167] imx-dwmac 30bf0000.ethernet: User ID: 0x10, Synopsys ID: 0x51
+
[    3.069857] mmc0: CQHCI version 5.10
[    2.508013] imx6q-pcie 33800000.pcie: iATU unroll: enabled
+
[    3.105013] mmc0: SDHCI controller on 30b40000.mmc [30b40000.mmc] using ADMA
[    2.514765] imx-dwmac 30bf0000.ethernet: DWMAC4/5
+
[    3.112380] mmc1: CQHCI version 5.10
[    2.520245] imx6q-pcie 33800000.pcie: Detected iATU regions: 4 outbound, 4 inbound
+
[    3.118688] ledtrig-cpu: registered to indicate activity on CPUs
[    2.525039] imx-dwmac 30bf0000.ethernet: DMA HW capability register supported
+
[    3.125997] caam 30900000.crypto: device ID = 0x0a16040100000000 (Era 9)
[    2.532618] imx6q-pcie 33800000.pcie: host bridge /soc@0/pcie@33800000 ranges:
+
[    3.132723] caam 30900000.crypto: job rings = 3, qi = 0
[    2.539746] imx-dwmac 30bf0000.ethernet: RX Checksum Offload Engine supported
+
[    3.151907] caam algorithms registered in /proc/crypto
[   2.546975] imx6q-pcie 33800000.pcie:  No bus range found for /soc@0/pcie@33800000, using [bus 00-ff]
+
[    3.157844] caam 30900000.crypto: caam pkc algorithms registered in /proc/crypto
[    2.554103] imx-dwmac 30bf0000.ethernet: TX Checksum insertion supported
+
[    3.165262] caam 30900000.crypto: registering rng-caam
[    2.563435] imx6q-pcie 33800000.pcie:       IO 0x001ff80000..0x001ff8ffff -> 0x0000000000
+
[    3.170959] Device caam-keygen registered
[    2.570110] imx-dwmac 30bf0000.ethernet: Wake-Up On Lan supported
+
[    3.180289] caam-snvs 30370000.caam-snvs: violation handlers armed - non-secure state
[    2.570170] imx-dwmac 30bf0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
+
[    3.188806] usbcore: registered new interface driver usbhid
[    2.578305] imx6q-pcie 33800000.pcie:      MEM 0x0018000000..0x001fefffff -> 0x0018000000
+
[    3.194404] usbhid: USB HID core driver
[    2.584387] imx-dwmac 30bf0000.ethernet: Enabled L3L4 Flow TC (entries=8)
+
[    3.199760] No fsl,qman node
[    2.592125] imx6q-pcie 33800000.pcie: iATU unroll: enabled
+
[    3.202664] Freescale USDPAA process driver
[    2.600221] imx-dwmac 30bf0000.ethernet: Enabled RFS Flow TC (entries=8)
+
[    3.206868] fsl-usdpaa: no region found
[    2.607013] imx6q-pcie 33800000.pcie: Detected iATU regions: 4 outbound, 4 inbound
+
[    3.210762] Freescale USDPAA process IRQ driver
[    2.612506] imx-dwmac 30bf0000.ethernet: Enabling HW TC (entries=256, max_off=256)
+
[    3.220347] galcore: clk_get vg clock failed, disable vg!
[    2.634345] imx-dwmac 30bf0000.ethernet: Using 34 bits DMA width
+
[    3.226067] Galcore version 6.4.3.p1.305572
[    2.644922] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
+
[    3.232835] random: fast init done
[    2.650450] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
+
[    3.249814] mmc0: Command Queue Engine enabled
[    2.658453] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe6d hci version 0x110 quirks 0x0000002001010010
+
[    3.254302] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    2.667894] xhci-hcd xhci-hcd.1.auto: irq 77, io mem 0x38100000
+
[    3.257350] random: crng init done
[    2.673946] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
+
[    3.262356] mmcblk0: mmc0:0001 DG4008 7.28 GiB
[    2.679448] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
+
[    3.268839] mmcblk0boot0: mmc0:0001 DG4008 partition 1 4.00 MiB
[    2.687118] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
+
[    3.274963] mmcblk0boot1: mmc0:0001 DG4008 partition 2 4.00 MiB
[    2.694154] hub 1-0:1.0: USB hub found
+
[    3.281616] mmcblk0rpmb: mmc0:0001 DG4008 partition 3 4.00 MiB, chardev (237:0)
[    2.697936] hub 1-0:1.0: 1 port detected
+
[    3.296565] [drm] Initialized vivante 1.0.0 20170808 for 38000000.gpu on minor 1
[    2.702171] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
+
[    3.305724] hantrodec 0 : module inserted. Major = 236
[    2.710799] hub 2-0:1.0: USB hub found
+
[    3.311449] hantrodec 1 : module inserted. Major = 236
[    2.714578] hub 2-0:1.0: 1 port detected
+
[    3.317379] hx280enc: module inserted. Major <235>
[    2.719553] imx6q-pcie 33800000.pcie: Link up
+
[    3.332940] fsl-sai 30020000.sai: failed to get mclk0 clock: -2
[    2.721342] gpio-42 (onewire): enforced open drain please flag it properly in DT/ACPI DSDT/board file
+
[    3.338882] fsl-sai 30020000.sai: failed to get mclk1 clock: -2
[    2.734012] imx-cpufreq-dt imx-cpufreq-dt: cpu speed grade 7 mkt segment 2 supported-hw 0x80 0x4
+
[    3.344826] fsl-sai 30020000.sai: failed to get mclk2 clock: -2
[    2.743687] Hot alarm is canceled. GPU3D clock will return to 64/64
+
[    3.350756] fsl-sai 30020000.sai: failed to get mclk3 clock: -2
[    2.753849] mxc-mipi-csi2-sam 32e40000.csi: supply mipi-phy not found, using dummy regulator
+
[    3.389416] pktgen: Packet Generator for packet performance testing. Version: 2.75
[    2.753954] sdhci-esdhc-imx 30b50000.mmc: Got CD GPIO
+
[    3.401850] NET: Registered protocol family 26
[    2.757114] w1_master_driver w1_bus_master1: Attaching one wire slave 2d.000035c48de6 crc b7
+
[    3.406907] NET: Registered protocol family 10
[    2.762599] : mipi_csis_imx8mp_phy_reset, No remote pad found!
+
[    3.412005] Segment Routing with IPv6
[    2.781687] mxc-mipi-csi2-sam 32e40000.csi: lanes: 2, hs_settle: 13, clk_settle: 2, wclk: 1, freq: 500000000
+
[    3.415734] NET: Registered protocol family 17
[    2.792424] mxc-mipi-csi2-sam 32e50000.csi: supply mipi-phy not found, using dummy regulator
+
[    3.420218] can: controller area network core (rev 20170425 abi 9)
[    2.798545] mmc1: SDHCI controller on 30b50000.mmc [30b50000.mmc] using ADMA
+
[    3.426445] NET: Registered protocol family 29
[    2.801177] : mipi_csis_imx8mp_phy_reset, No remote pad found!
+
[    3.430911] can: raw protocol (rev 20170425)
[    2.813793] mxc-mipi-csi2-sam 32e50000.csi: lanes: 2, hs_settle: 13, clk_settle: 2, wclk: 1, freq: 266000000
+
[    3.435190] can: broadcast manager protocol (rev 20170425 t)
[    2.823637] imx6q-pcie 33800000.pcie: Link up
+
[    3.440860] can: netlink gateway (rev 20190810) max_hops=1
[    2.825220] isi-capture 32e00000.isi:cap_device: deferring 32e00000.isi:cap_device device registration
+
[    3.447441] Bluetooth: RFCOMM TTY layer initialized
[    2.828047] imx6q-pcie 33800000.pcie: Link up, Gen2
+
[    3.452342] Bluetooth: RFCOMM socket layer initialized
[    2.838126] mxc-isi 32e00000.isi: mxc_isi.0 registered successfully
+
[    3.457511] Bluetooth: RFCOMM ver 1.11
[    2.849901] isi-capture 32e02000.isi:cap_device: deferring 32e02000.isi:cap_device device registration
+
[    3.461272] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    2.851947] mmc1: host does not support reading read-only switch, assuming write-enable
+
[    3.466589] Bluetooth: BNEP filters: protocol multicast
[    2.859327] mxc-isi 32e02000.isi: mxc_isi.1 registered successfully
+
[    3.471825] Bluetooth: BNEP socket layer initialized
[    2.871242] mmc1: new high speed SDHC card at address aaaa
+
[    3.476796] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    2.876215] dwhdmi-imx 32fd8000.hdmi: Detected HDMI TX controller v2.13a with HDCP (samsung_dw_hdmi_phy2)
+
[    3.482725] Bluetooth: HIDP socket layer initialized
[    2.879438] mmcblk1: mmc1:aaaa SA16G 14.8 GiB
+
[    3.487725] 8021q: 802.1Q VLAN Support v1.8
[    2.889010] dwhdmi-imx 32fd8000.hdmi: registered DesignWare HDMI I2C bus driver
+
[    3.491928] lib80211: common routines for IEEE802.11 drivers
[    2.895250] mmcblk1: p1 p2
+
[    3.497707] 9pnet: Installing 9P2000 support
[    2.901407] imx-drm display-subsystem: bound imx-lcdifv3-crtc.0 (ops lcdifv3_crtc_ops)
+
[   3.502008] tsn generic netlink module v1 init...
[    2.911110] imx-drm display-subsystem: bound imx-lcdifv3-crtc.1 (ops lcdifv3_crtc_ops)
+
[    3.506796] Key type dns_resolver registered
[    2.919288] imx-drm display-subsystem: bound 32c00000.bus:ldb@32ec005c (ops imx8mp_ldb_ops)
+
[   3.512016] registered taskstats version 1
[    2.927669] imx-drm display-subsystem: bound 32fd8000.hdmi (ops dw_hdmi_imx_ops)
+
[    3.516126] Loading compiled-in X.509 certificates
[    2.935308] [drm] Initialized imx-drm 1.0.0 20120507 for display-subsystem on minor 1
+
[    3.542409] usb_phy_generic usbphynop1: usbphynop1 supply vcc not found, using dummy regulator
[    2.941139] mmc0: SDHCI controller on 30b40000.mmc [30b40000.mmc] using ADMA
+
[    3.551252] usb_phy_generic usbphynop2: usbphynop2 supply vcc not found, using dummy regulator
[    2.950209] imx6q-pcie 33800000.pcie: Link up
+
[    3.571639] pf8x00-regulator 0-0008: PF8121A: Full layer: 3, Metal layer: 1, prog_id=0x5001
[    2.954501] usb 1-1: new high-speed USB device number 2 using xhci-hcd
+
[    3.580010] pf8x00-regulator 0-0008: PF8121A found.
[    2.954656] imx6q-pcie 33800000.pcie: PCI host bridge to bus 0000:00
+
[    3.657114] pf8x00-regulator 0-0008: reg(0xa4) not found for 0x5001
[    2.967449] pci_bus 0000:00: root bus resource [bus 00-ff]
+
[    3.663475] i2c i2c-0: IMX I2C adapter registered
[    2.972939] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
+
[   3.670012] i2c i2c-1: IMX I2C adapter registered
[    2.973658] mmc0: queuing unknown CIS tuple 0x01 [d9 01 ff] (3 bytes)
+
[    3.676140] ov5640_mipi 2-003c: No pin available
[    2.979124] pci_bus 0000:00: root bus resource [mem 0x18000000-0x1fefffff]
+
[    3.680802] ov5640_mipi 2-003c: No sensor pwdn pin available
[    2.979149] pci 0000:00:00.0: [16c3:abcd] type 01 class 0x060400
+
[   3.686481] ov5640_mipi 2-003c: No sensor reset pin available
[    2.993338] mmc0: queuing unknown CIS tuple 0x1a [01 01 00 02 07] (5 bytes)
+
[    3.692270] ov5640_mipi 2-003c: 2-003c supply DOVDD not found, using dummy regulator
[    2.998456] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x000fffff]
+
[    3.700077] ov5640_mipi 2-003c: 2-003c supply DVDD not found, using dummy regulator
[    3.008796] mmc0: queuing unknown CIS tuple 0x1b [c1 41 30 30 ff ff 32 00] (8 bytes)
+
[    3.707796] ov5640_mipi 2-003c: 2-003c supply AVDD not found, using dummy regulator
[    3.011685] pci 0000:00:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
+
[    3.716477] ov5640_mipi 2-003c: Read reg error: reg=300a
[    3.020103] mmc0: queuing unknown CIS tuple 0x14 [] (0 bytes)
+
[    3.721805] ov5640_mipi 2-003c: Camera is not found
[    3.026156] pci 0000:00:00.0: supports D1
+
[    3.726852] i2c i2c-2: IMX I2C adapter registered
[    3.034042] mmc0: new high speed SDIO card at address 0001
+
[    3.733400] imx6q-pcie 33800000.pcie: 33800000.pcie supply epdev_on not found, using dummy regulator
[    3.035878] pci 0000:00:00.0: PME# supported from D0 D1 D3hot D3cold
+
[    3.733993] pps pps0: new PPS source ptp0
[    3.038125] pci 0000:01:00.0: [1912:0015] type 00 class 0x0c0330
+
[    3.742811] imx6q-pcie 33800000.pcie: PLL REF_CLK is used!.
[    3.053808] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00001fff 64bit]
+
[    3.757976] libphy: fec_enet_mii_bus: probed
[    3.060969] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
+
[    3.766619] fec 30be0000.ethernet eth0: registered PHC device 0
[    3.081055] pci 0000:00:00.0: BAR 0: assigned [mem 0x18000000-0x180fffff]
+
[    3.773382] imx_usb 32e40000.usb: 32e40000.usb supply vbus not found, using dummy regulator
[    3.087872] pci 0000:00:00.0: BAR 14: assigned [mem 0x18100000-0x181fffff]
+
[   3.783588] imx6q-pcie 33800000.pcie: PCIe PLL locked after 20 us.
[    3.094785] pci 0000:00:00.0: BAR 6: assigned [mem 0x18200000-0x1820ffff pref]
+
[    3.786161] imx_usb 32e50000.usb: No over current polarity defined
[    3.102020] pci 0000:01:00.0: BAR 0: assigned [mem 0x18100000-0x18101fff 64bit]
+
[    3.789839] imx6q-pcie 33800000.pcie: host bridge /soc@0/pcie@33800000 ranges:
[    3.109364] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
+
[    3.798888] ci_hdrc ci_hdrc.1: EHCI Host Controller
[    3.114597] pci 0000:00:00.0:   bridge window [mem 0x18100000-0x181fffff]
+
[    3.803238] imx6q-pcie 33800000.pcie:   IO 0x1ff80000..0x1ff8ffff -> 0x00000000
[    3.121671] pcieport 0000:00:00.0: PME: Signaling with IRQ 242
+
[    3.808103] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 1
[    3.127630] pci 0000:01:00.0: enabling device (0000 -> 0002)
+
[    3.815497] imx6q-pcie 33800000.pcie:   MEM 0x18000000..0x1fefffff -> 0x18000000
[    3.174221] hub 1-1:1.0: USB hub found
+
[    3.839238] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00
[    3.178222] hub 1-1:1.0: 4 ports detected
+
[    3.845468] hub 1-0:1.0: USB hub found
[    3.282202] usb 2-1: new SuperSpeed USB device number 2 using xhci-hcd
+
[    3.849250] hub 1-0:1.0: 1 port detected
[    3.431527] hub 2-1:1.0: USB hub found
+
[    3.854952] imx-cpufreq-dt imx-cpufreq-dt: cpu speed grade 2 mkt segment 2 supported-hw 0x4 0x4
[    3.433445] hub 2-1:1.0: 4 ports detected
+
[    3.867484] mmc1: CQHCI version 5.10
[    3.531092] Console: switching to colour frame buffer device 160x45
+
[    3.871102] sdhci-esdhc-imx 30b50000.mmc: Got CD GPIO
[   3.559230] imx-drm display-subsystem: [drm] fb0: imx-drmdrmfb frame buffer device
+
[    3.908929] mmc1: SDHCI controller on 30b50000.mmc [30b50000.mmc] using ADMA
[    3.571453] isi-m2m 32e00000.isi:m2m_device: Register m2m success for ISI.0
+
[   3.917224] debugfs: Directory '30020000.sai' with parent 'SBCX_TLV320' already present!
[    3.583831] Generic PHY 30be0000.ethernet-1:08: attached PHY driver (mii_bus:phy_addr=30be0000.ethernet-1:08, irq=POLL)
+
[   3.925445] asoc-simple-card sound: tlv320aic31xx-hifi <-> 30020000.sai mapping ok
[    7.679930] fec 30be0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
+
[    3.933044] asoc-simple-card sound: ASoC: no DMI vendor name!
[    7.691154] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+
[    3.964064] snvs_rtc 30370000.snvs:snvs-rtc-lp: setting system clock to 2023-02-27T10:24:32 UTC (1677493472)
[    7.710497] IP-Config: Complete:
+
[    3.982577] mmc1: host does not support reading read-only switch, assuming write-enable
[    7.713727]     device=eth0, hwaddr=0a:34:b4:63:39:ef, ipaddr=192.168.0.89, mask=255.255.255.0, gw=192.168.0.254
+
[    3.992852] mmc1: new high speed SDHC card at address 0001
[    7.724125]     host=desk-mx, domain=, nis-domain=(none)
+
[    3.998899] mmcblk1: mmc1:0001 SD32G 29.5 GiB
[    7.729552]     bootserver=192.168.0.90, rootserver=192.168.0.90, rootpath=
+
[    4.005589] mmcblk1: p1 p2
[    7.729707] cfg80211: Loading compiled-in X.509 certificates for regulatory database
+
[    4.060371] Micrel KSZ9031 Gigabit PHY 30be0000.ethernet-1:07: attached PHY driver [Micrel KSZ9031 Gigabit PHY] (mii_bus:phy_addr=30be0000.ethernet-1:07, irq=POLL)
[    7.747393] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
+
[    4.833629] imx6q-pcie 33800000.pcie: Phy link never came up
[    7.754015] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
+
[    4.839353] imx6q-pcie 33800000.pcie: failed to initialize host
[    7.762645] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db
+
[    4.845279] imx6q-pcie 33800000.pcie: unable to add pcie port.
[    7.770238] ALSA device list:
+
[    9.186342] fec 30be0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off
[    7.773370]   No soundcards found.
+
[    9.193953] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[    7.827755] VFS: Mounted root (nfs filesystem) on device 0:21.
+
[    9.211514] IP-Config: Guessing netmask 255.255.255.0
[    7.837615] devtmpfs: mounted
+
[    9.216597] IP-Config: Complete:
[    7.841145] Freeing unused kernel memory: 3008K
+
[    9.219853]     device=eth0, hwaddr=36:ab:ed:3f:ab:7e, ipaddr=192.168.0.89, mask=255.255.255.0, gw=255.255.255.255
[    7.858873] Run /sbin/init as init process
+
[    9.230306]     host=192.168.0.89, domain=, nis-domain=(none)
[    8.660279] systemd[1]: System time before build time, advancing clock.
+
[    9.236151]     bootserver=255.255.255.255, rootserver=192.168.0.125, rootpath=
[    8.700319] systemd[1]: systemd 250.5+ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
+
[    9.243592] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    8.732357] systemd[1]: Detected architecture arm64.
+
[    9.254449] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
 +
[    9.261074] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
 +
[    9.267592] ALSA device list:
 +
[    9.269704] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db
 +
[    9.272685]  #0: SBCX_TLV320
 +
[    9.310240] VFS: Mounted root (nfs filesystem) readonly on device 0:22.
 +
[    9.318649] devtmpfs: mounted
 +
[    9.322519] Freeing unused kernel memory: 2880K
 +
[    9.331558] Run /sbin/init as init process
 +
[    9.915182] systemd[1]: systemd 243.2+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
 +
[    9.937166] systemd[1]: Detected architecture arm64.
  
Welcome to NXP i.MX Release Distro 5.15-kirkstone (kirkstone)!
+
Welcome to NXP i.MX Release Distro 5.4-zeus (zeus)!
  
[   8.839156] systemd[1]: Hostname set to <desk-mx8mp>.
+
[   10.021031] systemd[1]: Set hostname to <desk-mx8mm>.
[   8.873618] systemd[1]: Initializing machine ID from random generator.
+
[   11.105003] systemd[1]: /lib/systemd/system/dbus.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/dbus/system_bus_socket → /run/dbus/system_bus_socket; please update the unit file accordingly.
[    9.052162] systemd-sysv-generator[194]: SysV service '/etc/init.d/single' 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 more safe and robust.
+
[   11.165610] systemd[1]: /lib/systemd/system/syslogd.service:8: PIDFile= references a path below legacy directory /var/run/, updating /var/run/syslogd.pid → /run/syslogd.pid; please update the unit file accordingly.
[    9.092830] systemd-sysv-generator[194]: SysV service '/etc/init.d/halt' 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 more safe and robust.
+
[   11.243642] systemd[1]: /lib/systemd/system/rpcbind.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/rpcbind.sock → /run/rpcbind.sock; please update the unit file accordingly.
[   9.140481] systemd-sysv-generator[194]: SysV service '/etc/init.d/sendsigs' 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 more safe and robust.
+
[   11.286125] systemd[1]: /lib/systemd/system/klogd.service:8: PIDFile= references a path below legacy directory /var/run/, updating /var/run/klogd.pid → /run/klogd.pid; please update the unit file accordingly.
[    9.166646] systemd-sysv-generator[194]: SysV service '/etc/init.d/umountfs' 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 more safe and robust.
+
[   11.848815] systemd[1]: system-getty.slice: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
[   9.211402] systemd-sysv-generator[194]: SysV service '/etc/init.d/rc.local' 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 more safe and robust.
+
11.861274] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
[    9.239479] systemd-sysv-generator[194]: SysV service '/etc/init.d/reboot' 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 more safe and robust.
+
11.871753] systemd[1]: Created slice system-getty.slice.
[   9.268965] systemd-sysv-generator[194]: SysV service '/etc/init.d/umountnfs.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 more safe and robust.
+
[  OK  ] Created slice system-getty.slice.
[    9.296725] systemd-sysv-generator[194]: SysV service '/etc/init.d/save-rtc.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 more safe and robust.
+
[  OK  ] Created slice system-serial\x2dgetty.slice.
[   9.400201] systemd[185]: /lib/systemd/system-generators/systemd-gpt-auto-generator failed with exit status 1.
 
10.805803] systemd[1]: Queued start job for default target Graphical Interface.
 
10.856615] systemd[1]: Created slice Slice /system/getty.
 
[  OK  ] Created slice Slice /system/getty.
 
[  10.880999] systemd[1]: Created slice Slice /system/modprobe.
 
[  OK  ] Created slice Slice /system/modprobe.
 
[  10.909636] systemd[1]: Created slice Slice /system/serial-getty.
 
[  OK  ] Created slice Slice /system/serial-getty.
 
[  10.932716] systemd[1]: Created slice User and Session Slice.
 
 
[  OK  ] Created slice User and Session Slice.
 
[  OK  ] Created slice User and Session Slice.
[  10.954928] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
+
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[  OK  ] Started Dispatch Password �ts to Console Directory Watch.
+
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[  10.978827] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
+
[  OK  ] Reached target Paths.
[  OK  ] Started Forward Password R�uests to Wall Directory Watch.
 
[  11.002854] systemd[1]: Reached target Host and Network Name Lookups.
 
[  OK  ] Reached target Host and Network Name Lookups.
 
[  11.026954] systemd[1]: Reached target Path Units.
 
[  OK  ] Reached target Path Units.
 
[  11.046629] systemd[1]: Reached target Remote File Systems.
 
 
[  OK  ] Reached target Remote File Systems.
 
[  OK  ] Reached target Remote File Systems.
[  11.070920] systemd[1]: Reached target Slice Units.
+
[  OK  ] Reached target Slices.
[  OK  ] Reached target Slice Units.
+
[  OK  ] Reached target Swap.
[  11.090934] systemd[1]: Reached target Swaps.
 
[  OK  ] Reached target Swaps.
 
[  11.118902] systemd[1]: Listening on RPCbind Server Activation Socket.
 
[  OK  ] Listening on RPCbind Server Activation Socket.
 
[  11.142776] systemd[1]: Reached target RPC Port Mapper.
 
[  OK  ] Reached target RPC Port Mapper.
 
[  11.171968] systemd[1]: Listening on Syslog Socket.
 
 
[  OK  ] Listening on Syslog Socket.
 
[  OK  ] Listening on Syslog Socket.
[  11.191213] systemd[1]: Listening on initctl Compatibility Named Pipe.
 
 
[  OK  ] Listening on initctl Compatibility Named Pipe.
 
[  OK  ] Listening on initctl Compatibility Named Pipe.
[  11.219370] systemd[1]: Listening on Journal Audit Socket.
 
 
[  OK  ] Listening on Journal Audit Socket.
 
[  OK  ] Listening on Journal Audit Socket.
[  11.239251] systemd[1]: Listening on Journal Socket (/dev/log).
 
 
[  OK  ] Listening on Journal Socket (/dev/log).
 
[  OK  ] Listening on Journal Socket (/dev/log).
[  11.263292] systemd[1]: Listening on Journal Socket.
 
 
[  OK  ] Listening on Journal Socket.
 
[  OK  ] Listening on Journal Socket.
[  11.284795] systemd[1]: Listening on Network Service Netlink Socket.
 
 
[  OK  ] Listening on Network Service Netlink Socket.
 
[  OK  ] Listening on Network Service Netlink Socket.
[  11.321711] systemd[1]: Listening on udev Control Socket.
 
 
[  OK  ] Listening on udev Control Socket.
 
[  OK  ] Listening on udev Control Socket.
[  11.342999] systemd[1]: Listening on udev Kernel Socket.
 
 
[  OK  ] Listening on udev Kernel Socket.
 
[  OK  ] Listening on udev Kernel Socket.
[  11.365550] systemd[1]: Listening on User Database Manager Socket.
 
[  OK  ] Listening on User Database Manager Socket.
 
[  11.390583] systemd[1]: Mounting Huge Pages File System...
 
 
         Mounting Huge Pages File System...
 
         Mounting Huge Pages File System...
[  11.414737] systemd[1]: Mounting POSIX Message Queue File System...
 
 
         Mounting POSIX Message Queue File System...
 
         Mounting POSIX Message Queue File System...
[  11.442536] systemd[1]: Mounting Kernel Debug File System...
 
 
         Mounting Kernel Debug File System...
 
         Mounting Kernel Debug File System...
[  11.463051] systemd[1]: Kernel Trace File System was skipped because of a failed condition check (ConditionPathExists=/sys/kernel/tracing).
+
         Mounting Temporary Directory (/tmp)...
[  11.487208] systemd[1]: Mounting Temporary Directory /tmp...
+
         Starting File System Check on Root Device...
         Mounting Temporary Directory /tmp...
 
[  11.529145] systemd[1]: Starting Create List of Static Device Nodes...
 
        Starting Create List of Static Device Nodes...
 
[  11.554998] systemd[1]: Starting Load Kernel Module configfs...
 
        Starting Load Kernel Module configfs...
 
[  11.578367] systemd[1]: Starting Load Kernel Module drm...
 
        Starting Load Kernel Module drm...
 
[  11.602354] systemd[1]: Starting Load Kernel Module fuse...
 
        Starting Load Kernel Module fuse...
 
[  11.636297] systemd[1]: Starting RPC Bind...
 
         Starting RPC Bind...
 
[  11.655835] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
 
[  11.669019] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
 
[  11.682039] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
 
[  11.695952] systemd[1]: Starting Journal Service...
 
 
         Starting Journal Service...
 
         Starting Journal Service...
[  11.727524] fuse: init (API version 7.34)
+
         Mounting Kernel Configuration File System...
[  11.729521] systemd[1]: Load Kernel Modules was skipped because all trigger condition checks failed.
 
[  11.744609] systemd[1]: Starting Generate network units from Kernel command line...
 
         Starting Generate network �ts from Kernel command line...
 
[  11.774972] systemd[1]: Starting Remount Root and Kernel File Systems...
 
        Starting Remount Root and Kernel File Systems...
 
[  11.803449] systemd[1]: Starting Apply Kernel Variables...
 
 
         Starting Apply Kernel Variables...
 
         Starting Apply Kernel Variables...
[  11.826754] systemd[1]: Starting Coldplug All udev Devices...
+
        Starting udev Coldplug all Devices...
        Starting Coldplug All udev Devices...
 
[  11.851511] systemd[1]: Started RPC Bind.
 
[  OK  ] Started RPC Bind.
 
[  11.872111] systemd[1]: Mounted Huge Pages File System.
 
 
[  OK  ] Mounted Huge Pages File System.
 
[  OK  ] Mounted Huge Pages File System.
[  11.895020] systemd[1]: Mounted POSIX Message Queue File System.
 
 
[  OK  ] Mounted POSIX Message Queue File System.
 
[  OK  ] Mounted POSIX Message Queue File System.
[  11.919020] systemd[1]: Mounted Kernel Debug File System.
 
 
[  OK  ] Mounted Kernel Debug File System.
 
[  OK  ] Mounted Kernel Debug File System.
[  11.939025] systemd[1]: Mounted Temporary Directory /tmp.
+
[  OK  ] Mounted Temporary Directory (/tmp).
[  OK  ] Mounted Temporary Directory /tmp.
 
[  11.959086] systemd[1]: Started Journal Service.
 
 
[  OK  ] Started Journal Service.
 
[  OK  ] Started Journal Service.
[  OK  ] Finished Create List of Static Device Nodes.
+
[  OK  ] Started File System Check on Root Device.
[  OK  ] Finished Load Kernel Module configfs.
+
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Load Kernel Module drm.
+
[  OK  ] Started Apply Kernel Variables.
[  OK  ] Finished Load Kernel Module fuse.
+
        Starting Remount Root and Kernel File Systems...
[  OK  ] Finished Generate network units from Kernel command line.
+
[  OK  ] Started Remount Root and Kernel File Systems.
[  OK  ] Finished Remount Root and Kernel File Systems.
 
[  OK  ] Finished Apply Kernel Variables.
 
        Mounting FUSE Control File System...
 
        Mounting Kernel Configuration File System...
 
 
         Starting Flush Journal to Persistent Storage...
 
         Starting Flush Journal to Persistent Storage...
        Starting Create System Users...
 
[  OK  ] Mounted FUSE Control File System.
 
[  12.232982] systemd-journald[204]: Received client request to flush runtime journal.
 
[  OK  ] Mounted Kernel Configuration File System.
 
[  OK  ] Finished Flush Journal to Persistent Storage.
 
[  OK  ] Finished Create System Users.
 
 
         Starting Create Static Device Nodes in /dev...
 
         Starting Create Static Device Nodes in /dev...
[  OK  ] Finished Coldplug All udev Devices.
+
[  12.644713] systemd-journald[250]: Received client request to flush runtime journal.
[  OK  ] Finished Create Static Device Nodes in /dev.
+
[  OK  ] Started Flush Journal to Persistent Storage.
[  OK  ] Reached target Preparation for Local File Systems.
+
[  OK  ] Started udev Coldplug all Devices.
 +
[  OK  ] Started Create Static Device Nodes in /dev.
 +
[  OK  ] Reached target Local File Systems (Pre).
 
         Mounting /var/volatile...
 
         Mounting /var/volatile...
         Starting Rule-based Manage�for Device Events and Files...
+
         Starting udev Kernel Device Manager...
 
[  OK  ] Mounted /var/volatile.
 
[  OK  ] Mounted /var/volatile.
 
         Starting Load/Save Random Seed...
 
         Starting Load/Save Random Seed...
 
[  OK  ] Reached target Local File Systems.
 
[  OK  ] Reached target Local File Systems.
        Starting Rebuild Dynamic Linker Cache...
 
 
         Starting Create Volatile Files and Directories...
 
         Starting Create Volatile Files and Directories...
[  OK  ] Started Rule-based Manager for Device Events and Files.
+
[  OK  ] Started Load/Save Random Seed.
[  OK  ] Finished Create Volatile Files and Directories.
+
[  OK  ] Started udev Kernel Device Manager.
         Starting Rebuild Journal Catalog...
+
[  OK  ] Started Create Volatile Files and Directories.
[FAILED] Failed to start Network Time Synchronization.
+
         Starting Network Time Synchronization...
See 'systemctl status systemd-timesyncd.service' for details.
+
        Starting Update UTMP about System Boot/Shutdown...
 +
[  OK  ] Started Update UTMP about System Boot/Shutdown.
 +
[ OK  ] Started Network Time Synchronization.
 +
[  OK  ] Reached target System Initialization.
 +
[  13.884727] imx-sdma 302b0000.dma-controller: loaded firmware 4.5
 +
[  OK  ] Started Daily Cleanup of Temporary Directories.
 
[  OK  ] Reached target System Time Set.
 
[  OK  ] Reached target System Time Set.
        Starting Record System Boot/Shutdown in UTMP...
+
[  OK  ] Reached target System Time Synchronized.
[  OK  ] Stopped Network Time Synchronization.
+
[  OK  ] Started Daily apt download activities.
[  13.574513] random: crng init done
 
[FAILED] Failed to start Network Time Synchronization.
 
See 'systemctl status systemd-timesyncd.service' for details.
 
[  OK  ] Finished Load/Save Random Seed.
 
[  OK  ] Finished Rebuild Journal Catalog.
 
[  OK  ] Stopped Network Time Synchronization.
 
[  13.826243] remoteproc remoteproc0: imx-dsp-rproc is available
 
[FAILED] Failed to start Network Time Synchronization.
 
See 'systemctl status systemd-timesyncd.service' for details.
 
[  13.882356] caam-snvs 30370000.caam-snvs: violation handlers armed - non-secure state
 
[  OK  ] Finished Record System Boot/Shutdow[  13.904345] caam 30900000.crypto: Entropy delay = 3200
 
n in UTMP.
 
[  OK  ] Stopped Network Time Synchronization.
 
[  13.988789] caam 30900000.crypto: failed to acquire DECO 0
 
[  13.994320] caam 30900000.crypto: failed to instantiate RNG
 
[  14.120839] imx8_media_dev: module is from the staging directory, the quality is unknown, you have been warned.
 
[  14.156048] mx8-img-md: Registered mxc_isi.0.capture as /dev/video1
 
[  14.185725] mx8-img-md: Registered mxc_isi.1.capture as /dev/video2
 
[  14.192257] mx8-img-md: Registered sensor subdevice: ov5640 2-003c (1)
 
[  14.198995] mx8-img-md: Registered sensor subdevice: ov5640 1-003c (2)
 
[  14.205603] mx8-img-md: created link [mxc_isi.0] => [mxc_isi.0.capture]
 
[FAILED] Failed to s[  14.212431] mx8-img-md: created link [mxc-mipi-csi2.0] => [mxc_isi.0]
 
tart Network Time Synchr[  14.221748] mx8-img-md: created link [mxc_isi.1] => [mxc_isi.1.capture]
 
onization.
 
[  14.231415] mx8-img-md: created link [mxc-mipi-csi2.1] => [mxc_isi.1]
 
[  14.239784] mx8-img-md: created link [ov5640 1-003c] => [mxc-mipi-csi2.0]
 
[  14.246899] mx8-img-md: created link [ov5640 2-003c] => [mxc-mipi-csi2.1]
 
See 'systemctl status systemd-tim[  14.255260] mxc-md 32c00000.bus:camera: mxc_md_create_links
 
esyncd.service' for details.
 
[  OK  ] Reached target Hardware activated USB gadget.
 
[  OK  ] Stopped Network Time Synchronization.
 
[FAILED] Failed to start Network Time Synchronization.
 
See 'systemctl status systemd-timesyncd.service' for details.
 
[  OK  ] Stopped Network Time Synchronization.
 
[FAILED] Failed to start Network Time Synchronization.
 
See 'systemctl status systemd-timesyncd.service' for details.
 
[  OK  ] Listening on Load/Save RF �itch Status /dev/rfkill Watch.
 
[  OK  ] Created slice Slice /system/systemd-fsck.
 
[  OK  ] Found device /dev/mmcblk2p2.
 
        Starting File System Check on /dev/mmcblk2p2...
 
[  OK  ] Found device /dev/mmcblk2p1.
 
        Starting File System Check on /dev/mmcblk2p1...
 
[  OK  ] Finished File System Check on /dev/mmcblk2p2.
 
        Mounting /run/media/rfs-mmcblk2p2...
 
[  15.969620] EXT4-fs (mmcblk2p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
 
[  OK  ] Mounted /run/media/rfs-mmcblk2p2.
 
[  OK  ] Found device /dev/mmcblk1p2.
 
[  OK  ] Finished File System Check on /dev/mmcblk2p1.
 
        Mounting /run/media/boot-mmcblk2p1...
 
        Starting File System Check on /dev/mmcblk1p2...
 
[  OK  ] Mounted /run/media/boot-mmcblk2p1.
 
[  OK  ] Found device /dev/mmcblk1p1.
 
        Starting File System Check on /dev/mmcblk1p1...
 
[  OK  ] Finished File System Check on /dev/mmcblk1p2.
 
        Mounting /run/media/ROOTFS-mmcblk1p2...
 
[  16.930964] EXT4-fs (mmcblk1p2): mounting ext3 file system using the ext4 subsystem
 
[  17.201139] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
 
[  OK  ] Mounted /run/media/ROOTFS-mmcblk1p2.
 
[  OK  ] Finished File System Check on /dev/mmcblk1p1.
 
        Mounting /run/media/BOOT-mmcblk1p1...
 
[  OK  ] Mounted /run/media/BOOT-mmcblk1p1.
 
[*    ] A start job is running for Rebuild �namic Linker Cache (8s / no limit)
 
[**    ] A start job is running for Rebuild �namic Linker Cache (9s / no limit)
 
[***  ] A start job is running for Rebuild �namic Linker Cache (9s / no limit)
 
[  OK  ] Finished Rebuild Dynamic Linker Cache.
 
        Starting Update is Completed...
 
[  OK  ] Finished Update is Completed.
 
[  OK  ] Reached target System Initialization.
 
 
[  OK  ] Started Daily rotation of log files.
 
[  OK  ] Started Daily rotation of log files.
[  OK  ] Started Daily Cleanup of Temporary Directories.
+
[  OK  ] Reached target Timers.
[  OK  ] Reached target Timer Units.
 
 
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
 
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
 
[  OK  ] Listening on D-Bus System Message Bus Socket.
 
[  OK  ] Listening on D-Bus System Message Bus Socket.
        Starting Docker Socket for the API...
+
[  OK  ] Listening on dropbear.socket.
        Starting sshd.socket...
+
[  OK  ] Listening on RPCbind Server Activation Socket.
        Starting Weston socket...
+
[  OK  ] Reached target Sockets.
[  OK  ] Listening on Docker Socket for the API.
 
[  OK  ] Listening on sshd.socket.
 
[  OK  ] Listening on Weston socket.
 
[  OK  ] Reached target Socket Units.
 
 
[  OK  ] Reached target Basic System.
 
[  OK  ] Reached target Basic System.
 +
        Starting Save/Restore Sound Card State...
 
[  OK  ] Started Job spooling tools.
 
[  OK  ] Started Job spooling tools.
 
[  OK  ] Started Periodic Command Scheduler.
 
[  OK  ] Started Periodic Command Scheduler.
        Starting D-Bus System Message Bus...
+
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Linux Firmware Loader Daemon.
 
 
[  OK  ] Started Configuration for i.MX GPU (Former rc_gpu.S).
 
[  OK  ] Started Configuration for i.MX GPU (Former rc_gpu.S).
[  OK  ] Started ISP i.MX 8Mplus daemon.
+
         Starting Packet Filtering Framework...
[  21.305962] imx-sdma 30e10000.dma-controller: firmware found.
 
[  21.306623] imx-sdma 30bd0000.dma-controller: firmware found.
 
[  21.308187] xhci_hcd 0000:01:00.0: failed to load firmware renesas_usb_fw.mem, fallback to ROM
 
[  21.308284] xhci_hcd 0000:01:00.0: xHCI Host Controller
 
[  21.308307] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 3
 
[  21.313639] xhci_hcd 0000:01:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000090
 
[  21.318031] imx-sdma 30bd0000.dma-controller: loaded firmware 4.6
 
[  21.327515] xhci_hcd 0000:01:00.0: xHCI Host Controller
 
[  21.359770] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 4
 
[  21.367235] xhci_hcd 0000:01:00.0: Host supports USB 3.0 SuperSpeed
 
         Starting IPv6 P[  21.374648] hub 3-0:1.0: USB hub found
 
acket Filtering Framework...[  21.380221] hub 3-0:1.0: 2 ports detected
 
 
 
[  21.387477] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
 
[  21.396959] hub 4-0:1.0: USB hub found
 
[  21.400815] hub 4-0:1.0: 2 ports detected
 
        Starting IPv4 Packet Filtering Framework...
 
 
         Starting Network Time Service (one-shot ntpdate mode)...
 
         Starting Network Time Service (one-shot ntpdate mode)...
 
         Starting Telephony service...
 
         Starting Telephony service...
 +
        Starting RPC Bind Service...
 +
        Starting System Logging Service...
 +
        Starting Login Service...
 +
[  OK  ] Started Save/Restore Sound Card State.
 +
[  OK  ] Started Packet Filtering Framework.
 +
[  OK  ] Started Network Time Service (one-shot ntpdate mode).
 +
[  OK  ] Started RPC Bind Service.
 
[  OK  ] Started System Logging Service.
 
[  OK  ] Started System Logging Service.
[FAILED] Failed to start User Login Management.
+
[  OK  ] Reached target Network (Pre).
See 'systemctl status systemd-logind.service' for details.
+
[  OK  ] Reached target Sound Card.
syslogd[619]: Error opening log file: /var/log/auth.log: No such file or directory
+
        Starting Kernel Logging Service...
[  OK  ] Started TEE Supplicant.
+
        Starting Network Service...
syslogd[619]: Error opening log file: /var/log/syslog: No such file or directory
+
         Starting Rotate log files...
        Starting OpenSSH Key Generation...
+
[  OK  ] Started Login Service.
syslogd[619]: Error opening log file: /var/log/kern.log: No such file or directory
 
[  OK  ] Started D-Bus System Message Bus.
 
syslogd[619]: Error opening log file: /var/log/mail.log: No such file or directory
 
syslogd[619]: Error opening log file: /var/log/mail.err: No such file or directory
 
[  OK  ] Finished IPv6 Packet Filtering Framework.
 
syslogd[619]: Error opening log file: /var/log/messages: No such file or directory
 
[  OK  ] Finished IPv4 Packet Filtering Framework.
 
[  OK  ] Finished Network Time Service (one-shot ntpdate mode).
 
[  OK  ] Created slice Slice /system/sshd.
 
[  OK  ] Reached target Preparation for Network.
 
         Starting Connection service...
 
[  OK  ] Stopped User Login Management.
 
        Starting Load Kernel Module drm...
 
        Starting Network Configuration...
 
 
[  OK  ] Started Telephony service.
 
[  OK  ] Started Telephony service.
[  OK  ] Finished Load Kernel Module drm.
+
[  OK  ] Started Rotate log files.
[FAILED] Failed to start User Login Management.
+
[ OK  ] Started Network Service.
See 'systemctl status systemd-logind.service' for details.
+
        Starting Network Name Resolution...
[  OK  ] Stopped User Login Management.
+
[  OK  ] Started Kernel Logging Service.
        Starting Load Kernel Module drm...
+
[  OK  ] Started Network Name Resolution.
[  OK  ] Started Connection service.
+
[  OK  ] Reached target Network.
[  OK  ] Finished Load Kernel Module drm.
+
[  OK  ] Reached target Host and Network Name Lookups.
 
         Starting Avahi mDNS/DNS-SD Stack...
 
         Starting Avahi mDNS/DNS-SD Stack...
[FAILED] Failed to start User Login Management.
 
See 'systemctl status systemd-logind.service' for details.
 
[  OK  ] Stopped User Login Management.
 
        Starting Load Kernel Module drm...
 
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
 
[  OK  ] Finished Load Kernel Module drm.
 
[FAILED] Failed to start User Login Management.
 
See 'systemctl status systemd-logind.service' for details.
 
[  OK  ] Stopped User Login Management.
 
        Starting Load Kernel Module drm...
 
        Starting WPA supplicant...
 
[  OK  ] Started Network Configuration.
 
[  OK  ] Finished Load Kernel Module drm.
 
[FAILED] Failed to start Hostname Service.
 
See 'systemctl status systemd-hostnamed.service' for details.
 
[FAILED] Failed to start User Login Management.
 
See 'systemctl status systemd-logind.service' for details.
 
[  OK  ] Started WPA supplicant.
 
[  OK  ] Reached target Network.
 
        Starting containerd container runtime...
 
 
[  OK  ] Started NFS status monitor for NFSv2/3 locking..
 
[  OK  ] Started NFS status monitor for NFSv2/3 locking..
[FAILED] Failed to start Respond to IPv6 Node Information Queries.
 
See 'systemctl status ninfod.service' for details.
 
        Starting /etc/rc.local Compatibility...
 
[FAILED] Failed to start Network Router Discovery Daemon.
 
See 'systemctl status rdisc.service' for details.
 
[  OK  ] Stopped User Login Management.
 
        Starting Load Kernel Module drm...
 
 
         Starting Permit User Sessions...
 
         Starting Permit User Sessions...
[  OK  ] Started /etc/rc.local Compatibility.
+
[  OK  ] Started Target Communication Framework agent.
[  OK  ] Finished Load Kernel Module drm.
+
[  OK  ] Started Xinetd A Powerful Replacement For Inetd.
[  OK  ] Finished Permit User Sessions.
+
[  OK  ] Started Permit User Sessions.
 
[  OK  ] Started Getty on tty1.
 
[  OK  ] Started Getty on tty1.
 
[  OK  ] Started Serial Getty on ttymxc1.
 
[  OK  ] Started Serial Getty on ttymxc1.
 
[  OK  ] Reached target Login Prompts.
 
[  OK  ] Reached target Login Prompts.
[FAILED] Failed to start User Login Management.
+
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
See 'systemctl status systemd-logind.service' for details.
 
        Starting Weston, a Wayland�ositor, as a system service...
 
        Starting User Database Manager...
 
[  OK  ] Started User Database Manager.
 
[  23.260843] audit: type=1006 audit(1651167759.600:2): pid=663 uid=0 old-auid=4294967295 auid=0 tty=tty7 old-ses=4294967295 ses=1 res=1
 
[  23.273829] audit: type=1300 audit(1651167759.600:2): arch=c00000b7 syscall=64 success=yes exit=1 a0=8 a1=ffffe19f4e40 a2=1 a3=ffffab2a5020 items=0 ppid=1 pid=663 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=tty7 ses=1 comm="(weston)" exe="/lib/systemd/systemd" key=(null)
 
[  23.300697] audit: type=1327 audit(1651167759.600:2): proctitle="(weston)"
 
[FAILED] Failed to start Weston, a �mpositor, as a system service.
 
See 'systemctl status weston.service' for details.
 
[  OK  ] Started containerd container runtime.
 
 
[  OK  ] Reached target Multi-User System.
 
[  OK  ] Reached target Multi-User System.
[  OK  ] Reached target Graphical Interface.
+
         Starting Update UTMP about System Runlevel Changes...
         Starting Record Runlevel Change in UTMP...
+
[  OK  ] Started Update UTMP about System Runlevel Changes.
[  OK  ] Finished Record Runlevel Change in UTMP.
 
[  OK  ] Finished OpenSSH Key Generation.
 
[  OK  ] Started OpenSSH Per-Connec�on Daemon (192.168.0.4:54253).
 
  
NXP i.MX Release Distro 5.15-kirkstone desk-mx8mp ttymxc1
+
NXP i.MX Release Distro 5.4-zeus desk-mx8mm ttymxc1
  
desk-mx8mp login: [  26.336871] imx-dwmac 30bf0000.ethernet eth1: Link is Up - 1Gbps/Full - flow control rx/tx
+
desk-mx8mm login:
[  26.345195] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
+
</pre>
  
desk-mx8mp login: root
+
The following message appears from the VM, when the rootfs is mounted:
root@desk-mx8mp:~#
+
<pre>
root@desk-mx8mp:~#
+
dvdk@vagrant:~/nfs_rootfs$ cat /var/log/syslog | tail -n 2
root@desk-mx8mp:~# uname -a
+
Feb 27 11:39:28 vagrant systemd[1]: Started Clean php session files.
Linux desk-mx8mp 5.15.71-desk-mx8m-l-4.0.0 #1 SMP PREEMPT Thu Jul 20 15:30:07 CEST 2023 aarch64 aarch64 aarch64 GNU/Linux
+
Feb 27 11:46:29 vagrant rpc.mountd[12807]: authenticated mount request from 192.168.0.89:863 for /home/dvdk/desk-mx-l/rfs/desk-mx8m-l (/home)
root@desk-mx8mp:~# cat /etc/build
+
</pre>
-----------------------
 
Build Configuration:  |
 
-----------------------
 
DISTRO = fsl-imx-wayland
 
DISTRO_VERSION = 5.15-kirkstone
 
MACHINE = desk-mx8mp
 
IMAGE_BASENAME = desk-image-qt6
 
-----------------------
 
Layer Revisions:      |
 
-----------------------
 
meta              = HEAD:24a3f7b3648185e33133f5d96b184a6cb6524f3d
 
meta-poky        = HEAD:24a3f7b3648185e33133f5d96b184a6cb6524f3d
 
meta-oe          = HEAD:744a4b6eda88b9a9ca1cf0df6e18be384d9054e3
 
meta-multimedia  = HEAD:744a4b6eda88b9a9ca1cf0df6e18be384d9054e3
 
meta-python      = HEAD:744a4b6eda88b9a9ca1cf0df6e18be384d9054e3
 
meta-freescale    = HEAD:c82d4634e7aba8bc0de73ce1dfc997b630051571
 
meta-freescale-3rdparty = HEAD:5977197340c7a7db17fe3e02a4e014ad997565ae
 
meta-freescale-distro = HEAD:d5bbb487b2816dfc74984a78b67f7361ce404253
 
meta-bsp          = HEAD:f3f6777cc016be11084e98c9986f09791c92a63f
 
meta-sdk          = HEAD:f3f6777cc016be11084e98c9986f09791c92a63f
 
meta-ml          = HEAD:f3f6777cc016be11084e98c9986f09791c92a63f
 
meta-clang        = HEAD:c728c3f9168c8a4ed05163a51dd48ca1ad8ac21d
 
meta-virtualization = HEAD:9482648daf0bb42ff3475e7892542cf99f3b8d48
 
meta-nxp-demo-experience = HEAD:52eaf8bf42f8eda2917a1c8c046003c8c2c8f629
 
meta-chromium    = HEAD:e232c2e21b96dc092d9af8bea4b3a528e7a46dd6
 
meta-firefox      = HEAD:e232c2e21b96dc092d9af8bea4b3a528e7a46dd6
 
meta-gnome        = HEAD:744a4b6eda88b9a9ca1cf0df6e18be384d9054e3
 
meta-networking  = HEAD:744a4b6eda88b9a9ca1cf0df6e18be384d9054e3
 
meta-filesystems  = HEAD:744a4b6eda88b9a9ca1cf0df6e18be384d9054e3
 
meta-webserver    = HEAD:744a4b6eda88b9a9ca1cf0df6e18be384d9054e3
 
meta-python2      = HEAD:f02882e2aa9279ca7becca8d0cedbffe88b5a253
 
meta-qt6          = HEAD:ed785a25d12e365d1054700d4fc94a053176eb14
 
meta-dave        = HEAD:4d30d6a017ace629fca7ab4f6466885781c48a54
 
meta-desk-mx      = HEAD:be03001c6015cd7b42444ddcf062e1058b677cae
 
root@desk-mx8mp:~# ls -la /lib/modules/$(uname -r)
 
total 1160
 
drwxr-xr-x  3 541 502  4096 Jul 20  2023 .
 
drwxr-xr-x  4 541 502  4096 Jul 20  2023 ..
 
lrwxrwxrwx  1 541 502    64 Jul 20  2023 build -> /home/jenkins/workspace/workspace/DESK-MX8M-L-4.x.x_Linux-kernel
 
drwxr-xr-x 10 541 502  4096 Jul 20  2023 kernel
 
-rw-r--r--  1 541 502 203921 Jul 20  2023 modules.alias
 
-rw-r--r--  1 541 502 208115 Jul 20  2023 modules.alias.bin
 
-rw-r--r--  1 541 502  36037 Jul 20  2023 modules.builtin
 
-rw-r--r--  1 541 502  70747 Jul 20  2023 modules.builtin.alias.bin
 
-rw-r--r--  1 541 502  39328 Jul 20  2023 modules.builtin.bin
 
-rw-r--r--  1 541 502 229962 Jul 20  2023 modules.builtin.modinfo
 
-rw-r--r--  1 541 502  46720 Jul 20  2023 modules.dep
 
-rw-r--r--  1 541 502  82895 Jul 20  2023 modules.dep.bin
 
-rw-r--r--  1 541 502    146 Jul 20  2023 modules.devname
 
-rw-r--r--  1 541 502  31093 Jul 20  2023 modules.order
 
-rw-r--r--  1 541 502    366 Jul 20  2023 modules.softdep
 
-rw-r--r--  1 541 502  81992 Jul 20  2023 modules.symbols
 
-rw-r--r--  1 541 502 105342 Jul 20  2023 modules.symbols.bin
 
lrwxrwxrwx  1 541 502    64 Jul 20  2023 source -> /home/jenkins/workspace/workspace/DESK-MX8M-L-4.x.x_Linux-kernel
 
root@desk-mx8mp:~# ls -la /lib/modules/$(uname -r)       
 
total 16
 
drwxr-xr-x  4  541  502 4096 Jul 20  2023 .
 
drwxr-xr-x 11 541  502 4096 Jul 20  2023 ..
 
drwxr-xr-x  3  541  502 4096 Jul 20  2023 5.15.71-desk-mx8m-l-4.0.0
 
drwxr-xr-x  4 root root 4096 Mar  9  2018 5.15.71-desk-mx8m-l-4.0.0+g50e18a0c8871
 
root@desk-mx8mp:~# shutdown -h now
 
[  OK  ] Removed slice Slice /system/modprobe.
 
[  OK  ] Removed slice Slice /system/sshd.
 
[  OK  ] Stopped target Graphical Interface.
 
[  OK  ] St        Stopping System Logging Service...
 
        Stopping Load/Save Random Seed...
 
[  OK  ] Stopped OpenSSH Key Generation.
 
[  OK  ] Stopped Job spooling tools.
 
[  OK  ] Stopped Periodic Command Scheduler.
 
[  OK  ] Stopped Linux Firmware Loader Daemon.
 
[  OK  ] Stopped Telephony service.
 
[  OK  ] Stopped System Logging Service.
 
[  OK  ] Stopped Avahi mDNS/DNS-SD Stack.
 
[  OK  ] Stopped NFS status monitor for NFSv2/3 locking..
 
[  OK  ] Stopped containerd container runtime.
 
[  OK  ] Stopped Getty on tty1.
 
[  OK  ] Stopped Serial Getty on ttymxc1.
 
[  OK  ] Stopped Load/Save Random Seed.
 
[  OK  ] Removed slice Slice /system/getty.
 
[  OK  ] Removed slice Slice /system/serial-getty.
 
[  OK  ] Stopped target Host and Network Name Lookups.
 
[  OK  ] Stopped /etc/rc.local Compatibility.
 
        Stopping Permit User Sessions...
 
[  OK  ] Stopped Permit User Sessions.
 
[  OK  ] Stopped target Network.
 
[  OK  ] Stopped target Remote File Systems.
 
        Stopping Connection service...
 
        Stopping Network Configuration...
 
        Stopping WPA supplicant...
 
[  OK  ] Stopped Network Configuration.
 
[   70.399144] imx-dwmac 30bf0000.ethernet eth1: Link is Down
 
[  70.405676] imx-dwmac 30bf0000.ethernet eth1: FPE workqueue stop
 
[  70.415928] imx-dwmac 30bf0000.ethernet eth1: PHY [stmmac-1:07] driver [Microchip KSZ9131 Gigabit PHY] (irq=POLL)
 
[  70.426333] imx-dwmac 30bf0000.ethernet eth1: configuring for phy/rgmii-id link mode
 
[  OK  ] Stopped WPA supplicant.
 
[  OK  ] Stopped Connection service.
 
[  OK  ] Stopped target Preparation for Network.
 
        Stopping D-Bus System Message Bus...
 
[  OK  ] Stopped IPv6 Packet Filtering Framework.
 
[  OK  ] Stopped IPv4 Packet Filtering Framework.
 
[  OK  ] Stopped D-Bus System Message Bus.
 
[  OK  ] Stopped target Basic System.
 
[  OK  ] Stopped target Path Units.
 
[  OK  ] Stopped Dispatch Password �ts to Console Directory Watch.
 
[  OK  ] Stopped Forward Password R�uests to Wall Directory Watch.
 
[  OK  ] Stopped target Slice Units.
 
[  OK  ] Removed slice User and Session Slice.
 
[  OK  ] Stopped target Socket Units.
 
[  OK  ] Closed Avahi mDNS/DNS-SD Stack Activation Socket.
 
[  OK  ] Closed D-Bus System Message Bus Socket.
 
[  OK  ] Closed Docker Socket for the API.
 
[  OK  ] Closed sshd.socket.
 
[  OK  ] Closed Syslog Socket.
 
[  OK  ] Closed Network Service Netlink Socket.
 
[  OK  ] Closed Weston socket.
 
[  OK  ] Stopped target System Initialization.
 
[  OK  ] Stopped Apply Kernel Variables.
 
[  OK  ] Stopped Update is Completed.
 
[  OK  ] Stopped Rebuild Dynamic Linker Cache.
 
[  OK  ] Stopped Rebuild Journal Catalog.
 
        Stopping Record System Boot/Shutdown in UTMP...
 
[  OK  ] Stopped Record System Boot/Shutdown in UTMP.
 
[  OK  ] Stopped Create Volatile Files and Directories.
 
[  OK  ] Stopped target Local File Systems.
 
        Unmounting /run/credentials/systemd-sysusers.service...
 
        Unmounting /run/media/BOOT-mmcblk1p1...
 
        Unmounting /run/media/ROOTFS-mmcblk1p2...
 
        Unmounting /run/media/boot-mmcblk2p1...
 
        Unmounting /run/media/rfs-mmcblk2p2...
 
        Unmounting Temporary Directory /tmp...
 
        Unmounting /var/volatile...
 
[  OK  ] Unmounted /run/credentials/systemd-sysusers.service.
 
[  OK  ] Unmounted /run/media/BOOT-mmcblk1p1.
 
[  OK  ] Unmounted /run/media/ROOTFS-mmcblk1p2.
 
[  OK  ] Unmounted /run/media/boot-mmcblk2p1.
 
[  OK  ] Unmounted /run/media/rfs-mmcblk2p2.
 
[  OK  ] Unmounted Temporary Directory /tmp.
 
[  OK  ] Unmounted /var/volatile.
 
[  OK  ] Stopped target Swaps.
 
[  OK  ] Reached target Unmount All Filesystems.
 
[  OK  ] Stopped File System Check on /dev/mmcblk1p1.
 
[  OK  ] Stopped File System Check on /dev/mmcblk1p2.
 
[  OK  ] Stopped File System Check on /dev/mmcblk2p1.
 
[  OK  ] Stopped File System Check on /dev/mmcblk2p2.
 
[  OK  ] Removed slice Slice /system/systemd-fsck.
 
[  OK  ] Stopped target Preparation for Local File Systems.
 
[  OK  ] Stopped Create Static Device Nodes in /dev.
 
[  OK  ] Stopped Create System Users.
 
[  OK  ] Stopped Remount Root and Kernel File Systems.
 
[  OK  ] Reached target System Shutdown.
 
[  OK  ] Reached target Late Shutdown Services.
 
[  OK  ] Finished System Power Off.
 
[  OK  ] Reached target System Power Off.
 
[  71.611202] systemd-shutdown[1]: Syncing filesystems and block devices.
 
[  71.618037] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
 
[  71.638046] systemd-journald[204]: Received SIGTERM from PID 1 (systemd-shutdow).
 
[  71.646674] audit: type=1335 audit(1651167807.988:3): pid=204 uid=0 auid=4294967295 tty=(none) ses=4294967295 comm="systemd-journal" exe="/lib/systemd/systemd-journald" nl-mcgrp=1 op=disconnect res=1
 
[  71.669846] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
 
[  71.687907] systemd-shutdown[1]: Unmounting file systems.
 
[  71.694224] systemd-shutdown[1]: All filesystems unmounted.
 
[  71.699845] systemd-shutdown[1]: Deactivating swaps.
 
[  71.704888] systemd-shutdown[1]: All swaps deactivated.
 
[  71.710192] systemd-shutdown[1]: Detaching loop devices.
 
[  71.720619] systemd-shutdown[1]: All loop devices detached.
 
[  71.726493] systemd-shutdown[1]: Stopping MD devices.
 
[  71.737915] systemd-shutdown[1]: All MD devices stopped.
 
[  71.743376] systemd-shutdown[1]: Detaching DM devices.
 
[  71.751884] systemd-shutdown[1]: All DM devices detached.
 
[  71.757402] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
 
[  71.859992] systemd-shutdown[1]: Syncing filesystems and block devices.
 
[  71.866731] systemd-shutdown[1]: Powering off.
 
[  71.871211] kvm: exiting hardware virtualization
 
[  71.926560] reboot: Power down
 
  
 
 
</pre>
 
 
----
 
----
  
 
[[Category:ORCA]] [[Category:MITO 8M Mini]]
 
[[Category:ORCA]] [[Category:MITO 8M Mini]]

Revision as of 11:04, 27 February 2023

History
ID# Issue Date Notes

17632

27/02/2023 DESK-MX8M-L-2.0.0 release


Booting from NFS[edit | edit source]

This configuration is very helpful during the software development (both for kernel and applications). The kernel image is downloaded via TFTP while the root file system is remotely mounted via NFS from the host. It is assumed that the development host:

  • is connected with the target host board through an Ethernet LAN
  • exports the directory containing the root file system for the target through the NFS server
  • runs a TFTP server.
  • has a proper subnet IP address

net_nfs configuration[edit | edit source]

DESK-MX8M-L Virtual Machine is properly configured for the TFTP and NFS debug.

In any case, some variables has to be configured on the target and the VM itself has to be configured for respect to the network environment.

Host (Virtual Machine) configuration[edit | edit source]

The DESK-MX8M-L Virtual Machine has the tftp and nfs services already running. Optionally, their configuration has to be changed according to the network configuration where the target is connected to.


200px-Emblem-important.svg.png

The Virtual Machine is created following the procedure at the DVDK Virtual Machine wiki page

Check and properly configure the items the following chapters: network adapter, nfs server

network adapter[edit | edit source]

The network adpater should be configured in bridge mode in order to allow the target to get the files from the VM


Network-bridge.png


XELK VM Network.png


then check or re-configure the Host IP address

dvdk@vagrant:~$ ifconfig 
eth0      Link encap:Ethernet  HWaddr 08:00:27:ed:54:80  
          inet addr:192.168.0.121  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::a00:27ff:feed:5480/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:342143 errors:0 dropped:0 overruns:0 frame:0
          TX packets:267700 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:160784829 (160.7 MB)  TX bytes:214001179 (214.0 MB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:201 errors:0 dropped:0 overruns:0 frame:0
          TX packets:201 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1 
          RX bytes:21929 (21.9 KB)  TX bytes:21929 (21.9 KB)

dvdk@vagrant:~$ 

nfs server[edit | edit source]

The NFS server should exports the correct file system directory (in our example)

dvdk@vagrant:~$ cat /etc/exports 
/home 0.0.0.0/0.0.0.0(rw,async,no_root_squash,no_subtree_check,crossmnt)
dvdk@vagrant:~$ 

otherwise, change its configuration and then restart the nfs server:

dvdk@vagrant:~$ sudo /etc/init.d/nfs-kernel-server restart
[sudo] password for dvdk: 
 * Stopping NFS kernel daemon                                                                                                                                                                                                         [ OK ] 
 * Unexporting directories for NFS kernel daemon...                                                                                                                                                                                   [ OK ] 
 * Exporting directories for NFS kernel daemon...                                                                                                                                                                                     [ OK ] 
 * Starting NFS kernel daemon                                                                                                                                                                                                         [ OK ] 
dvdk@vagrant:~$ 

Installing the root file system[edit | edit source]

Using the DESK-MX6-L Virtual Machine it is required to extracting the rfs in the exported file system:

  • download the fsl-imx-wayland-glibc-x86_64-meta-toolchain-aarch64-desk-mx8mp-toolchain-5.4-zeus.sh from the mirror server
dvdk@vagrant:~/desk-mx-l/rfs$ wget https://mirror.dave.eu/desk-mx-l/desk-mx8m-l-2.0.0/dave-image-devel-desk-mx8mp.tar.bz2
dvdk@vagrant:~/desk-mx-l/rfs$ 

extracting the archive (with root permissions!!) and create the symbolic link:

mkdir /home/dvdk/desk-mx-l/rfs/desk-mx8m-l-2.0.0
sudo tar jxpf dave-image-devel-desk-mx8mp.tar.bz2 -C /home/dvdk/desk-mx-l/rfs/desk-mx8m-l-2.0.0/
ln -s /home/dvdk/desk-mx-l/rfs/desk-mx8m-l-2.0.0 /home/dvdk/desk-mx-l/rfs/desk-mx8m-l

Then, the rfs directory appears like this:

dvdk@vagrant:~/desk-mx-l/rfs$ ls -la
total 725876
drwxr-xr-x  4 dvdk dvdk      4096 Feb 15 12:37 .
drwxr-xr-x  7 dvdk dvdk      4096 Feb 15 11:50 ..
lrwxrwxrwx  1 root root        41 Apr  9  2021 desk-mx6-l -> /home/dvdk/desk-mx-l/rfs/desk-mx6-l-1.0.0
drwxr-xr-x 19  541  502      4096 Jan 25  2021 desk-mx6-l-1.0.0
lrwxrwxrwx  1 dvdk dvdk        46 Feb 15 12:37 desk-mx8m-l -> /home/dvdk/desk-mx-l/rfs/desk-mx8m-l-2.0.0
drwxrwxr-x  8 dvdk dvdk      4096 Feb 15 12:36 desk-mx8m-l-2.0.0
dvdk@vagrant:~/desk-mx-l/rfs$ 

Target configuration[edit | edit source]

The IP address for server and target should be configured: an example (for a network subnet 192.168.0.x)

=> setenv serverip 192.168.0.125
=> setenv ipaddr 192.168.0.89
=> setenv gatewayip '192.168.0.254'
=> setenv netmask '255.255.255.0'
=> setenv netdev 'eth0'
  • serverip is the IP address of the host machine running the tftp/nfs server
  • ipaddr is the IP address of the target
  • gatewayip is the gateway address of the target
  • netmask is the netmask address of the target
  • netdev is the name of ethernet interface of the target

For using the DVDK Virtual Machine, a static IP address configuration has been selected, to the U-Boot variable ip_dyn has to be set to no:

=> setenv ip_dyn no

The kernel and device tree files have to be selected

 setenv bootfile /tftpboot/desk-mx-l/Image

ORCA has its dtb file imx8mp-mito8mplus-cb1001.dtb

setenv fdt_file /tftpboot/desk-mx-l/imx8mp-mito8mplus-cb1001.dtb

while MITO 8M Mini has its own dtb file imx8mm-mito8mmini.dtb

setenv fdt_file /tftpboot/desk-mx-l/imx8mm-mito8mmini.dtb

finally, the root file system directory on the Virtual Machine should be configured to let the kernel find the INIT

setenv nfsroot /home/dvdk/desk-mx-l/rfs/desk-mx8m-l

To run this configuration just issue the netboot command which firstly downloads the kernel and device tree using the tftp protocol

 => print netboot
netboot=echo Booting from net ...; run netargs;  if test ${ip_dyn} = yes; then setenv get_cmd dhcp; else setenv get_cmd tftp; fi; ${get_cmd} ${loadaddr} ${image}; if test ${boot_fit} = yes || test ${boot_fit} = try; then bootm ${loadaddr}; else if ${get_cmd} ${fdt_addr} ${fdt_file}; then booti ${loadaddr} - ${fdt_addr}; else echo WARN: Cannot load the DT; fi; fi;

Here below the complete bootlog from nfs:

u-boot=> run netboot
Booting from net ...
Using ethernet@30be0000 device
TFTP from server 192.168.0.125; our IP address is 192.168.0.89
Filename 'desk-mx8m/linux/desk-mx8m-l-2.0.0_Image'.
Load address: 0x40480000
Loading: #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         ####################################################
         2.4 MiB/s
done
Bytes transferred = 28219904 (1ae9a00 hex)
Using ethernet@30be0000 device
TFTP from server 192.168.0.125; our IP address is 192.168.0.89
Filename 'desk-mx8m/linux/desk-mx8m-l-2.0.0_imx8mm-mito8mmini.dtb'.
Load address: 0x43000000
Loading: #########
         1.6 MiB/s
done
Bytes transferred = 41062 (a066 hex)
## Flattened Device Tree blob at 43000000
   Booting using the fdt blob at 0x43000000
   Using Device Tree in place at 0000000043000000, end 000000004300d065

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 5.4.70-desk-mx8m-l-2.0.0 (jenkins@xenialbakery) (gcc version 9.2.0 (GCC)) #1 SMP PREEMPT Wed Feb 8 15:40:22 CET 2023
[    0.000000] Machine model: DAVE i.MX8MM MITO8MMINI board
[    0.000000] efi: Getting EFI parameters from FDT:
[    0.000000] efi: UEFI not found.
[    0.000000] Reserved memory: created CMA memory pool at 0x0000000078000000, size 640 MiB
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000040000000-0x00000000bfffffff]
[    0.000000] NUMA: NODE_DATA [mem 0xbfbd2500-0xbfbd3fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA32    [mem 0x0000000040000000-0x00000000bfffffff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000040000000-0x00000000b7ffffff]
[    0.000000]   node   0: [mem 0x00000000b8400000-0x00000000bfffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x00000000bfffffff]
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 24 pages/cpu s58904 r8192 d31208 u98304
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] Speculative Store Bypass Disable mitigation not required
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 515072
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: console=ttymxc1,115200 root=/dev/nfs ip=192.168.0.89 nfsroot=192.168.0.125:/home/dvdk/desk-mx-l/rfs/desk-mx8m-l,v3,tcp
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 1368548K/2093056K available (16764K kernel code, 1254K rwdata, 6620K rodata, 2880K init, 1015K bss, 69148K reserved, 655360K 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 restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    0.000000]  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: 128 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: no VLPI support, no direct LPI support
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000038880000
[    0.000000] ITS: No ITS available, not enabling LPIs
[    0.000000] random: get_random_bytes called from start_kernel+0x2b8/0x44c with crng_init=0
[    0.000000] arch_timer: cp15 timer(s) running at 8.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1d854df40, max_idle_ns: 440795202120 ns
[    0.000003] sched_clock: 56 bits at 8MHz, resolution 125ns, wraps every 2199023255500ns
[    0.000369] Console: colour dummy device 80x25
[    0.000432] Calibrating delay loop (skipped), value calculated using timer frequency.. 16.00 BogoMIPS (lpj=32000)
[    0.000441] pid_max: default: 32768 minimum: 301
[    0.000514] LSM: Security Framework initializing
[    0.000569] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.000580] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.001718] ASID allocator initialised with 32768 entries
[    0.001785] rcu: Hierarchical SRCU implementation.
[    0.002653] EFI services will not be available.
[    0.002808] smp: Bringing up secondary CPUs ...
[    0.003162] Detected VIPT I-cache on CPU1
[    0.003186] GICv3: CPU1: found redistributor 1 region 0:0x00000000388a0000
[    0.003217] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.003602] Detected VIPT I-cache on CPU2
[    0.003618] GICv3: CPU2: found redistributor 2 region 0:0x00000000388c0000
[    0.003635] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.004041] Detected VIPT I-cache on CPU3
[    0.004055] GICv3: CPU3: found redistributor 3 region 0:0x00000000388e0000
[    0.004073] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.004125] smp: Brought up 1 node, 4 CPUs
[    0.004134] SMP: Total of 4 processors activated.
[    0.004139] CPU features: detected: 32-bit EL0 Support
[    0.004145] CPU features: detected: CRC32 instructions
[    0.010710] CPU: All CPU(s) started at EL2
[    0.010730] alternatives: patching kernel code
[    0.012157] devtmpfs: initialized
[    0.018166] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.018184] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.034322] pinctrl core: initialized pinctrl subsystem
[    0.035023] DMI not present or invalid.
[    0.035279] NET: Registered protocol family 16
[    0.042061] DMA: preallocated 256 KiB pool for atomic allocations
[    0.042091] audit: initializing netlink subsys (disabled)
[    0.042358] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1
[    0.043200] cpuidle: using governor menu
[    0.043636] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.044426] Serial: AMBA PL011 UART driver
[    0.044489] imx mu driver is registered.
[    0.044510] imx rpmsg driver is registered.
[    0.049801] imx8mm-pinctrl 30330000.pinctrl: initialized IMX pinctrl driver
[    0.072571] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.072582] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.072590] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.072597] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.073460] cryptd: max_cpu_qlen set to 1000
[    0.076520] ACPI: Interpreter disabled.
[    0.077681] iommu: Default domain type: Translated
[    0.077826] vgaarb: loaded
[    0.078117] SCSI subsystem initialized
[    0.078468] usbcore: registered new interface driver usbfs
[    0.078502] usbcore: registered new interface driver hub
[    0.078552] usbcore: registered new device driver usb
[    0.079689] mc: Linux media interface: v0.10
[    0.079718] videodev: Linux video capture interface: v2.00
[    0.079808] pps_core: LinuxPPS API ver. 1 registered
[    0.079814] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.079832] PTP clock support registered
[    0.079972] EDAC MC: Ver: 3.0.0
[    0.080765] No BMan portals available!
[    0.080982] QMan: Allocated lookup table at (____ptrval____), entry count 65537
[    0.081228] No QMan portals available!
[    0.081592] No USDPAA memory, no 'fsl,usdpaa-mem' in device-tree
[    0.082008] FPGA manager framework
[    0.082097] Advanced Linux Sound Architecture Driver Initialized.
[    0.082489] Bluetooth: Core ver 2.22
[    0.082517] NET: Registered protocol family 31
[    0.082522] Bluetooth: HCI device and connection manager initialized
[    0.082531] Bluetooth: HCI socket layer initialized
[    0.082537] Bluetooth: L2CAP socket layer initialized
[    0.082549] Bluetooth: SCO socket layer initialized
[    0.083225] clocksource: Switched to clocksource arch_sys_counter
[    0.083390] VFS: Disk quotas dquot_6.6.0
[    0.083435] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.083589] pnp: PnP ACPI: disabled
[    0.089056] thermal_sys: Registered thermal governor 'step_wise'
[    0.089060] thermal_sys: Registered thermal governor 'power_allocator'
[    0.089389] NET: Registered protocol family 2
[    0.089704] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    0.089734] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.089842] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.090066] TCP: Hash tables configured (established 16384 bind 16384)
[    0.090144] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.090185] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.090332] NET: Registered protocol family 1
[    0.090655] RPC: Registered named UNIX socket transport module.
[    0.090661] RPC: Registered udp transport module.
[    0.090667] RPC: Registered tcp transport module.
[    0.090670] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.091034] PCI: CLS 0 bytes, default 64
[    0.091727] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    0.092094] kvm [1]: IPA Size Limit: 40bits
[    0.092692] kvm [1]: GICv3: no GICV resource entry
[    0.092697] kvm [1]: disabling GICv2 emulation
[    0.092714] kvm [1]: GIC system register CPU interface enabled
[    0.092775] kvm [1]: vgic interrupt IRQ1
[    0.092866] kvm [1]: Hyp mode initialized successfully
[    0.095844] Initialise system trusted keyrings
[    0.095958] workingset: timestamp_bits=44 max_order=19 bucket_order=0
[    0.102081] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.102732] NFS: Registering the id_resolver key type
[    0.102756] Key type id_resolver registered
[    0.102760] Key type id_legacy registered
[    0.102770] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.102788] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    0.103152] 9p: Installing v9fs 9p2000 file system support
[    0.116490] Key type asymmetric registered
[    0.116497] Asymmetric key parser 'x509' registered
[    0.116525] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    0.116531] io scheduler mq-deadline registered
[    0.116536] io scheduler kyber registered
[    0.121732] EINJ: ACPI disabled.
[    0.130488] imx-sdma 302c0000.dma-controller: Direct firmware load for imx/sdma/sdma-imx7d.bin failed with error -2
[    0.130503] imx-sdma 302c0000.dma-controller: Falling back to sysfs fallback for: imx/sdma/sdma-imx7d.bin
[    0.138599] mxs-dma 33000000.dma-controller: initialized
[    0.139836] Bus freq driver module loaded
[    0.145167] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.147313] 30860000.serial: ttymxc0 at MMIO 0x30860000 (irq = 32, base_baud = 5000000) is a IMX
[    0.147641] imx8mm-pinctrl 30330000.pinctrl: pin MX8MM_IOMUXC_UART3_RXD already requested by 30860000.serial; cannot claim for 30880000.serial
[    0.147650] imx8mm-pinctrl 30330000.pinctrl: pin-145 (30880000.serial) status -22
[    0.147657] imx8mm-pinctrl 30330000.pinctrl: could not request pin 145 (MX8MM_IOMUXC_UART3_RXD) from group uart3grp  on device 30330000.pinctrl
[    0.147666] imx-uart 30880000.serial: Error applying setting, reverse things back
[    0.147679] imx-uart: probe of 30880000.serial failed with error -22
[    0.147856] 30890000.serial: ttymxc1 at MMIO 0x30890000 (irq = 34, base_baud = 1500000) is a IMX
[    1.178433] printk: console [ttymxc1] enabled
[    1.188043] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    1.194676] [drm] No driver support for vblank timestamp query.
[    1.200671] imx-drm soc@0:bus@32c00000:display-subsystem: bound imx-lcdif-crtc.0 (ops lcdif_crtc_ops)
[    1.210086] [drm] Initialized imx-drm 1.0.0 20120507 for soc@0:bus@32c00000:display-subsystem on minor 0
[    1.229513] loop: module loaded
[    1.234796] imx ahci driver is registered.
[    2.271254] gpmi-nand 33002000.nand-controller: DMA timeout, last DMA
[    2.277711] gpmi-nand 33002000.nand-controller: Show GPMI registers :
[    2.284165] gpmi-nand 33002000.nand-controller: offset 0x000 : 0x03800000
[    2.290962] gpmi-nand 33002000.nand-controller: offset 0x010 : 0x00000000
[    2.297758] gpmi-nand 33002000.nand-controller: offset 0x020 : 0x00000000
[    2.304554] gpmi-nand 33002000.nand-controller: offset 0x030 : 0x00000000
[    2.311350] gpmi-nand 33002000.nand-controller: offset 0x040 : 0x00000000
[    2.318145] gpmi-nand 33002000.nand-controller: offset 0x050 : 0x00000000
[    2.324941] gpmi-nand 33002000.nand-controller: offset 0x060 : 0x010c000c
[    2.331738] gpmi-nand 33002000.nand-controller: offset 0x070 : 0x00020101
[    2.338532] gpmi-nand 33002000.nand-controller: offset 0x080 : 0x50000000
[    2.345328] gpmi-nand 33002000.nand-controller: offset 0x090 : 0x23023336
[    2.352123] gpmi-nand 33002000.nand-controller: offset 0x0a0 : 0x000000ff
[    2.358919] gpmi-nand 33002000.nand-controller: offset 0x0b0 : 0xfe000005
[    2.365715] gpmi-nand 33002000.nand-controller: offset 0x0c0 : 0x00000100
[    2.372510] gpmi-nand 33002000.nand-controller: offset 0x0d0 : 0x05020000
[    2.379305] gpmi-nand 33002000.nand-controller: Show BCH registers :
[    2.385666] gpmi-nand 33002000.nand-controller: offset 0x000 : 0x00000000
[    2.392460] gpmi-nand 33002000.nand-controller: offset 0x010 : 0x00000010
[    2.399256] gpmi-nand 33002000.nand-controller: offset 0x020 : 0x00000000
[    2.406054] gpmi-nand 33002000.nand-controller: offset 0x030 : 0x00000000
[    2.412848] gpmi-nand 33002000.nand-controller: offset 0x040 : 0x00000000
[    2.419645] gpmi-nand 33002000.nand-controller: offset 0x050 : 0x00000000
[    2.426441] gpmi-nand 33002000.nand-controller: offset 0x060 : 0x00000000
[    2.433238] gpmi-nand 33002000.nand-controller: offset 0x070 : 0xe4e4e4e4
[    2.440034] gpmi-nand 33002000.nand-controller: offset 0x080 : 0x070a4080
[    2.446830] gpmi-nand 33002000.nand-controller: offset 0x090 : 0x10da4080
[    2.453626] gpmi-nand 33002000.nand-controller: offset 0x0a0 : 0x070a4080
[    2.460421] gpmi-nand 33002000.nand-controller: offset 0x0b0 : 0x10da4080
[    2.467224] gpmi-nand 33002000.nand-controller: offset 0x0c0 : 0x070a4080
[    2.474019] gpmi-nand 33002000.nand-controller: offset 0x0d0 : 0x10da4080
[    2.480815] gpmi-nand 33002000.nand-controller: offset 0x0e0 : 0x070a4080
[    2.487611] gpmi-nand 33002000.nand-controller: offset 0x0f0 : 0x10da4080
[    2.494406] gpmi-nand 33002000.nand-controller: offset 0x100 : 0x00000000
[    2.501202] gpmi-nand 33002000.nand-controller: offset 0x110 : 0x00000000
[    2.507998] gpmi-nand 33002000.nand-controller: offset 0x120 : 0x00000000
[    2.514794] gpmi-nand 33002000.nand-controller: offset 0x130 : 0x00000000
[    2.521590] gpmi-nand 33002000.nand-controller: offset 0x140 : 0x00000000
[    2.528389] gpmi-nand 33002000.nand-controller: offset 0x150 : 0x20484342
[    2.535185] gpmi-nand 33002000.nand-controller: offset 0x160 : 0x01010000
[    2.541981] gpmi-nand 33002000.nand-controller: offset 0x170 : 0x00000000
[    2.548781] gpmi-nand 33002000.nand-controller: BCH Geometry :
[    2.548781] GF length              : 0
[    2.548781] ECC Strength           : 0
[    2.548781] Page Size in Bytes     : 0
[    2.548781] Metadata Size in Bytes : 0
[    2.548781] ECC Chunk0 Size in Bytes: 0
[    2.548781] ECC Chunkn Size in Bytes: 0
[    2.548781] ECC Chunk Count        : 0
[    2.548781] Payload Size in Bytes  : 1024
[    2.548781] Auxiliary Size in Bytes: 128
[    2.548781] Auxiliary Status Offset: 0
[    2.548781] Block Mark Byte Offset : 0
[    2.548781] Block Mark Bit Offset  : 0
[    2.600025] nand: No NAND device found
[    2.603850] gpmi-nand: probe of 33002000.nand-controller failed with error -110
[    2.613234] libphy: Fixed MDIO Bus: probed
[    2.618149] tun: Universal TUN/TAP device driver, 1.6
[    2.623384] CAN device driver interface
[    2.628304] thunder_xcv, ver 1.0
[    2.631573] thunder_bgx, ver 1.0
[    2.634830] nicpf, ver 1.0
[    2.638373] pps pps0: new PPS source ptp0
[    2.647608] Freescale FM module, FMD API version 21.1.0
[    2.653094] Freescale FM Ports module
[    2.656763] fsl_mac: fsl_mac: FSL FMan MAC API based driver
[    2.662490] fsl_dpa: FSL DPAA Ethernet driver
[    2.666990] fsl_advanced: FSL DPAA Advanced drivers:
[    2.671966] fsl_proxy: FSL DPAA Proxy initialization driver
[    2.677645] fsl_oh: FSL FMan Offline Parsing port driver
[    2.683853] hclge is initializing
[    2.687171] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[    2.694404] hns3: Copyright (c) 2017 Huawei Corporation.
[    2.699762] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    2.706816] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    2.712599] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    2.718435] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    2.724393] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.6.0-k
[    2.731361] igb: Copyright (c) 2007-2014 Intel Corporation.
[    2.736972] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    2.744807] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    2.750880] sky2: driver version 1.30
[    2.755481] VFIO - User Level meta-driver version: 0.3
[    2.762493] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.769042] ehci-pci: EHCI PCI platform driver
[    2.773525] ehci-platform: EHCI generic platform driver
[    2.778939] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.785176] ohci-pci: OHCI PCI platform driver
[    2.789666] ohci-platform: OHCI generic platform driver
[    2.795594] usbcore: registered new interface driver uas
[    2.800959] usbcore: registered new interface driver usb-storage
[    2.807038] usbcore: registered new interface driver usbserial_generic
[    2.813588] usbserial: USB Serial support registered for generic
[    2.819624] usbcore: registered new interface driver ftdi_sio
[    2.825392] usbserial: USB Serial support registered for FTDI USB Serial Device
[    2.832737] usbcore: registered new interface driver usb_serial_simple
[    2.839285] usbserial: USB Serial support registered for carelink
[    2.845398] usbserial: USB Serial support registered for zio
[    2.851078] usbserial: USB Serial support registered for funsoft
[    2.857106] usbserial: USB Serial support registered for flashloader
[    2.863482] usbserial: USB Serial support registered for google
[    2.869421] usbserial: USB Serial support registered for libtransistor
[    2.875968] usbserial: USB Serial support registered for vivopay
[    2.881995] usbserial: USB Serial support registered for moto_modem
[    2.888285] usbserial: USB Serial support registered for motorola_tetra
[    2.894925] usbserial: USB Serial support registered for novatel_gps
[    2.901300] usbserial: USB Serial support registered for hp4x
[    2.907071] usbserial: USB Serial support registered for suunto
[    2.913013] usbserial: USB Serial support registered for siemens_mpi
[    2.919404] usbcore: registered new interface driver usb_ehset_test
[    2.927405] imx_usb 32e50000.usb: No over current polarity defined
[    2.936287] snvs_rtc 30370000.snvs:snvs-rtc-lp: registered as rtc0
[    2.942577] i2c /dev entries driver
[    2.946741] mx6s-csi 32e20000.csi1_bridge: initialising
[    2.952504] mxc_mipi-csi 32e30000.mipi_csi: 32e30000.mipi_csi supply mipi-phy not found, using dummy regulator
[    2.962694] mxc_mipi-csi 32e30000.mipi_csi: mipi csi v4l2 device registered
[    2.969669] CSI: Registered sensor subdevice: mxc_mipi-csi.0
[    2.975355] mxc_mipi-csi 32e30000.mipi_csi: lanes: 2, hs_settle: 13, clk_settle: 2, wclk: 1, freq: 333000000
[    2.985462] Driver for 1-wire Dallas network protocol.
[    2.994643] imx2-wdt 30280000.watchdog: timeout 60 sec (nowayout=0)
[    3.001224] Bluetooth: HCI UART driver ver 2.3
[    3.005685] Bluetooth: HCI UART protocol H4 registered
[    3.010833] Bluetooth: HCI UART protocol BCSP registered
[    3.016169] Bluetooth: HCI UART protocol LL registered
[    3.021314] Bluetooth: HCI UART protocol ATH3K registered
[    3.026738] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    3.033101] Bluetooth: HCI UART protocol Broadcom registered
[    3.038785] Bluetooth: HCI UART protocol QCA registered
[    3.045971] sdhci: Secure Digital Host Controller Interface driver
[    3.052167] sdhci: Copyright(c) Pierre Ossman
[    3.056724] Synopsys Designware Multimedia Card Interface Driver
[    3.063347] sdhci-pltfm: SDHCI platform and OF driver helper
[    3.069857] mmc0: CQHCI version 5.10
[    3.105013] mmc0: SDHCI controller on 30b40000.mmc [30b40000.mmc] using ADMA
[    3.112380] mmc1: CQHCI version 5.10
[    3.118688] ledtrig-cpu: registered to indicate activity on CPUs
[    3.125997] caam 30900000.crypto: device ID = 0x0a16040100000000 (Era 9)
[    3.132723] caam 30900000.crypto: job rings = 3, qi = 0
[    3.151907] caam algorithms registered in /proc/crypto
[    3.157844] caam 30900000.crypto: caam pkc algorithms registered in /proc/crypto
[    3.165262] caam 30900000.crypto: registering rng-caam
[    3.170959] Device caam-keygen registered
[    3.180289] caam-snvs 30370000.caam-snvs: violation handlers armed - non-secure state
[    3.188806] usbcore: registered new interface driver usbhid
[    3.194404] usbhid: USB HID core driver
[    3.199760] No fsl,qman node
[    3.202664] Freescale USDPAA process driver
[    3.206868] fsl-usdpaa: no region found
[    3.210762] Freescale USDPAA process IRQ driver
[    3.220347] galcore: clk_get vg clock failed, disable vg!
[    3.226067] Galcore version 6.4.3.p1.305572
[    3.232835] random: fast init done
[    3.249814] mmc0: Command Queue Engine enabled
[    3.254302] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    3.257350] random: crng init done
[    3.262356] mmcblk0: mmc0:0001 DG4008 7.28 GiB
[    3.268839] mmcblk0boot0: mmc0:0001 DG4008 partition 1 4.00 MiB
[    3.274963] mmcblk0boot1: mmc0:0001 DG4008 partition 2 4.00 MiB
[    3.281616] mmcblk0rpmb: mmc0:0001 DG4008 partition 3 4.00 MiB, chardev (237:0)
[    3.296565] [drm] Initialized vivante 1.0.0 20170808 for 38000000.gpu on minor 1
[    3.305724] hantrodec 0 : module inserted. Major = 236
[    3.311449] hantrodec 1 : module inserted. Major = 236
[    3.317379] hx280enc: module inserted. Major <235>
[    3.332940] fsl-sai 30020000.sai: failed to get mclk0 clock: -2
[    3.338882] fsl-sai 30020000.sai: failed to get mclk1 clock: -2
[    3.344826] fsl-sai 30020000.sai: failed to get mclk2 clock: -2
[    3.350756] fsl-sai 30020000.sai: failed to get mclk3 clock: -2
[    3.389416] pktgen: Packet Generator for packet performance testing. Version: 2.75
[    3.401850] NET: Registered protocol family 26
[    3.406907] NET: Registered protocol family 10
[    3.412005] Segment Routing with IPv6
[    3.415734] NET: Registered protocol family 17
[    3.420218] can: controller area network core (rev 20170425 abi 9)
[    3.426445] NET: Registered protocol family 29
[    3.430911] can: raw protocol (rev 20170425)
[    3.435190] can: broadcast manager protocol (rev 20170425 t)
[    3.440860] can: netlink gateway (rev 20190810) max_hops=1
[    3.447441] Bluetooth: RFCOMM TTY layer initialized
[    3.452342] Bluetooth: RFCOMM socket layer initialized
[    3.457511] Bluetooth: RFCOMM ver 1.11
[    3.461272] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.466589] Bluetooth: BNEP filters: protocol multicast
[    3.471825] Bluetooth: BNEP socket layer initialized
[    3.476796] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    3.482725] Bluetooth: HIDP socket layer initialized
[    3.487725] 8021q: 802.1Q VLAN Support v1.8
[    3.491928] lib80211: common routines for IEEE802.11 drivers
[    3.497707] 9pnet: Installing 9P2000 support
[    3.502008] tsn generic netlink module v1 init...
[    3.506796] Key type dns_resolver registered
[    3.512016] registered taskstats version 1
[    3.516126] Loading compiled-in X.509 certificates
[    3.542409] usb_phy_generic usbphynop1: usbphynop1 supply vcc not found, using dummy regulator
[    3.551252] usb_phy_generic usbphynop2: usbphynop2 supply vcc not found, using dummy regulator
[    3.571639] pf8x00-regulator 0-0008: PF8121A: Full layer: 3, Metal layer: 1, prog_id=0x5001
[    3.580010] pf8x00-regulator 0-0008: PF8121A found.
[    3.657114] pf8x00-regulator 0-0008: reg(0xa4) not found for 0x5001
[    3.663475] i2c i2c-0: IMX I2C adapter registered
[    3.670012] i2c i2c-1: IMX I2C adapter registered
[    3.676140] ov5640_mipi 2-003c: No pin available
[    3.680802] ov5640_mipi 2-003c: No sensor pwdn pin available
[    3.686481] ov5640_mipi 2-003c: No sensor reset pin available
[    3.692270] ov5640_mipi 2-003c: 2-003c supply DOVDD not found, using dummy regulator
[    3.700077] ov5640_mipi 2-003c: 2-003c supply DVDD not found, using dummy regulator
[    3.707796] ov5640_mipi 2-003c: 2-003c supply AVDD not found, using dummy regulator
[    3.716477] ov5640_mipi 2-003c: Read reg error: reg=300a
[    3.721805] ov5640_mipi 2-003c: Camera is not found
[    3.726852] i2c i2c-2: IMX I2C adapter registered
[    3.733400] imx6q-pcie 33800000.pcie: 33800000.pcie supply epdev_on not found, using dummy regulator
[    3.733993] pps pps0: new PPS source ptp0
[    3.742811] imx6q-pcie 33800000.pcie: PLL REF_CLK is used!.
[    3.757976] libphy: fec_enet_mii_bus: probed
[    3.766619] fec 30be0000.ethernet eth0: registered PHC device 0
[    3.773382] imx_usb 32e40000.usb: 32e40000.usb supply vbus not found, using dummy regulator
[    3.783588] imx6q-pcie 33800000.pcie: PCIe PLL locked after 20 us.
[    3.786161] imx_usb 32e50000.usb: No over current polarity defined
[    3.789839] imx6q-pcie 33800000.pcie: host bridge /soc@0/pcie@33800000 ranges:
[    3.798888] ci_hdrc ci_hdrc.1: EHCI Host Controller
[    3.803238] imx6q-pcie 33800000.pcie:    IO 0x1ff80000..0x1ff8ffff -> 0x00000000
[    3.808103] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 1
[    3.815497] imx6q-pcie 33800000.pcie:   MEM 0x18000000..0x1fefffff -> 0x18000000
[    3.839238] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00
[    3.845468] hub 1-0:1.0: USB hub found
[    3.849250] hub 1-0:1.0: 1 port detected
[    3.854952] imx-cpufreq-dt imx-cpufreq-dt: cpu speed grade 2 mkt segment 2 supported-hw 0x4 0x4
[    3.867484] mmc1: CQHCI version 5.10
[    3.871102] sdhci-esdhc-imx 30b50000.mmc: Got CD GPIO
[    3.908929] mmc1: SDHCI controller on 30b50000.mmc [30b50000.mmc] using ADMA
[    3.917224] debugfs: Directory '30020000.sai' with parent 'SBCX_TLV320' already present!
[    3.925445] asoc-simple-card sound: tlv320aic31xx-hifi <-> 30020000.sai mapping ok
[    3.933044] asoc-simple-card sound: ASoC: no DMI vendor name!
[    3.964064] snvs_rtc 30370000.snvs:snvs-rtc-lp: setting system clock to 2023-02-27T10:24:32 UTC (1677493472)
[    3.982577] mmc1: host does not support reading read-only switch, assuming write-enable
[    3.992852] mmc1: new high speed SDHC card at address 0001
[    3.998899] mmcblk1: mmc1:0001 SD32G 29.5 GiB
[    4.005589]  mmcblk1: p1 p2
[    4.060371] Micrel KSZ9031 Gigabit PHY 30be0000.ethernet-1:07: attached PHY driver [Micrel KSZ9031 Gigabit PHY] (mii_bus:phy_addr=30be0000.ethernet-1:07, irq=POLL)
[    4.833629] imx6q-pcie 33800000.pcie: Phy link never came up
[    4.839353] imx6q-pcie 33800000.pcie: failed to initialize host
[    4.845279] imx6q-pcie 33800000.pcie: unable to add pcie port.
[    9.186342] fec 30be0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off
[    9.193953] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[    9.211514] IP-Config: Guessing netmask 255.255.255.0
[    9.216597] IP-Config: Complete:
[    9.219853]      device=eth0, hwaddr=36:ab:ed:3f:ab:7e, ipaddr=192.168.0.89, mask=255.255.255.0, gw=255.255.255.255
[    9.230306]      host=192.168.0.89, domain=, nis-domain=(none)
[    9.236151]      bootserver=255.255.255.255, rootserver=192.168.0.125, rootpath=
[    9.243592] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    9.254449] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    9.261074] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    9.267592] ALSA device list:
[    9.269704] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db
[    9.272685]   #0: SBCX_TLV320
[    9.310240] VFS: Mounted root (nfs filesystem) readonly on device 0:22.
[    9.318649] devtmpfs: mounted
[    9.322519] Freeing unused kernel memory: 2880K
[    9.331558] Run /sbin/init as init process
[    9.915182] systemd[1]: systemd 243.2+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
[    9.937166] systemd[1]: Detected architecture arm64.

Welcome to NXP i.MX Release Distro 5.4-zeus (zeus)!

[   10.021031] systemd[1]: Set hostname to <desk-mx8mm>.
[   11.105003] systemd[1]: /lib/systemd/system/dbus.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/dbus/system_bus_socket → /run/dbus/system_bus_socket; please update the unit file accordingly.
[   11.165610] systemd[1]: /lib/systemd/system/syslogd.service:8: PIDFile= references a path below legacy directory /var/run/, updating /var/run/syslogd.pid → /run/syslogd.pid; please update the unit file accordingly.
[   11.243642] systemd[1]: /lib/systemd/system/rpcbind.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/rpcbind.sock → /run/rpcbind.sock; please update the unit file accordingly.
[   11.286125] systemd[1]: /lib/systemd/system/klogd.service:8: PIDFile= references a path below legacy directory /var/run/, updating /var/run/klogd.pid → /run/klogd.pid; please update the unit file accordingly.
[   11.848815] systemd[1]: system-getty.slice: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
[   11.861274] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
[   11.871753] systemd[1]: Created slice system-getty.slice.
[  OK  ] Created slice system-getty.slice.
[  OK  ] Created slice system-serial\x2dgetty.slice.
[  OK  ] Created slice User and Session Slice.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[  OK  ] Reached target Paths.
[  OK  ] Reached target Remote File Systems.
[  OK  ] Reached target Slices.
[  OK  ] Reached target Swap.
[  OK  ] Listening on Syslog Socket.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on Journal Audit Socket.
[  OK  ] Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[  OK  ] Listening on udev Control Socket.
[  OK  ] Listening on udev Kernel Socket.
         Mounting Huge Pages File System...
         Mounting POSIX Message Queue File System...
         Mounting Kernel Debug File System...
         Mounting Temporary Directory (/tmp)...
         Starting File System Check on Root Device...
         Starting Journal Service...
         Mounting Kernel Configuration File System...
         Starting Apply Kernel Variables...
         Starting udev Coldplug all Devices...
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Mounted Temporary Directory (/tmp).
[  OK  ] Started Journal Service.
[  OK  ] Started File System Check on Root Device.
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Started Apply Kernel Variables.
         Starting Remount Root and Kernel File Systems...
[  OK  ] Started Remount Root and Kernel File Systems.
         Starting Flush Journal to Persistent Storage...
         Starting Create Static Device Nodes in /dev...
[   12.644713] systemd-journald[250]: Received client request to flush runtime journal.
[  OK  ] Started Flush Journal to Persistent Storage.
[  OK  ] Started udev Coldplug all Devices.
[  OK  ] Started Create Static Device Nodes in /dev.
[  OK  ] Reached target Local File Systems (Pre).
         Mounting /var/volatile...
         Starting udev Kernel Device Manager...
[  OK  ] Mounted /var/volatile.
         Starting Load/Save Random Seed...
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Started Load/Save Random Seed.
[  OK  ] Started udev Kernel Device Manager.
[  OK  ] Started Create Volatile Files and Directories.
         Starting Network Time Synchronization...
         Starting Update UTMP about System Boot/Shutdown...
[  OK  ] Started Update UTMP about System Boot/Shutdown.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Initialization.
[   13.884727] imx-sdma 302b0000.dma-controller: loaded firmware 4.5
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target System Time Set.
[  OK  ] Reached target System Time Synchronized.
[  OK  ] Started Daily apt download activities.
[  OK  ] Started Daily rotation of log files.
[  OK  ] Reached target Timers.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Listening on dropbear.socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
         Starting Save/Restore Sound Card State...
[  OK  ] Started Job spooling tools.
[  OK  ] Started Periodic Command Scheduler.
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Configuration for i.MX GPU (Former rc_gpu.S).
         Starting Packet Filtering Framework...
         Starting Network Time Service (one-shot ntpdate mode)...
         Starting Telephony service...
         Starting RPC Bind Service...
         Starting System Logging Service...
         Starting Login Service...
[  OK  ] Started Save/Restore Sound Card State.
[  OK  ] Started Packet Filtering Framework.
[  OK  ] Started Network Time Service (one-shot ntpdate mode).
[  OK  ] Started RPC Bind Service.
[  OK  ] Started System Logging Service.
[  OK  ] Reached target Network (Pre).
[  OK  ] Reached target Sound Card.
         Starting Kernel Logging Service...
         Starting Network Service...
         Starting Rotate log files...
[  OK  ] Started Login Service.
[  OK  ] Started Telephony service.
[  OK  ] Started Rotate log files.
[  OK  ] Started Network Service.
         Starting Network Name Resolution...
[  OK  ] Started Kernel Logging Service.
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
         Starting Avahi mDNS/DNS-SD Stack...
[  OK  ] Started NFS status monitor for NFSv2/3 locking..
         Starting Permit User Sessions...
[  OK  ] Started Target Communication Framework agent.
[  OK  ] Started Xinetd A Powerful Replacement For Inetd.
[  OK  ] Started Permit User Sessions.
[  OK  ] Started Getty on tty1.
[  OK  ] Started Serial Getty on ttymxc1.
[  OK  ] Reached target Login Prompts.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Reached target Multi-User System.
         Starting Update UTMP about System Runlevel Changes...
[  OK  ] Started Update UTMP about System Runlevel Changes.

NXP i.MX Release Distro 5.4-zeus desk-mx8mm ttymxc1

desk-mx8mm login:

The following message appears from the VM, when the rootfs is mounted:

dvdk@vagrant:~/nfs_rootfs$ cat /var/log/syslog | tail -n 2
Feb 27 11:39:28 vagrant systemd[1]: Started Clean php session files.
Feb 27 11:46:29 vagrant rpc.mountd[12807]: authenticated mount request from 192.168.0.89:863 for /home/dvdk/desk-mx-l/rfs/desk-mx8m-l (/home)