DESK-MX9-L/General/Booting from nfs

From DAVE Developer's Wiki
Jump to: navigation, search
History
Issue Date Notes
2024/01/30 DESK-MX9-L-5.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-MX9-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-MX9-L Virtual Machine has the tftp and nfs services already running. Optionally, their configuration has to be changed according to the network configuration where the target is connected to.

Check and properly configure the items describe in VirtualBox Network Configuration

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)

u-boot=> setenv serverip 192.168.0.89
u-boot=> setenv ipaddr 192.168.0.169
u-boot=> setenv gatewayip 192.168.0.254
u-boot=> setenv netmask 255.255.255.0
u-boot=> 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:

u-boot=> setenv ip_dyn no

The kernel and device tree files have to be selected

u-boot=> setenv bootfile /tftpboot/desk-mx9-l/Image

AURA has its dtb file imx93-aura-cb2001.dtb

u-boot=> setenv fdt_file /tftpboot/desk-mx9-l/imx93-aura-cb2001.dtb

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

u-boot=> setenv rootpath /home/dvdk/desk-mx-l/rfs/desk-mx9-l/

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

u-boot=> setenv net_nfs 'run loadk loadfdt nfsargs addip addcons addmisc; booti ${loadaddr} - ${fdtaddr}'

Here below the complete bootlog from nfs:

u-boot=> run net_nfs 
ethernet@428a0000 Waiting for PHY auto negotiation to complete........ done
Using ethernet@428a0000 device
TFTP from server 192.168.0.169; our IP address is 192.168.0.89
Filename 'desk-mx9-l/Image'.
Load address: 0x80400000
Loading: #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         ###########
         580.1 KiB/s
done
Bytes transferred = 33001984 (1f79200 hex)
Using ethernet@428a0000 device
TFTP from server 192.168.0.169; our IP address is 192.168.0.89
Filename 'desk-mx9-l/imx93-aura-cb2001.dtb'.
Load address: 0x83000000
Loading: #########
         376 KiB/s
done
Bytes transferred = 45441 (b181 hex)
## Flattened Device Tree blob at 83000000
   Booting using the fdt blob at 0x83000000
Working FDT set to 83000000
   Using Device Tree in place at 0000000083000000, end 000000008300e180
Working FDT set to 83000000

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    0.000000] Linux version 6.1.55-desk-mx9-l-5.0.0-rc2+g27df6782c46f (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 12.3.0, GNU ld (GNU Binutils) 2.40.0.20230703) #1 SMP PREEMPT Wed Jan 24 09:29:00 UTC 2024
[    0.000000] Machine model: DAVE i.MX93 AURA on SBCX
[    0.000000] efi: UEFI not found.
[    0.000000] Reserved memory: created CMA memory pool at 0x00000000b0000000, size 256 MiB
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4020000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node vdevbuffer@a4020000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4120000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node ele-reserved@a4120000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created CMA memory pool at 0x00000000c0000000, size 256 MiB
[    0.000000] OF: reserved mem: initialized node ethosu_region@C0000000, compatible id shared-dma-pool
[    0.000000] earlycon: lpuart32 at MMIO32 0x0000000044380000 (options '')
[    0.000000] printk: bootconsole [lpuart32] enabled
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0xffbc5700-0xffbc7fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x00000000a3ffffff]
[    0.000000]   node   0: [mem 0x00000000a4000000-0x00000000a421ffff]
[    0.000000]   node   0: [mem 0x00000000a4220000-0x00000000ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 20 pages/cpu s44520 r8192 d29208 u81920
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Qualcomm erratum 1009, or ARM erratum 1286807, 2441009
[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Fallback order for Node 0: 0 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 516096
[    0.000000] Policy zone: DMA
[    0.000000] Kernel command line: root=/dev/nfs rw nfsroot=192.168.0.169:/home/dvdk/desk-mx-l/rfs/desk-mx9-l/,v3,tcp ip=192.168.0.89:192.168.0.169:192.168.0.254:255.255.255.0:desk-mx:eth0:off panic=1 console=ttyLP0,115200 earlycon ;
[    0.000000] Unknown kernel command line parameters ";", will be passed to user space.
[    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: 1497352K/2097152K available (19776K kernel code, 1636K rwdata, 7312K rodata, 3392K init, 645K bss, 75512K reserved, 524288K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[    0.000000]  Trampoline variant of Tasks RCU enabled.
[    0.000000]  Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 960 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: GICv3 features: 16 PPIs
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000048040000
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    0.000000] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    0.008291] Console: colour dummy device 80x25
[    0.012526] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
[    0.022704] pid_max: default: 32768 minimum: 301
[    0.027329] LSM: Security Framework initializing
[    0.031958] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.039259] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.047730] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    0.053987] cblist_init_generic: Setting adjustable number of callback queues.
[    0.060973] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.067057] cblist_init_generic: Setting adjustable number of callback queues.
[    0.074214] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.080394] rcu: Hierarchical SRCU implementation.
[    0.085047] rcu:     Max phase no-delay instances is 1000.
[    0.090951] EFI services will not be available.
[    0.095385] smp: Bringing up secondary CPUs ...
[    0.100073] Detected VIPT I-cache on CPU1
[    0.100138] cacheinfo: Unable to detect cache hierarchy for CPU 1
[    0.100147] GICv3: CPU1: found redistributor 100 region 0:0x0000000048060000
[    0.100181] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[    0.100265] smp: Brought up 1 node, 2 CPUs
[    0.127683] SMP: Total of 2 processors activated.
[    0.132355] CPU features: detected: 32-bit EL0 Support
[    0.137476] CPU features: detected: 32-bit EL1 Support
[    0.142581] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.151157] CPU features: detected: Common not Private translations
[    0.157396] CPU features: detected: CRC32 instructions
[    0.162512] CPU features: detected: RCpc load-acquire (LDAPR)
[    0.168229] CPU features: detected: LSE atomic instructions
[    0.173776] CPU features: detected: Privileged Access Never
[    0.179322] CPU features: detected: RAS Extension Support
[    0.184698] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.191677] CPU: All CPU(s) started at EL2
[    0.195705] alternatives: applying system-wide alternatives
[    0.205417] devtmpfs: initialized
[    0.212995] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.222488] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.237224] pinctrl core: initialized pinctrl subsystem
[    0.243348] DMI not present or invalid.
[    0.247343] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.253772] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    0.260648] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.268349] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.276214] audit: initializing netlink subsys (disabled)
[    0.281725] audit: type=2000 audit(0.184:1): state=initialized audit_enabled=0 res=1
[    0.282126] thermal_sys: Registered thermal governor 'step_wise'
[    0.289252] thermal_sys: Registered thermal governor 'power_allocator'
[    0.295365] cpuidle: using governor menu
[    0.305821] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.312424] ASID allocator initialised with 65536 entries
[    0.318355] Serial: AMBA PL011 UART driver
[    0.322233] imx mu driver is registered.
[    0.326092] imx rpmsg driver is registered.
[    0.334623] imx93-pinctrl 443c0000.pinctrl: initialized IMX pinctrl driver
[    0.346899] platform 4ae30000.lcd-controller: Fixed dependency cycle(s) with /soc@0/ldb@4ac10020/lvds-channel@0/port@0/endpoint
[    0.360391] platform lvds_panel: Fixed dependency cycle(s) with /soc@0/ldb@4ac10020/lvds-channel@0/port@1/endpoint
[    0.370992] KASLR disabled due to lack of seed
[    0.386572] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.393105] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    0.399336] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.406094] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    0.412335] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.419094] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    0.425335] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.432094] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.439905] ACPI: Interpreter disabled.
[    0.445075] iommu: Default domain type: Translated 
[    0.449697] iommu: DMA domain TLB invalidation policy: strict mode 
[    0.456145] SCSI subsystem initialized
[    0.459977] usbcore: registered new interface driver usbfs
[    0.465232] usbcore: registered new interface driver hub
[    0.470498] usbcore: registered new device driver usb
[    0.476241] mc: Linux media interface: v0.10
[    0.480286] videodev: Linux video capture interface: v2.00
[    0.485750] pps_core: LinuxPPS API ver. 1 registered
[    0.490649] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.499754] PTP clock support registered
[    0.503741] EDAC MC: Ver: 3.0.0
[    0.507718] FPGA manager framework
[    0.510935] Advanced Linux Sound Architecture Driver Initialized.
[    0.517314] Bluetooth: Core ver 2.22
[    0.520641] NET: Registered PF_BLUETOOTH protocol family
[    0.525917] Bluetooth: HCI device and connection manager initialized
[    0.532243] Bluetooth: HCI socket layer initialized
[    0.537094] Bluetooth: L2CAP socket layer initialized
[    0.542126] Bluetooth: SCO socket layer initialized
[    0.547292] vgaarb: loaded
[    0.550208] clocksource: Switched to clocksource arch_sys_counter
[    0.556233] VFS: Disk quotas dquot_6.6.0
[    0.559980] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.566923] pnp: PnP ACPI: disabled
[    0.574948] NET: Registered PF_INET protocol family
[    0.579733] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.588086] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    0.596409] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.604075] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.612019] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.619631] TCP: Hash tables configured (established 16384 bind 16384)
[    0.625991] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.632595] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.639783] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.645627] RPC: Registered named UNIX socket transport module.
[    0.651293] RPC: Registered udp transport module.
[    0.655957] RPC: Registered tcp transport module.
[    0.660636] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.667593] PCI: CLS 0 bytes, default 64
[    0.671786] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 counters available
[    0.680201] kvm [1]: IPA Size Limit: 40 bits
[    0.684234] kvm [1]: GICv3: no GICV resource entry
[    0.688977] kvm [1]: disabling GICv2 emulation
[    0.693407] kvm [1]: GIC system register CPU interface enabled
[    0.699248] kvm [1]: vgic interrupt IRQ9
[    0.703152] kvm [1]: VHE mode initialized successfully
[    0.709098] Initialise system trusted keyrings
[    0.713477] workingset: timestamp_bits=42 max_order=19 bucket_order=0
[    0.723724] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.729775] NFS: Registering the id_resolver key type
[    0.734603] Key type id_resolver registered
[    0.738724] Key type id_legacy registered
[    0.742758] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.749386] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    0.756761] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    0.763072] 9p: Installing v9fs 9p2000 file system support
[    0.793556] Key type asymmetric registered
[    0.797389] Asymmetric key parser 'x509' registered
[    0.802278] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.809611] io scheduler mq-deadline registered
[    0.814115] io scheduler kyber registered
[    0.822644] EINJ: ACPI disabled.
[    0.830435] Bus freq driver module loaded
[    0.839054] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.856405] printk: console [ttyLP0] enabled0x44380010 (irq = 18, base_baud = 1500000) is a FSL_LPUART
[    0.856405] printk: console [ttyLP0] enabled
[    0.864817] printk: bootconsole [lpuart32] disabled
[    0.864817] printk: bootconsole [lpuart32] disabled
[    0.875124] 44390000.serial: ttyLP1 at MMIO 0x44390010 (irq = 19, base_baud = 1500000) is a FSL_LPUART
[    0.884979] 42580000.serial: ttyLP3 at MMIO 0x42580010 (irq = 20, base_baud = 1500000) is a FSL_LPUART
[    0.894800] 42690000.serial: ttyLP2 at MMIO 0x42690010 (irq = 21, base_baud = 1500000) is a FSL_LPUART
[    0.908653] Error: Driver 'mxsfb' is already registered, aborting...
[    0.916480] imx-drm display-subsystem: bound imx-lcdifv3-crtc.0 (ops lcdifv3_crtc_ops)
[    0.925463] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    0.935019] loop: module loaded
[    0.939315] of_reserved_mem_lookup() returned NULL
[    0.944250] megasas: 07.719.03.00-rc1
[    0.951696] spi-nand spi0.0: Winbond SPI NAND was found.
[    0.957035] spi-nand spi0.0: 256 MiB, block size: 128 KiB, page size: 2048, OOB size: 128
[    0.968248] tun: Universal TUN/TAP device driver, 1.6
[    0.973508] CAN device driver interface
[    0.978934] thunder_xcv, ver 1.0
[    0.982186] thunder_bgx, ver 1.0
[    0.985437] nicpf, ver 1.0
[    0.989548] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[    0.996779] hns3: Copyright (c) 2017 Huawei Corporation.
[    1.002220] hclge is initializing
[    1.005541] e1000: Intel(R) PRO/1000 Network Driver
[    1.010412] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    1.016176] e1000e: Intel(R) PRO/1000 Network Driver
[    1.021133] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.027094] igb: Intel(R) Gigabit Ethernet Network Driver
[    1.032488] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.038079] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    1.044333] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.050456] sky2: driver version 1.30
[    1.054600] usbcore: registered new interface driver r8152
[    1.060367] VFIO - User Level meta-driver version: 0.3
[    1.068262] usbcore: registered new interface driver uas
[    1.073619] usbcore: registered new interface driver usb-storage
[    1.079681] usbcore: registered new interface driver usbserial_generic
[    1.086210] usbserial: USB Serial support registered for generic
[    1.092226] usbcore: registered new interface driver ftdi_sio
[    1.097971] usbserial: USB Serial support registered for FTDI USB Serial Device
[    1.105288] usbcore: registered new interface driver usb_serial_simple
[    1.111812] usbserial: USB Serial support registered for carelink
[    1.117904] usbserial: USB Serial support registered for flashloader
[    1.124262] usbserial: USB Serial support registered for funsoft
[    1.130262] usbserial: USB Serial support registered for google
[    1.136188] usbserial: USB Serial support registered for hp4x
[    1.141932] usbserial: USB Serial support registered for kaufmann
[    1.148021] usbserial: USB Serial support registered for libtransistor
[    1.154546] usbserial: USB Serial support registered for moto_modem
[    1.160812] usbserial: USB Serial support registered for motorola_tetra
[    1.167426] usbserial: USB Serial support registered for nokia
[    1.173257] usbserial: USB Serial support registered for novatel_gps
[    1.179611] usbserial: USB Serial support registered for siemens_mpi
[    1.185967] usbserial: USB Serial support registered for suunto
[    1.191884] usbserial: USB Serial support registered for vivopay
[    1.197889] usbserial: USB Serial support registered for zio
[    1.203562] usbcore: registered new interface driver usb_ehset_test
[    1.212085] bbnsm_pwrkey 44440000.bbnsm:pwrkey: KEY_POWER without setting in dts
[    1.220294] input: 44440000.bbnsm:pwrkey as /devices/platform/soc@0/44000000.bus/44440000.bbnsm/44440000.bbnsm:pwrkey/input/input0
[    1.234971] bbnsm_rtc 44440000.bbnsm:rtc: registered as rtc0
[    1.241024] bbnsm_rtc 44440000.bbnsm:rtc: setting system clock to 1970-01-01T00:00:00 UTC (0)
[    1.250264] i2c_dev: i2c /dev entries driver
[    1.255599] Driver for 1-wire Dallas network protocol.
[    1.262740] imx7ulp-wdt 42490000.wdog: imx93 wdt probe
[    1.297495] Bluetooth: HCI UART driver ver 2.3
[    1.301959] Bluetooth: HCI UART protocol H4 registered
[    1.307097] Bluetooth: HCI UART protocol BCSP registered
[    1.312416] Bluetooth: HCI UART protocol LL registered
[    1.317541] Bluetooth: HCI UART protocol ATH3K registered
[    1.322941] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    1.329322] Bluetooth: HCI UART protocol Broadcom registered
[    1.334985] Bluetooth: HCI UART protocol QCA registered
[    1.341469] sdhci: Secure Digital Host Controller Interface driver
[    1.347672] sdhci: Copyright(c) Pierre Ossman
[    1.352493] Synopsys Designware Multimedia Card Interface Driver
[    1.358912] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.365946] ledtrig-cpu: registered to indicate activity on CPUs
[    1.373041] fsl-ele-mu soc@0:ele-mu: ele_mu_probe: Not able to read cmd_tag
[    1.380024] fsl-ele-mu soc@0:ele-mu: ele_mu_probe: Not able to read rsp_tag
[    1.387426] fsl-ele-mu soc@0:ele-mu: assigned reserved memory node ele-reserved@a4120000
[    1.395553] fsl-ele-mu soc@0:ele-mu: Failed to initialize ele fw.
[    1.396820] mmc0: SDHCI controller on 42850000.mmc [42850000.mmc] using ADMA
[    1.401675] fsl-ele-mu soc@0:ele-mu: registering ele-trng
[    1.414372] fsl-ele-mu soc@0:ele-mu: Successfully registered ele-trng
[    1.420923] random: crng init done
[    1.421018] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    1.430807] hid: raw HID events driver (C) Jiri Kosina
[    1.436402] usbcore: registered new interface driver usbhid
[    1.442014] usbhid: USB HID core driver
[    1.447245] mxc-md 42800000.bus:camera: deferring cap_device registration
[    1.454880] ethosu ethosu: assigned reserved memory node ethosu_region@C0000000
[    1.463707] remoteproc remoteproc0: releasing imx-rproc
[    1.471285]  cs_system_cfg: CoreSight Configuration manager initialised
[    1.485154] NET: Registered PF_LLC protocol family
[    1.490508] NET: Registered PF_INET6 protocol family
[    1.496131] Segment Routing with IPv6
[    1.499823] In-situ OAM (IOAM) with IPv6
[    1.503789] NET: Registered PF_PACKET protocol family
[    1.508862] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    1.521807] can: controller area network core
[    1.526194] NET: Registered PF_CAN protocol family
[    1.530992] can: raw protocol
[    1.533956] can: broadcast manager protocol
[    1.538138] can: netlink gateway - max_hops=1
[    1.542748] Bluetooth: RFCOMM TTY layer initialized
[    1.547660] Bluetooth: RFCOMM socket layer initialized
[    1.552855] Bluetooth: RFCOMM ver 1.11
[    1.556628] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    1.561954] Bluetooth: BNEP filters: protocol multicast
[    1.567172] Bluetooth: BNEP socket layer initialized
[    1.572128] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    1.578055] Bluetooth: HIDP socket layer initialized
[    1.583246] 8021q: 802.1Q VLAN Support v1.8
[    1.587486] lib80211: common routines for IEEE802.11 drivers
[    1.593259] 9pnet: Installing 9P2000 support
[    1.597621] Key type dns_resolver registered
[    1.602328] registered taskstats version 1
[    1.606453] Loading compiled-in X.509 certificates
[    1.612651] mmc0: new DDR MMC card at address 0001
[    1.618061] mmcblk0: mmc0:0001 DG4008 7.28 GiB 
[    1.624689]  mmcblk0: p1 p2
[    1.624882] usb_phy_generic soc@0:usbphynop1: supply vcc not found, using dummy regulator
[    1.627960] mmcblk0boot0: mmc0:0001 DG4008 4.00 MiB 
[    1.635930] usb_phy_generic soc@0:usbphynop1: dummy supplies not allowed for exclusive requests
[    1.641635] mmcblk0boot1: mmc0:0001 DG4008 4.00 MiB 
[    1.649676] usb_phy_generic soc@0:usbphynop2: supply vcc not found, using dummy regulator
[    1.655185] mmcblk0rpmb: mmc0:0001 DG4008 4.00 MiB, chardev (234:0)
[    1.662686] usb_phy_generic soc@0:usbphynop2: dummy supplies not allowed for exclusive requests
[    1.686527] imx93-ldb soc@0:ldb@4ac10020: Failed to create device link (0x180) with soc@0:phy@4ac10024
[    1.699634] imx-drm display-subsystem: bound imx-lcdifv3-crtc.0 (ops lcdifv3_crtc_ops)
[    1.709069] imx-dwmac 428a0000.ethernet: IRQ eth_lpi not found
[    1.715173] imx-dwmac 428a0000.ethernet: User ID: 0x10, Synopsys ID: 0x52
[    1.721991] imx-dwmac 428a0000.ethernet:     DWMAC4/5
[    1.726777] imx-dwmac 428a0000.ethernet: DMA HW capability register supported
[    1.733897] imx-dwmac 428a0000.ethernet: RX Checksum Offload Engine supported
[    1.741021] imx-dwmac 428a0000.ethernet: TX Checksum insertion supported
[    1.747710] imx-dwmac 428a0000.ethernet: Wake-Up On Lan supported
[    1.753847] imx-dwmac 428a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    1.761503] imx-dwmac 428a0000.ethernet: Enabled L3L4 Flow TC (entries=8)
[    1.768279] imx-dwmac 428a0000.ethernet: Enabled RFS Flow TC (entries=10)
[    1.775065] imx-dwmac 428a0000.ethernet: Enabling HW TC (entries=256, max_off=256)
[    1.782623] imx-dwmac 428a0000.ethernet: Using 32/32 bits DMA host/device width
[    1.800047] sdhci-esdhc-imx 42860000.mmc: Got CD GPIO
[    1.800573] isi-capture 4ae40000.isi:cap_device: deferring 4ae40000.isi:cap_device device registration
[    1.814561] mxc-isi 4ae40000.isi: mxc_isi.0 registered successfully
[    1.821687] mxc-md 42800000.bus:camera: deferring cap_device registration
[    1.829999] remoteproc remoteproc0: releasing imx-rproc
[    1.835434] mmc1: SDHCI controller on 42860000.mmc [42860000.mmc] using ADMA
[    1.840620] i2c i2c-0: LPI2C adapter registered
[    1.851606] nxp-pca9450 1-0025: pca9451a probed.
[    1.856358] i2c i2c-1: LPI2C adapter registered
[    1.861849] i2c 2-003c: Fixed dependency cycle(s) with /soc@0/bus@42800000/camera/csi@4ae00000/port@0/endpoint
[    1.872945] ov5640 2-003c: ov5640_write_reg: error: reg=3008, val=82
[    1.887156] mmc1: new high speed SDHC card at address 5048
[    1.893153] mmcblk1: mmc1:5048 SD32G 28.9 GiB 
[    1.899001]  mmcblk1: p1 p2
[    1.905587] i2c i2c-2: LPI2C adapter registered
[    1.911853] imx-drm display-subsystem: bound imx-lcdifv3-crtc.0 (ops lcdifv3_crtc_ops)
[    1.920053] imx-drm display-subsystem: bound soc@0:ldb@4ac10020 (ops imx93_ldb_ops)
[    1.927980] [drm] Initialized imx-drm 1.0.0 20120507 for display-subsystem on minor 0
[    1.967244] Console: switching to colour frame buffer device 100x30
[    1.987808] imx-drm display-subsystem: [drm] fb0: imx-drmdrmfb frame buffer device
[    1.999429] ci_hdrc ci_hdrc.1: EHCI Host Controller
[    2.004353] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 1
[    2.026227] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00
[    2.032148] hub 1-0:1.0: USB hub found
[    2.035926] hub 1-0:1.0: 1 port detected
[    2.042163] mx8-img-md: Registered mxc_isi.0.capture as /dev/video0
[    2.048484] mxc-md 42800000.bus:camera: deferring csi device registration
[    2.056286] dwc-mipi-csi2-host 4ae00000.csi: lanes: 2, name: mxc-mipi-csi2.0
[    2.064371] remoteproc remoteproc0: releasing imx-rproc
[    2.087080] mx8-img-md: Registered mxc_isi.0.capture as /dev/video0
[    2.093422] mx8-img-md: Registered sensor subdevice: ov5640 2-003c (1)
[    2.099958] mx8-img-md: created link [mxc_isi.0] => [mxc_isi.0.capture]
[    2.106564] mx8-img-md: created link [mxc-mipi-csi2.0] => [mxc_isi.0]
[    2.112998] mx8-img-md: created link [ov5640 2-003c] => [mxc-mipi-csi2.0]
[    2.119772] mxc-md 42800000.bus:camera: mxc_md_create_links
[    2.126629] remoteproc remoteproc0: releasing imx-rproc
[    2.132807] remoteproc remoteproc0: releasing imx-rproc
[    2.139760] imx-dwmac 428a0000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[    2.186924] imx-dwmac 428a0000.ethernet eth0: PHY [stmmac-1:07] driver [Microchip LAN8841 Gigabit PHY] (irq=POLL)
[    2.207221] imx-dwmac 428a0000.ethernet eth0: No Safety Features support found
[    2.214454] imx-dwmac 428a0000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[    2.222817] imx-dwmac 428a0000.ethernet eth0: registered PTP clock
[    2.229376] imx-dwmac 428a0000.ethernet eth0: FPE workqueue start
[    2.235471] imx-dwmac 428a0000.ethernet eth0: configuring for phy/rgmii-id link mode
[    2.243626] 8021q: adding VLAN 0 to HW filter on device eth0
[    2.634214] usb 1-1: new high-speed USB device number 2 using ci_hdrc
[    2.796025] usb-storage 1-1:1.0: USB Mass Storage device detected
[    2.802493] scsi host0: usb-storage 1-1:1.0
[    2.807811] remoteproc remoteproc0: releasing imx-rproc
[    3.815663] scsi 0:0:0:0: Direct-Access      USB      SanDisk 3.2Gen1 1.00 PQ: 0 ANSI: 6
[    3.824788] sd 0:0:0:0: [sda] 60125184 512-byte logical blocks: (30.8 GB/28.7 GiB)
[    3.833401] sd 0:0:0:0: [sda] Write Protect is off
[    3.838908] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    3.860161]  sda: sda1
[    3.862760] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    3.869214] remoteproc remoteproc0: releasing imx-rproc
[    6.344483] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[    6.350768] imx-dwmac 428a0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[    6.378213] IP-Config: Complete:
[    6.381435]      device=eth0, hwaddr=1e:48:64:89:f4:51, ipaddr=192.168.0.89, mask=255.255.255.0, gw=192.168.0.254
[    6.391693]      host=desk-mx, domain=, nis-domain=(none)
[    6.397083]      bootserver=192.168.0.169, rootserver=192.168.0.169, rootpath=
[    6.397199] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    6.413522] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    6.420132] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    6.422995] ALSA device list:
[    6.428781] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db
[    6.431781]   #0: SBCX_TLV320
[    6.615832] VFS: Mounted root (nfs filesystem) on device 0:21.
[    6.625250] devtmpfs: mounted
[    6.629253] Freeing unused kernel memory: 3392K
[    6.646249] Run /sbin/init as init process
[    7.139417] systemd[1]: System time before build time, advancing clock.
[    7.321889] systemd[1]: systemd 253.1^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -TPM2 -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
[    7.353674] systemd[1]: Detected architecture arm64.

Welcome to NXP i.MX Release Distro 6.1-mickledore (mickledore)!

[    7.433863] systemd[1]: Hostname set to <desk-mx93>.
[    7.639155] systemd-sysv-generator[182]: SysV service '/etc/init.d/single' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    7.679178] systemd-sysv-generator[182]: SysV service '/etc/init.d/halt' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    7.734562] systemd-sysv-generator[182]: SysV service '/etc/init.d/sshd' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    7.761399] systemd-sysv-generator[182]: SysV service '/etc/init.d/sendsigs' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    7.786347] systemd-sysv-generator[182]: SysV service '/etc/init.d/umountfs' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    7.877676] systemd-sysv-generator[182]: SysV service '/etc/init.d/rc.local' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    7.906297] systemd-sysv-generator[182]: SysV service '/etc/init.d/reboot' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    7.939008] systemd-sysv-generator[182]: SysV service '/etc/init.d/psplash.sh' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    7.972662] systemd-sysv-generator[182]: SysV service '/etc/init.d/trousers' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    8.045014] systemd-sysv-generator[182]: SysV service '/etc/init.d/fuse' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    8.082950] systemd-sysv-generator[182]: SysV service '/etc/init.d/umountnfs.sh' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    8.112726] systemd-sysv-generator[182]: SysV service '/etc/init.d/save-rtc.sh' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    9.153313] systemd[1]: Queued start job for default target Graphical Interface.
[    9.201488] systemd[1]: Created slice Slice /system/getty.
[  OK  ] Created slice Slice /system/getty.
[    9.224127] systemd[1]: Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/modprobe.
[    9.248059] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Created slice Slice /system/serial-getty.
[    9.271682] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[    9.294626] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[    9.318573] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[    9.342579] systemd[1]: Reached target Host and Network Name Lookups.
[  OK  ] Reached target Host and Network Name Lookups.
[    9.366375] systemd[1]: Reached target Path Units.
[  OK  ] Reached target Path Units.
[    9.386376] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[    9.406388] systemd[1]: Reached target Slice Units.
[  OK  ] Reached target Slice Units.
[    9.426400] systemd[1]: Reached target Swaps.
[  OK  ] Reached target Swaps.
[    9.501961] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[    9.526480] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[    9.549498] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on Syslog Socket.
[    9.570711] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[    9.596478] systemd[1]: Listening on Journal Audit Socket.
[  OK  ] Listening on Journal Audit Socket.
[    9.618879] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[    9.642951] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[    9.664731] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[    9.690609] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    9.710867] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    9.741382] systemd[1]: Listening on User Database Manager Socket.
[  OK  ] Listening on User Database Manager Socket.
[    9.778668] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[    9.802087] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[    9.831852] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[    9.850776] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[    9.890744] systemd[1]: Mounting Temporary Directory /tmp...
         Mounting Temporary Directory /tmp...
[    9.915628] systemd[1]: Starting Create List of Static Device Nodes...
         Starting Create List of Static Device Nodes...
[    9.942982] systemd[1]: Starting Load Kernel Module configfs...
         Starting Load Kernel Module configfs...
[    9.966423] systemd[1]: Starting Load Kernel Module drm...
         Starting Load Kernel Module drm...
[    9.990559] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[   10.046303] fuse: init (API version 7.37)
[   10.048137] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[   10.068295] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[   10.086529] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[   10.147138] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[   10.173264] systemd[1]: Starting Generate network units from Kernel command line...
         Starting Generate network …ts from Kernel command line...
[   10.220203] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems...
[   10.239760] systemd-journald[196]: Collecting audit messages is enabled.
[   10.254349] systemd[1]: Starting Coldplug All udev Devices...
         Starting Coldplug All udev Devices...
[   10.273740] systemd[1]: Starting Setup Virtual Console...
         Starting Setup Virtual Console...
[   10.304388] systemd[1]: Started RPC Bind.
[  OK  ] Started RPC Bind.
[   10.333666] systemd[1]: Mounted Huge Pages File System.
[  OK  ] Mounted Huge Pages File System.
[   10.346510] systemd[1]: Mounted POSIX Message Queue File System.
[  OK  ] Mounted POSIX Message Queue File System.
[   10.373792] systemd[1]: Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Debug File System.
[   10.407875] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Mounted Temporary Directory /tmp.
[  OK  ] Finished Create List of Static Device Nodes.
[  OK  ] Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module fuse.
[  OK  ] Finished Load Kernel Modules.
[  OK  ] Finished Generate network units from Kernel command line.
[  OK  ] Finished Remount Root and Kernel File Systems.
[  OK  ] Finished Setup Virtual Console.
         Mounting FUSE Control File System...
         Mounting Kernel Configuration File System...
         Starting Flush Journal to Persistent Storage...
         Starting Apply Kernel Variables...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Mounted    10.807203] systemd-journald[196]: Received client request to flush runtime journal.
1;39mFUSE Control File System.
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Finished Coldplug All udev Devices.
[  OK  ] Reached target Preparation for Local File Systems.
[   11.100445] audit: type=1334 audit(1677836961.956:2): prog-id=5 op=LOAD
[   11.107126] audit: type=1334 audit(1677836961.964:3): prog-id=6 op=LOAD
         Starting Rule-based Manage…for Device Events and Files...
         Mounting /var/volatile...
[  OK  ] Mounted /var/volatile.
         Starting Load/Save OS Random Seed...
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Load/Save OS Random Seed.
[  OK  ] Started Rule-based Manager for Device Events and Files.
         Starting Start Psplash Boot Screen...
[  OK  ] Started Start Psplash Boot Screen.
[  OK  ] Started Start psplash-syst…progress communication helper.
[   12.013884] mtdblock: MTD device 'spi0.0' is NAND, please consider using UBI block devices instead.
[  OK  ] Finished Create Volatile Files and Directories.
         Starting Network Time Synchronization...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[   12.599801] systemd-journald[196]: Oldest entry in /run/log/journal/2cab78c5a4924c12b068e806c2fa7c0b/system.journal is older than the configured file retention duration (1month), suggesting rotation.
[   12.648204] systemd-journald[196]: /run/log/journal/2cab78c5a4924c12b068e806c2fa7c0b/system.journal: Journal header limits reached or header out-of-date, rotating.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target System Time Set.
[  OK  ] Started Daily rotation of log files.
[  OK  ] Reached target Timer Units.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
         Starting sshd.socket...
         Starting Weston socket...
[  OK  ] Listening on sshd.socket.
[  OK  ] Listening on Weston socket.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
[  OK  ] Started Job spooling tools.
[  OK  ] Started Periodic Command Scheduler.
         Starting D-Bus System Message Bus...
[  OK  ] Started Linux Firmware Loader Daemon.
         Starting IPv6 Packet Filtering Framework...
         Starting IPv4 Packet Filtering Framework...
         Starting Telephony service...
[  OK  ] Started Parsec Service.
[  OK  ] Started Updates psplash to basic.
         Starting LSB: Run /etc/rc.local if it exist...
[  OK  ] Started System Logging Service.
[   13.428185] audit: type=1334 audit(1706612628.332:4): prog-id=7 op=LOAD
[   13.442554] audit: type=1334 audit(1706612628.344:5): prog-id=8 op=LOAD
         Starting User Login Management...
         Starting OpenSSH Key Generation...
         Starting Rotate log files...
[  OK  ] Finished IPv6 Packet Filtering Framework.
[  OK  ] Finished IPv4 Packet Filtering Framework.
[  OK  ] Started LSB: Run /etc/rc.local if it exist.
[  OK  ] Finished OpenSSH Key Generation.
[  OK  ] Reached target Preparation for Network.
         Starting Network Configuration...
[  OK  ] Started D-Bus System Message Bus.
         Starting Connection service...
[  OK  ] Started Telephony service.
[  OK  ] Started User Login Management.
[  OK  ] Finished Rotate log files.
[  OK  ] Started Connection service.
         Starting Avahi mDNS/DNS-SD Stack...
[  OK  ] Started Network Configuration.
[  OK  ] Reached target Network.
[  OK  ] Started NFS status monitor for NFSv2/3 locking..
         Starting Network Time Service...
[  OK  ] Started Update psplash to network.
         Starting Terminate Psplash Boot Screen...
         Starting /etc/rc.local Compatibility...
         Starting Wait for Network to be Configured...
         Starting Permit User Sessions...
[  OK  ] Finished Terminate Psplash Boot Scre[   14.788597] mtdblock: MTD device 'spi0.0' is NAND, please consider using UBI block devices instead.
en.
[  OK  ] Started /etc/rc.local Compatibility.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Finished Wait for Network to be Configured.
[  OK  ] Finished Permit User Sessions.
[   14.912114] mtdblock: MTD device 'spi0.0' is NAND, please consider using UBI block devices instead.
[  OK  ] Reached target Network is Online.
[  OK  ] Started Getty on tty1.
[  OK  ] Started Serial Getty on ttyLP0.
[  OK  ] Reached target Login Prompts.
[   15.016578] audit: type=1334 audit(1706612629.920:6): prog-id=9 op=LOAD
[   15.039142] audit: type=1334 audit(1706612629.944:7): prog-id=10 op=LOAD
         Starting Hostname Service...
         Starting LSB: starts tcsd...
         Starting Weston, a Wayland…ositor, as a system service...
         Starting WPA supplicant...
[  OK  ] Started Network Time Service.
[  OK  ] Started LSB: starts tcsd.
[  OK  ] Reached target Multi-User System.
[   15.414442] audit: type=1334 audit(1706612630.320:8): prog-id=11 op=LOAD
[   15.429467] audit: type=1334 audit(1706612630.332:9): prog-id=12 op=LOAD
[   15.451342] mtdblock: MTD device 'spi0.0' is NAND, please consider using UBI block devices instead.
         Starting User Database Manager...
[  OK  ] Started WPA supplicant.
[  OK  ] Started Hostname Service.
[   15.847610] mtdblock: MTD device 'spi0.0' is NAND, please consider using UBI block devices instead.
[  OK  ] Started User Database Manager.
[  OK  ] Created slice User Slice of UID 0.
         Starting User Runtime Directory /run/user/0...
[  OK  ] Reached target Hardware activated USB gadget.
[   16.378097] fsl_mc_err_probe: No ECC DIMMs discovered
[  OK  ] Finished User Runtime Directory /run/user/0.
         Starting User Manager for UID 0...
[   16.588828] audit: type=1006 audit(1706612631.492:10): pid=587 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=1 res=1
[   16.608073] audit: type=1300 audit(1706612631.492:10): arch=c00000b7 syscall=64 success=yes exit=1 a0=8 a1=fffff5b274c0 a2=1 a3=0 items=0 ppid=1 pid=587 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/lib/systemd/systemd" key=(null)
[   16.648431] audit: type=1327 audit(1706612631.492:10): proctitle="(systemd)"
[   16.764265] audit: type=1334 audit(1706612631.668:11): prog-id=13 op=LOAD
[   16.774326] audit: type=1300 audit(1706612631.668:11): arch=c00000b7 syscall=280 success=yes exit=8 a0=5 a1=ffffe6bfe658 a2=90 a3=0 items=0 ppid=1 pid=587 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="systemd" exe="/lib/systemd/systemd" key=(null)
[   16.824542] audit: type=1327 audit(1706612631.668:11): proctitle="(systemd)"
[   16.838337] audit: type=1334 audit(1706612631.668:12): prog-id=13 op=UNLOAD
[   16.850326] audit: type=1334 audit(1706612631.668:13): prog-id=14 op=LOAD
[   16.868310] audit: type=1300 audit(1706612631.668:13): arch=c00000b7 syscall=280 success=yes exit=8 a0=5 a1=ffffe6bfe708 a2=90 a3=aaaae571e04a items=0 ppid=1 pid=587 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="systemd" exe="/lib/systemd/systemd" key=(null)
[   16.906307] audit: type=1327 audit(1706612631.668:13): proctitle="(systemd)"
[  OK  ] Created slice Slice /system/systemd-fsck.
[  OK  ] Found device /dev/mmcblk0p1.
[  OK  ] Found device /dev/mmcblk0p2.
[   17.466116] mtdblock: MTD device 'spi0.0' is NAND, please consider using UBI block devices instead.
         Starting Save/Restore Sound Card State...
         Starting File System Check on /dev/mmcblk0p1...
         Starting File System Check on /dev/mmcblk0p2...
[  OK  ] Finished Save/Restore Sound Card State.
[  OK  ] Reached target Sound Card.
[  OK  ] Started User Manager for UID 0.
[  OK  ] Started Session c1 of User root.
[  OK  ] Found device /dev/mmcblk1p2.
[  OK  ] Finished File System Check on /dev/mmcblk0p1.
         Mounting /run/media/BOOT-mmcblk0p1...
         Starting File System Check on /dev/mmcblk1p2...
[  OK  ] Mounted /run/media/BOOT-mmcblk0p1.
[  OK  ] Found device /dev/mmcblk1p1.
         Starting File System Check on /dev/mmcblk1p1...
[  OK  ] Finished File System Check on /dev/mmcblk0p2.
         Mounting /run/media/ROOTFS-mmcblk0p2...
[   18.466447] EXT4-fs (mmcblk0p2): mounting ext3 file system using the ext4 subsystem
[   18.518806] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Quota mode: none.
[  OK  ] Mounted /run/media/ROOTFS-mmcblk0p2.
[  OK  ] Finished File System Check on /dev/mmcblk1p1.
         Mounting /run/media/boot-mmcblk1p1...
[  OK  ] Found device SanDisk_3.2Gen1 CERTIFICATI.
         Starting File System Check on /dev/sda1...
[  OK  ] Mounted /run/media/boot-mmcblk1p1.
[  OK  ] Started Weston, a Wayland …mpositor, as a system service.
[  OK  ] Reached target Graphical Interface.
         Starting Record Runlevel Change in UTMP...
[  OK  ] Finished Record Runlevel Change in UTMP.
root: fsck 6.6% complete...
NXP i.MX Release Distro 6.1-mickledore desk-mx93 ttyLP0

[   22.897993] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Quota mode: none.
[   26.507271] remoteproc remoteproc0: releasing imx-rproc
[   26.512659] platform imx93-cm33: deferred probe pending
[   45.894337] kauditd_printk_skb: 4 callbacks suppressed
[   45.894348] audit: type=1334 audit(1706612660.800:16): prog-id=10 op=UNLOAD
[   45.906506] audit: type=1334 audit(1706612660.800:17): prog-id=9 op=UNLOAD
root
root@desk-mx93:~#
root@desk-mx93:~# cat /etc/os-release 
ID=fsl-imx-wayland
NAME="NXP i.MX Release Distro"
VERSION="6.1-mickledore (mickledore)"
VERSION_ID=6.1-mickledore
VERSION_CODENAME="mickledore"
PRETTY_NAME="NXP i.MX Release Distro 6.1-mickledore (mickledore)"
BUILD_VERSION="desk-mx9-l-5.0.0-rc2"
root@desk-mx93:~# cat /etc/buildinfo 
-----------------------
Build Configuration:  |
-----------------------
DISTRO = fsl-imx-wayland
DISTRO_VERSION = 6.1-mickledore
MACHINE = desk-mx93
IMAGE_BASENAME = desk-image-qt6
-----------------------
Layer Revisions:      |
-----------------------
meta              = HEAD:a57506c46d92bf0767060102d2139be06d46f575
meta-poky         = HEAD:a57506c46d92bf0767060102d2139be06d46f575
meta-oe           = HEAD:922f41b39f364e5b6be596b4b51e0fb37ffe1971
meta-multimedia   = HEAD:922f41b39f364e5b6be596b4b51e0fb37ffe1971
meta-python       = HEAD:922f41b39f364e5b6be596b4b51e0fb37ffe1971
meta-freescale    = HEAD:7327e03c61823268a5a957fe090c4cc5e1735b34
meta-freescale-3rdparty = HEAD:bccd93f1ceece608e69799b6fc8f79e8a519f89e
meta-freescale-distro = HEAD:7956a0ab407a33c40fdc6eb4fabdcb7dc54fd359
meta-bsp          = HEAD:c842613830da0a5473513cdbc2dce015b0ca9a5d
meta-sdk          = HEAD:c842613830da0a5473513cdbc2dce015b0ca9a5d
meta-ml           = HEAD:c842613830da0a5473513cdbc2dce015b0ca9a5d
meta-v2x          = HEAD:c842613830da0a5473513cdbc2dce015b0ca9a5d
meta-nxp-demo-experience = HEAD:b8c0a9af3e3ca5400b9aff6436fbb654d3108cb4
meta-arm          = HEAD:c6380674f59489b327c5047d803cc35b68642cd4
meta-arm-toolchain = HEAD:c6380674f59489b327c5047d803cc35b68642cd4
meta-chromium     = HEAD:e232c2e21b96dc092d9af8bea4b3a528e7a46dd6
meta-clang        = HEAD:af4dcba009ba98250315520f3003fde4ee164cce
meta-gnome        = HEAD:922f41b39f364e5b6be596b4b51e0fb37ffe1971
meta-networking   = HEAD:922f41b39f364e5b6be596b4b51e0fb37ffe1971
meta-filesystems  = HEAD:922f41b39f364e5b6be596b4b51e0fb37ffe1971
meta-qt6          = HEAD:1406d0a85525a71fe5d7892d7f915404290a78ad
meta-parsec       = HEAD:d7db0a3bd1a8639df7570483f003ce00cbe274a2
meta-tpm          = HEAD:d7db0a3bd1a8639df7570483f003ce00cbe274a2
meta-virtualization = HEAD:38e6b3e2fe0219c773f4637a09221ca5d15bf6fc
meta-dave         = HEAD:7ec931f7492f729281db6ec71a7492a4160f9931
meta-desk-mx      = HEAD:659033ca1edf35389c685567b4523ee640049f74
root@desk-mx93:~#

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

dvdk@vagrant:~$ cat /var/log/syslog | tail -n 2
Jan 30 16:06:08 vagrant tftpd[2326386]: tftpd: serving file from /tftpboot
Jan 30 16:06:15 vagrant rpc.mountd[862]: authenticated mount request from 192.168.0.89:720 for /home/dvdk/desk-mx-l/rfs/desk-mx9-l-5.0.0/mx9 (/home)

Kernel Module[edit | edit source]

The module are already present and loaded on RFS on MVM.

root@desk-mx93:~# ls -l /lib/modules/$(uname -r)
total 1180
drwxr-xr-x  3 root root   4096 Mar  9  2018 extra
drwxr-xr-x 11 root root   4096 Mar  9  2018 kernel
-rw-r--r--  1 root root 220476 Mar  9  2018 modules.alias
-rw-r--r--  1 root root 229732 Mar  9  2018 modules.alias.bin
-rw-r--r--  1 root root  37574 Mar  9  2018 modules.builtin
-rw-r--r--  1 root root  21202 Mar  9  2018 modules.builtin.alias.bin
-rw-r--r--  1 root root  40950 Mar  9  2018 modules.builtin.bin
-rw-r--r--  1 root root 239291 Mar  9  2018 modules.builtin.modinfo
-rw-r--r--  1 root root  52225 Mar  9  2018 modules.dep
-rw-r--r--  1 root root  91940 Mar  9  2018 modules.dep.bin
-rw-r--r--  1 root root    146 Mar  9  2018 modules.devname
-rw-r--r--  1 root root  33890 Mar  9  2018 modules.order
-rw-r--r--  1 root root    391 Mar  9  2018 modules.softdep
-rw-r--r--  1 root root  89290 Mar  9  2018 modules.symbols
-rw-r--r--  1 root root 114396 Mar  9  2018 modules.symbols.bin
root@desk-mx93:~# lsmod
Module                  Size  Used by
crct10dif_ce           16384  1
polyval_ce             16384  0
polyval_generic        16384  1 polyval_ce
layerscape_edac_mod    16384  0
fuse                  135168  1
root@desk-mx93:~#