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

From DAVE Developer's Wiki
Jump to: navigation, search
(Target configuration)
(Target configuration)
Line 127: Line 127:
 
=> setenv serverip 192.168.0.125
 
=> setenv serverip 192.168.0.125
 
=> setenv ipaddr 192.168.0.89
 
=> setenv ipaddr 192.168.0.89
=> setenv gatewayip '192.168.0.254'
+
=> setenv gatewayip 192.168.0.254
=> setenv netmask '255.255.255.0'
+
=> setenv netmask 255.255.255.0
=> setenv netdev 'eth0'
+
=> setenv netdev eth0
 
</pre>
 
</pre>
  

Revision as of 11:41, 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 net_nfs command which firstly downloads the kernel and device tree using the tftp protocol

 => setenv net_nfs 'run loadk loadfdt nfsargs addip addcons addmisc; if run configid_fixupfdt; then booti ${loadaddr} - ${fdt_addr}; fi'

Here below the complete bootlog from nfs:

u-boot=> run net_nfs
Using ethernet@30bf0000 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: *#################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 ######################################
	 5.9 MiB/s
done
Bytes transferred = 28219904 (1ae9a00 hex)
Using ethernet@30bf0000 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_imx8mp-mito8mplus-cb1008.dtb'.
Load address: 0x43000000
Loading: *#####
	 6.2 MiB/s
done
Bytes transferred = 58763 (e58b hex)
FDT: override 'som_uniqueid' with '55aa2564:1e261000'
FDT: override 'cb_uniqueid' with 'b7000035:c48de62d'
## Flattened Device Tree blob at 43000000
   Booting using the fdt blob at 0x43000000
   Using Device Tree in place at 0000000043000000, end 0000000043011fff

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 5.4.70-desk-mx8m-l-2.0.0+g3afcce55652c (oe-user@oe-host) (gcc version 9.2.0 (GCC)) #1 SMP PREEMPT Thu Feb 9 12:20:33 UTC 2023
[    0.000000] Machine model: i.MX8MPlus Mito8MPlus on SBC Orca - adapter LVDS HDMI
[    0.000000] efi: Getting EFI parameters from FDT:
[    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] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000040000000-0x00000001bfffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x1bf3d5500-0x1bf3d6fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA32    [mem 0x0000000040000000-0x00000000ffffffff]
[    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 0x0000000058000000-0x00000000923fffff]
[    0.000000]   node   0: [mem 0x0000000094400000-0x00000001bfffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x00000001bfffffff]
[    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.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: 1529856
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=/dev/nfs rw nfsroot=192.168.0.125:/home/dvdk/nfs_rootfs/orca,v3,tcp ip=192.168.0.89:192.168.0.125: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] 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 0xc0000000-0xc4000000] (64MB)
[    0.000000] Memory: 5016672K/6217728K available (16764K kernel code, 1254K rwdata, 6620K rodata, 2880K init, 1015K bss, 218016K 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 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: 160 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.000506] Console: colour dummy device 80x25
[    0.000569] Calibrating delay loop (skipped), value calculated using timer frequency.. 16.00 BogoMIPS (lpj=32000)
[    0.000578] pid_max: default: 32768 minimum: 301
[    0.000651] LSM: Security Framework initializing
[    0.000716] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.000740] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.001807] ASID allocator initialised with 32768 entries
[    0.001875] rcu: Hierarchical SRCU implementation.
[    0.003217] EFI services will not be available.
[    0.003375] smp: Bringing up secondary CPUs ...
[    0.003731] Detected VIPT I-cache on CPU1
[    0.003752] GICv3: CPU1: found redistributor 1 region 0:0x00000000388a0000
[    0.003778] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.004202] Detected VIPT I-cache on CPU2
[    0.004217] GICv3: CPU2: found redistributor 2 region 0:0x00000000388c0000
[    0.004231] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.004604] Detected VIPT I-cache on CPU3
[    0.004619] GICv3: CPU3: found redistributor 3 region 0:0x00000000388e0000
[    0.004632] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.004685] smp: Brought up 1 node, 4 CPUs
[    0.004700] SMP: Total of 4 processors activated.
[    0.004708] CPU features: detected: 32-bit EL0 Support
[    0.004716] CPU features: detected: CRC32 instructions
[    0.011002] CPU: All CPU(s) started at EL2
[    0.011021] alternatives: patching kernel code
[    0.012690] devtmpfs: initialized
[    0.022167] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.022183] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.046851] pinctrl core: initialized pinctrl subsystem
[    0.047567] DMI not present or invalid.
[    0.047792] NET: Registered protocol family 16
[    0.054484] DMA: preallocated 256 KiB pool for atomic allocations
[    0.054506] audit: initializing netlink subsys (disabled)
[    0.054673] audit: type=2000 audit(0.052:1): state=initialized audit_enabled=0 res=1
[    0.055583] cpuidle: using governor menu
[    0.056203] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.057377] Serial: AMBA PL011 UART driver
[    0.057440] imx mu driver is registered.
[    0.057462] imx rpmsg driver is registered.
[    0.062848] imx8mp-pinctrl 30330000.pinctrl: initialized IMX pinctrl driver
[    0.091504] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.091514] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.091519] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.091526] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.092365] cryptd: max_cpu_qlen set to 1000
[    0.095440] ACPI: Interpreter disabled.
[    0.096583] iommu: Default domain type: Translated 
[    0.096702] vgaarb: loaded
[    0.097018] SCSI subsystem initialized
[    0.097339] usbcore: registered new interface driver usbfs
[    0.097379] usbcore: registered new interface driver hub
[    0.097434] usbcore: registered new device driver usb
[    0.098872] mc: Linux media interface: v0.10
[    0.098900] videodev: Linux video capture interface: v2.00
[    0.098979] pps_core: LinuxPPS API ver. 1 registered
[    0.098983] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.098998] PTP clock support registered
[    0.099169] EDAC MC: Ver: 3.0.0
[    0.100209] No BMan portals available!
[    0.100451] QMan: Allocated lookup table at (____ptrval____), entry count 65537
[    0.100837] No QMan portals available!
[    0.101410] No USDPAA memory, no 'fsl,usdpaa-mem' in device-tree
[    0.101930] FPGA manager framework
[    0.102016] Advanced Linux Sound Architecture Driver Initialized.
[    0.102403] Bluetooth: Core ver 2.22
[    0.102430] NET: Registered protocol family 31
[    0.102436] Bluetooth: HCI device and connection manager initialized
[    0.102447] Bluetooth: HCI socket layer initialized
[    0.102455] Bluetooth: L2CAP socket layer initialized
[    0.102469] Bluetooth: SCO socket layer initialized
[    0.103309] clocksource: Switched to clocksource arch_sys_counter
[    0.103463] VFS: Disk quotas dquot_6.6.0
[    0.103510] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.103651] pnp: PnP ACPI: disabled
[    0.109459] thermal_sys: Registered thermal governor 'step_wise'
[    0.109462] thermal_sys: Registered thermal governor 'power_allocator'
[    0.109860] NET: Registered protocol family 2
[    0.110166] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.110247] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.110654] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.111585] TCP: Hash tables configured (established 65536 bind 65536)
[    0.111697] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.111839] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.112092] NET: Registered protocol family 1
[    0.112405] RPC: Registered named UNIX socket transport module.
[    0.112412] RPC: Registered udp transport module.
[    0.112418] RPC: Registered tcp transport module.
[    0.112422] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.112759] PCI: CLS 0 bytes, default 64
[    0.113470] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    0.113886] kvm [1]: IPA Size Limit: 40bits
[    0.114966] kvm [1]: GICv3: no GICV resource entry
[    0.114970] kvm [1]: disabling GICv2 emulation
[    0.114986] kvm [1]: GIC system register CPU interface enabled
[    0.115041] kvm [1]: vgic interrupt IRQ1
[    0.115116] kvm [1]: Hyp mode initialized successfully
[    0.117830] Initialise system trusted keyrings
[    0.117923] workingset: timestamp_bits=44 max_order=21 bucket_order=0
[    0.124457] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.125092] NFS: Registering the id_resolver key type
[    0.125120] Key type id_resolver registered
[    0.125124] Key type id_legacy registered
[    0.125134] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.125151] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    0.125496] 9p: Installing v9fs 9p2000 file system support
[    0.138603] Key type asymmetric registered
[    0.138610] Asymmetric key parser 'x509' registered
[    0.138635] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    0.138640] io scheduler mq-deadline registered
[    0.138647] io scheduler kyber registered
[    0.140915] samsung-hdmi-phy 32fdff00.hdmiphy: failed to get phy apb clk: -517
[    0.145747] EINJ: ACPI disabled.
[    0.152068] i.MX8MP clock driver probe done
[    0.156023] imx-sdma 30bd0000.dma-controller: Direct firmware load for imx/sdma/sdma-imx7d.bin failed with error -2
[    0.156035] imx-sdma 30bd0000.dma-controller: Falling back to sysfs fallback for: imx/sdma/sdma-imx7d.bin
[    0.157783] mxs-dma 33000000.dma-apbh: initialized
[    0.159271] Bus freq driver module loaded
[    0.165435] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.167870] 30860000.serial: ttymxc0 at MMIO 0x30860000 (irq = 26, base_baud = 5000000) is a IMX
[    0.168312] 30880000.serial: ttymxc2 at MMIO 0x30880000 (irq = 27, base_baud = 5000000) is a IMX
[    0.168703] 30890000.serial: ttymxc1 at MMIO 0x30890000 (irq = 28, base_baud = 1500000) is a IMX
[    1.209351] printk: console [ttymxc1] enabled
[    1.217691] imx-lcdifv3 32fc6000.lcd-controller: No irq get
[    1.226478] imx-hdmi-pavi 32fc4000.hdmi-pai-pvi: No pvi clock get
[    1.244066] loop: module loaded
[    1.255487] imx ahci driver is registered.
[    1.263857] libphy: Fixed MDIO Bus: probed
[    1.268775] tun: Universal TUN/TAP device driver, 1.6
[    1.273982] CAN device driver interface
[    1.279454] thunder_xcv, ver 1.0
[    1.282719] thunder_bgx, ver 1.0
[    1.286002] nicpf, ver 1.0
[    1.289669] pps pps0: new PPS source ptp0
[    1.299015] Freescale FM module, FMD API version 21.1.0
[    1.304600] Freescale FM Ports module
[    1.308271] fsl_mac: fsl_mac: FSL FMan MAC API based driver
[    1.314056] fsl_dpa: FSL DPAA Ethernet driver
[    1.318553] fsl_advanced: FSL DPAA Advanced drivers:
[    1.323527] fsl_proxy: FSL DPAA Proxy initialization driver
[    1.329239] fsl_oh: FSL FMan Offline Parsing port driver
[    1.335671] hclge is initializing
[    1.338989] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[    1.346219] hns3: Copyright (c) 2017 Huawei Corporation.
[    1.351577] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    1.358633] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    1.364420] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.370256] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.376211] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.6.0-k
[    1.383178] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.388789] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    1.396624] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.402750] sky2: driver version 1.30
[    1.407122] imx-dwmac 30bf0000.ethernet: IRQ eth_lpi not found
[    1.413880] VFIO - User Level meta-driver version: 0.3
[    1.424213] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.430761] ehci-pci: EHCI PCI platform driver
[    1.435250] ehci-platform: EHCI generic platform driver
[    1.440755] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.446967] ohci-pci: OHCI PCI platform driver
[    1.451453] ohci-platform: OHCI generic platform driver
[    1.457724] usbcore: registered new interface driver uas
[    1.463092] usbcore: registered new interface driver usb-storage
[    1.469172] usbcore: registered new interface driver usbserial_generic
[    1.475727] usbserial: USB Serial support registered for generic
[    1.481764] usbcore: registered new interface driver ftdi_sio
[    1.487539] usbserial: USB Serial support registered for FTDI USB Serial Device
[    1.494878] usbcore: registered new interface driver usb_serial_simple
[    1.501430] usbserial: USB Serial support registered for carelink
[    1.507546] usbserial: USB Serial support registered for zio
[    1.513231] usbserial: USB Serial support registered for funsoft
[    1.519259] usbserial: USB Serial support registered for flashloader
[    1.525637] usbserial: USB Serial support registered for google
[    1.531581] usbserial: USB Serial support registered for libtransistor
[    1.538129] usbserial: USB Serial support registered for vivopay
[    1.544159] usbserial: USB Serial support registered for moto_modem
[    1.550447] usbserial: USB Serial support registered for motorola_tetra
[    1.557081] usbserial: USB Serial support registered for novatel_gps
[    1.563459] usbserial: USB Serial support registered for hp4x
[    1.569233] usbserial: USB Serial support registered for suunto
[    1.575177] usbserial: USB Serial support registered for siemens_mpi
[    1.581571] usbcore: registered new interface driver usb_ehset_test
[    1.591029] input: 30370000.snvs:snvs-powerkey as /devices/platform/soc@0/30000000.bus/30370000.snvs/30370000.snvs:snvs-powerkey/input/input0
[    1.605928] snvs_rtc 30370000.snvs:snvs-rtc-lp: registered as rtc0
[    1.612255] i2c /dev entries driver
[    1.617025] Driver for 1-wire Dallas network protocol.
[    1.622430] w1-gpio onewire: gpio_request (pin) failed
[    1.636059] imx2-wdt 30280000.watchdog: timeout 60 sec (nowayout=0)
[    1.642718] Bluetooth: HCI UART driver ver 2.3
[    1.647180] Bluetooth: HCI UART protocol H4 registered
[    1.652324] Bluetooth: HCI UART protocol BCSP registered
[    1.657663] Bluetooth: HCI UART protocol LL registered
[    1.662810] Bluetooth: HCI UART protocol ATH3K registered
[    1.668238] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    1.674625] Bluetooth: HCI UART protocol Broadcom registered
[    1.680319] Bluetooth: HCI UART protocol QCA registered
[    1.685621] EDAC MC: ECC not enabled
[    1.691977] sdhci: Secure Digital Host Controller Interface driver
[    1.698171] sdhci: Copyright(c) Pierre Ossman
[    1.702782] Synopsys Designware Multimedia Card Interface Driver
[    1.709612] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.716010] mmc0: CQHCI version 5.10
[    1.751269] mmc0: SDHCI controller on 30b40000.mmc [30b40000.mmc] using ADMA
[    1.758623] mmc1: CQHCI version 5.10
[    1.762734] mmc2: CQHCI version 5.10
[    1.797305] mmc2: SDHCI controller on 30b60000.mmc [30b60000.mmc] using ADMA
[    1.807505] ledtrig-cpu: registered to indicate activity on CPUs
[    1.815211] caam 30900000.crypto: device ID = 0x0a16040100000100 (Era 9)
[    1.822007] caam 30900000.crypto: job rings = 2, qi = 0
[    1.839774] caam algorithms registered in /proc/crypto
[    1.845696] caam 30900000.crypto: caam pkc algorithms registered in /proc/crypto
[    1.853109] caam 30900000.crypto: registering rng-caam
[    1.858521] Device caam-keygen registered
[    1.863827] caam-snvs 30370000.caam-snvs: violation handlers armed - non-secure state
[    1.872352] usbcore: registered new interface driver usbhid
[    1.877934] usbhid: USB HID core driver
[    1.883435] mxc-isi 32e00000.isi: mxc_isi.0 registered successfully
[    1.890520] mxc-isi 32e02000.isi: mxc_isi.1 registered successfully
[    1.897873] mxc-mipi-csi2-sam 32e40000.csi: 32e40000.csi supply mipi-phy not found, using dummy regulator
[    1.907753] random: fast init done
[    1.907769] mxc-mipi-csi2-sam 32e40000.csi: lanes: 2, hs_settle: 13, clk_settle: 2, wclk: 1, freq: 500000000
[    1.921203] mxc-mipi-csi2-sam 32e50000.csi: 32e50000.csi supply mipi-phy not found, using dummy regulator
[    1.922261] mmc2: Command Queue Engine enabled
[    1.931112] mxc-mipi-csi2-sam 32e50000.csi: lanes: 2, hs_settle: 13, clk_settle: 2, wclk: 1, freq: 266000000
[    1.935410] mmc2: new HS400 Enhanced strobe MMC card at address 0001
[    1.935764] random: crng init done
[    1.947112] No fsl,qman node
[    1.952680] mmcblk2: mmc2:0001 DG4008 7.28 GiB 
[    1.954877] Freescale USDPAA process driver
[    1.954880] fsl-usdpaa: no region found
[    1.958032] mmcblk2boot0: mmc2:0001 DG4008 partition 1 4.00 MiB
[    1.962305] Freescale USDPAA process IRQ driver
[    1.967138] optee: probing for conduit method from DT.
[    1.970645] mmcblk2boot1: mmc2:0001 DG4008 partition 2 4.00 MiB
[    1.976291] optee: revision 3.10 (a991c904)
[    1.977563] optee: dynamic shared memory is enabled
[    1.981155] mmcblk2rpmb: mmc2:0001 DG4008 partition 3 4.00 MiB, chardev (237:0)
[    1.986288] optee: initialized driver
[    2.014906] Galcore version 6.4.3.p1.305572
[    2.151056] [drm] Initialized vivante 1.0.0 20170808 for 40000000.mix_gpu_ml on minor 0
[    2.160672] hantrodec 0 : module inserted. Major = 236
[    2.166310] hantrodec 1 : module inserted. Major = 236
[    2.172923] hantroenc: HW at base <0000000038320000> with ID <0x80006200>
[    2.179849] hx280enc: module inserted. Major <235>
[    2.196457] imx-cdnhdmi sound-hdmi: ASoC: failed to init link imx8 hdmi: -517
[    2.203612] imx-cdnhdmi sound-hdmi: snd_soc_register_card failed (-517)
[    2.210684] pktgen: Packet Generator for packet performance testing. Version: 2.75
[    2.222816] NET: Registered protocol family 26
[    2.227869] NET: Registered protocol family 10
[    2.232858] Segment Routing with IPv6
[    2.236586] NET: Registered protocol family 17
[    2.241044] can: controller area network core (rev 20170425 abi 9)
[    2.247281] NET: Registered protocol family 29
[    2.251739] can: raw protocol (rev 20170425)
[    2.256022] can: broadcast manager protocol (rev 20170425 t)
[    2.261690] can: netlink gateway (rev 20190810) max_hops=1
[    2.268253] Bluetooth: RFCOMM TTY layer initialized
[    2.273150] Bluetooth: RFCOMM socket layer initialized
[    2.278314] Bluetooth: RFCOMM ver 1.11
[    2.282079] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    2.287398] Bluetooth: BNEP filters: protocol multicast
[    2.292636] Bluetooth: BNEP socket layer initialized
[    2.297608] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    2.303537] Bluetooth: HIDP socket layer initialized
[    2.308539] 8021q: 802.1Q VLAN Support v1.8
[    2.312749] lib80211: common routines for IEEE802.11 drivers
[    2.318513] 9pnet: Installing 9P2000 support
[    2.322836] tsn generic netlink module v1 init...
[    2.327604] Key type dns_resolver registered
[    2.332863] registered taskstats version 1
[    2.336973] Loading compiled-in X.509 certificates
[    2.366879] regulator-se050-en GPIO handle specifies active low - ignored
[    2.376771] pca9450 0-0025: Device ID=0x30
[    2.380895] pca9450 0-0025: gpio_intr = 3
[    2.384922] pca9450 0-0025: chip_irq=76
[    2.418763] i2c i2c-0: IMX I2C adapter registered
[    2.424625] ov5640 1-003c: 1-003c supply DOVDD not found, using dummy regulator
[    2.432003] ov5640 1-003c: 1-003c supply AVDD not found, using dummy regulator
[    2.439269] ov5640 1-003c: 1-003c supply DVDD not found, using dummy regulator
[    2.449903] i2c i2c-1: IMX I2C adapter registered
[    2.456062] ov5640 2-003c: 2-003c supply DOVDD not found, using dummy regulator
[    2.463430] ov5640 2-003c: 2-003c supply AVDD not found, using dummy regulator
[    2.470701] ov5640 2-003c: 2-003c supply DVDD not found, using dummy regulator
[    2.481733] ptn5150 2-003d: Device type: version: 0x1, vendor: 0x3
[    2.489201] i2c i2c-2: IMX I2C adapter registered
[    2.582034] i2c i2c-3: IMX I2C adapter registered
[    2.587542] imx8mq-usb-phy 381f0040.usb-phy: 381f0040.usb-phy supply vbus not found, using dummy regulator
[    2.597447] imx8mq-usb-phy 382f0040.usb-phy: 382f0040.usb-phy supply vbus not found, using dummy regulator
[    2.609494] imx6q-pcie 33800000.pcie: 33800000.pcie supply epdev_on not found, using dummy regulator
[    2.618936] imx6q-pcie 33800000.pcie: EXT REF_CLK is used!.
[    2.622451] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    2.625140] imx6q-pcie 33800000.pcie: PCIe PHY PLL clock is locked.
[    2.631161] [drm] No driver support for vblank timestamp query.
[    2.637501] imx6q-pcie 33800000.pcie: PCIe PLL locked after 0 us.
[    2.643435] imx-drm display-subsystem: bound imx-lcdifv3-crtc.0 (ops lcdifv3_crtc_ops)
[    2.649483] imx6q-pcie 33800000.pcie: host bridge /pcie@33800000 ranges:
[    2.657412] imx-drm display-subsystem: bound imx-lcdifv3-crtc.1 (ops lcdifv3_crtc_ops)
[    2.664077] imx6q-pcie 33800000.pcie:   No bus range found for /pcie@33800000, using [bus 00-ff]
[    2.672081] imx-drm display-subsystem: bound 32c00000.bus:ldb@32ec005c (ops imx8mp_ldb_ops)
[    2.680795] imx6q-pcie 33800000.pcie:    IO 0x1ff80000..0x1ff8ffff -> 0x00000000
[    2.689197] dwhdmi-imx 32fd8000.hdmi: No pavi info found
[    2.696543] imx6q-pcie 33800000.pcie:   MEM 0x18000000..0x1fefffff -> 0x18000000
[    2.703947] pps pps0: new PPS source ptp0
[    2.719620] libphy: fec_enet_mii_bus: probed
[    2.726805] fec 30be0000.ethernet eth0: registered PHC device 0
[    2.733494] imx-dwmac 30bf0000.ethernet: IRQ eth_lpi not found
[    2.739472] imx-dwmac 30bf0000.ethernet: no reset control found
[    2.745556] imx-dwmac 30bf0000.ethernet: User ID: 0x10, Synopsys ID: 0x51
[    2.752375] imx-dwmac 30bf0000.ethernet: 	DWMAC4/5
[    2.757185] imx-dwmac 30bf0000.ethernet: DMA HW capability register supported
[    2.764330] imx-dwmac 30bf0000.ethernet: RX Checksum Offload Engine supported
[    2.771474] imx-dwmac 30bf0000.ethernet: TX Checksum insertion supported
[    2.778181] imx-dwmac 30bf0000.ethernet: Wake-Up On Lan supported
[    2.784306] imx-dwmac 30bf0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    2.791974] imx-dwmac 30bf0000.ethernet: device MAC address 6a:b6:d4:41:e5:c3
[    2.799122] imx-dwmac 30bf0000.ethernet: Enabled Flow TC (entries=8)
[    2.805490] imx-dwmac 30bf0000.ethernet: Enabling HW TC (entries=256, max_off=256)
[    2.813172] libphy: stmmac: probed
[    2.819759] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    2.825279] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
[    2.833292] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe6c hci version 0x110 quirks 0x0000002001810010
[    2.842730] xhci-hcd xhci-hcd.1.auto: irq 69, io mem 0x38100000
[    2.849528] hub 1-0:1.0: USB hub found
[    2.853312] hub 1-0:1.0: 1 port detected
[    2.857492] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    2.863001] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
[    2.870679] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[    2.877269] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.886378] hub 2-0:1.0: USB hub found
[    2.890164] hub 2-0:1.0: 1 port detected
[    2.895726] gpio-42 (onewire): enforced open drain please flag it properly in DT/ACPI DSDT/board file
[    2.906313] imx-cpufreq-dt imx-cpufreq-dt: cpu speed grade 7 mkt segment 2 supported-hw 0x80 0x4
[    2.922237] mmc1: CQHCI version 5.10
[    2.925865] sdhci-esdhc-imx 30b50000.mmc: Got CD GPIO
[    2.929869] w1_master_driver w1_bus_master1: Attaching one wire slave 2d.000035c48de6 crc b7
[    2.960898] mmc1: SDHCI controller on 30b50000.mmc [30b50000.mmc] using ADMA
[    2.980195] imx-cdnhdmi sound-hdmi: ASoC: failed to init link imx8 hdmi: -517
[    2.987403] imx-cdnhdmi sound-hdmi: snd_soc_register_card failed (-517)
[    2.994404] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.001051] [drm] No driver support for vblank timestamp query.
[    3.007029] imx-drm display-subsystem: bound imx-lcdifv3-crtc.0 (ops lcdifv3_crtc_ops)
[    3.014985] imx-drm display-subsystem: bound imx-lcdifv3-crtc.1 (ops lcdifv3_crtc_ops)
[    3.022992] imx-drm display-subsystem: bound 32c00000.bus:ldb@32ec005c (ops imx8mp_ldb_ops)
[    3.031559] dwhdmi-imx 32fd8000.hdmi: Detected HDMI TX controller v2.13a with HDCP (samsung_dw_hdmi_phy2)
[    3.042230] dwhdmi-imx 32fd8000.hdmi: registered DesignWare HDMI I2C bus driver
[    3.050932] imx-drm display-subsystem: bound 32fd8000.hdmi (ops dw_hdmi_imx_ops)
[    3.059008] [drm] Initialized imx-drm 1.0.0 20120507 for display-subsystem on minor 1
[    3.069565] mmc1: host does not support reading read-only switch, assuming write-enable
[    3.081448] mmc1: new high speed SDHC card at address e624
[    3.087535] mmcblk1: mmc1:e624 SA32G 29.7 GiB 
[    3.094145]  mmcblk1: p1 p2
[    3.191637] usb 1-1: new high-speed USB device number 2 using xhci-hcd
[    3.390364] hub 1-1:1.0: USB hub found
[    3.394860] hub 1-1:1.0: 4 ports detected
[    3.518465] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd
[    3.678449] hub 2-1:1.0: USB hub found
[    3.683075] hub 2-1:1.0: 4 ports detected
[    3.701892] imx6q-pcie 33800000.pcie: Phy link never came up
[    3.707618] imx6q-pcie 33800000.pcie: failed to initialize host
[    3.713551] imx6q-pcie 33800000.pcie: unable to add pcie port.
[    4.090260] [drm] Cannot find any crtc or sizes
[    4.095845] debugfs: Directory '30cb0000.aud2htx' with parent 'audio-hdmi' already present!
[    4.104307] imx-cdnhdmi sound-hdmi: i2s-hifi <-> 30cb0000.aud2htx mapping ok
[    4.111394] imx-cdnhdmi sound-hdmi: ASoC: no DMI vendor name!
[    4.118075] input: audio-hdmi HDMI Jack as /devices/platform/sound-hdmi/sound/card0/input1
[    4.129150] snvs_rtc 30370000.snvs:snvs-rtc-lp: setting system clock to 2023-02-27T11:04:49 UTC (1677495889)
[    4.140368] isi-m2m 32e00000.isi:m2m_device: Register m2m success for ISI.0
[    4.150860] Generic PHY 30be0000.ethernet-1:08: attached PHY driver [Generic PHY] (mii_bus:phy_addr=30be0000.ethernet-1:08, irq=POLL)
[    8.258210] fec 30be0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[    8.267909] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[    8.287617] IP-Config: Complete:
[    8.290849]      device=eth0, hwaddr=aa:3e:ce:75:c4:26, ipaddr=192.168.0.89, mask=255.255.255.0, gw=192.168.0.254
[    8.301217]      host=desk-mx, domain=, nis-domain=(none)
[    8.306653]      bootserver=192.168.0.125, rootserver=192.168.0.125, rootpath=
[    8.314044] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    8.324910] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    8.331508] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    8.340131] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db
[    8.357652] ALSA device list:
[    8.360647]   #0: audio-hdmi
[    8.388663] VFS: Mounted root (nfs filesystem) on device 0:22.
[    8.395859] devtmpfs: mounted
[    8.399763] Freeing unused kernel memory: 2880K
[    8.419417] Run /sbin/init as init process
[    8.779198] 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)
[    8.801337] systemd[1]: Detected architecture arm64.

Welcome to [1mNXP i.MX Release Distro 5.4-zeus (zeus)[0m!

[    8.869620] systemd[1]: Set hostname to <desk-mx8mp>.
[    9.670963] 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.727231] 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.791175] 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.833333] 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.
[   10.289509] systemd[1]: system-getty.slice: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
[   10.301902] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
[   10.312211] 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 Journal Service...                                                                                                                                                         
         Mounting Kernel Configuration File System...                                                                                                                                        
         Starting Remount Root and Kernel File Systems...                                                                                                                                    
         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  ] Started Journal Service.                                                                                                                                                            
[  OK  ] Mounted Temporary Directory (/tmp).                                                                                                                                                 
[  OK  ] Mounted Kernel Configuration File System.                                                                                                                                           
[  OK  ] Started Remount Root and Kernel File Systems.                                                                                                                                       
[  OK  ] Started Apply Kernel Variables.                                                                                                                                                     
         Starting Flush Journal to Persistent Storage...                                                                                                                                     
         Starting Create Static Device Nodes in /dev...                                                                                                                                      
[   10.962725] systemd-journald[259]: Received client request to flush runtime journal.                                                                                                      
[  OK  ] Started Flush Journal to Persistent Storage.                                                                                                                                        
[  OK  ] Started Create Static Device Nodes in /dev.                                                                                                                                         
[  OK  ] Reached target Local File Systems (Pre).                           
     Mounting /var/volatile...
         Starting udev Kernel Device Manager...
[  OK  ] Started udev Coldplug all Devices.
[  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.
[   12.002749] imx-sdma 30bd0000.dma-controller: loaded firmware 4.5
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Initialization.
[  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 TEE Supplicant.
[  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...
[  OK  ] Started Telephony service.
[  OK  ] Started Login Service.
[  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 Avahi mDNS/DNS-SD Stack.
[  OK  ] Started Getty on tty1.
[  OK  ] Started Serial Getty on ttymxc1.
[  OK  ] Reached target Login Prompts.
[  OK  ] Reached target Multi-User System.
         Starting Update UTMP about System Runlevel Changes...
[  OK  ] Started Update UTMP about System Runlevel Changes.
[   14.202608] [drm] Cannot find any crtc or sizes

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

desk-mx8mp 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)