DESK-MX8M-L/General/Booting from NFS

From DAVE Developer's Wiki
Jump to: navigation, search
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)