Open main menu

DAVE Developer's Wiki β

Changes

DESK-MX6-L/General/Booting from NFS

2,753 bytes added, 16:44, 7 March 2022
no edit summary
!style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white"|Notes
|-
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000"|{{oldid|14297|1.0.0}}
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000"|Oct 2020
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000"|First DESK release
|-
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000"|2.0.0
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000"|Mar 2022
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000"|DESK 3.0.0 release
|-
|}
<section end=History/>
=== Host (Virtual Machine) configuration ===
The [[DESK-MX6-L | DESK-MX6-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 the following chapters: network adapter, nfs server
[[File:Network-bridge.png|500px]]
then, modify the network interfaces configuration using the <code>netplan</code> configuration file, for example:
<pre class="workstation-terminal">dvdk@vagrant:~$ cat /etc/netplan/01-netcfg.yaml network: version: 2 ethernets: eth0: dhcp4: false addresses: - 192.168.0.125/24 gateway4: 192.168.0.254 nameservers: addresses: [[File:XELK VM Network8.8.8.8, 1.1.1.png|500px]1]dvdk@vagrant:~$ </pre>
and restart it:
then check or re<pre class="workstation-configure the Host IP addressterminal">dvdk@vagrant:~$ sudo netplan applydvdk@vagrant:~$ </pre>
<pre>dvdk@vagrant:~$ ifconfigeth0 Link encap:Ethernet HWaddr 08:00:27:26:e3:8c inet addr:192.168.0.121 Bcast:192.168.0.255 Mask:255.255.255.0 inet6 addr: fe80::178:59dd:914d:7e23/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:1481286 errors:0 dropped:10 overruns:0 frame:0 TX packets:486082 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:1647604355 (1.6 GB) TX bytes:53874713 (53.8 MB) lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Check or re-configure the Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:224 errors:0 dropped:0 overruns:0 frame:0 TX packets:224 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1 RX bytes:26014 (26.0 KB) TX bytes:26014 (26.0 KB)IP address
<pre class="workstation-terminal">
dvdk@vagrant:~$ ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
link/ether 08:00:27:b1:28:5d brd ff:ff:ff:ff:ff:ff
inet 192.168.0.125/24 brd 192.168.0.255 scope global eth0
valid_lft forever preferred_lft forever
inet6 fe80::a00:27ff:feb1:285d/64 scope link
valid_lft forever preferred_lft forever
dvdk@vagrant:~$
</pre>
The NFS server should exports the correct file system directory (in our example)
<preclass="workstation-terminal">
dvdk@vagrant:~$ cat /etc/exports
/home 0.0.0.0/0.0.0.0(rw,sync,no_root_squash,no_subtree_check,crossmnt)
otherwise, change its configuration and then restart the nfs server:
<preclass="workstation-terminal">
dvdk@vagrant:~$ sudo /etc/init.d/nfs-kernel-server restart
[ ok ] Restarting nfs-kernel-server (via systemctl): nfs-kernel-server.service.
<pre>
=> setenv serverip 192.168.0.121125
=> setenv ipaddr 192.168.0.90
</pre>
<pre>
=> setenv bootfile /tftpboot/desk-mx-l/uImagedesk-mx6-l-3.0.0_uImage=> setenv fdtfile /tftpboot/desk-mx-l/imx6qdesk-xelkmx6-l-23.0.0_imx6dl-0sbcx-0cb0012.dtb
</pre>
finally, the ''root file system'' directory on the Virtual Machine should be configured for let the kernel to find the '''INIT'''
<pre>=> setenv rootpath /home/dvdk/desk-mx-l/rfs/desk-mxmx6-l</pre>
To run this configuration just issue the '''net_nfs''' command which firstly download the kernel and device tree using the tftp protocol
<pre class="workstation-terminal">
=> run net_nfs
1152054 bytes read in 58 ms (18.9 MiB/s)
Using FEC device
TFTP from server 192.168.0.121125; our IP address is 192.168.0.90Filename 'desk-mx-l/uImagedesk-mx6-l-3.0.0_uImage'.
Load address: 0x12000000
Loading: #################################################################
#################################################################
#################################################################
################################################################# 741################################################################# ################################################################# ################################# 528.2 3 KiB/s
done
Bytes transferred = 7031520 8154280 (6b4ae0 7c6ca8 hex)
Using FEC device
TFTP from server 192.168.0.121125; our IP address is 192.168.0.90Filename 'desk-mx-l/imx6qdesk-mx6-l-3.0.0_imx6dl-sbcx-cb0012.dtb'.
Load address: 0x18000000
Loading: ###########
846482.7 4 KiB/s
done
Bytes transferred = 53760 51910 (d200 cac6 hex)FDT: override 'som_uniqueid' with 'dbc7977de317318f:0b0931d41b1229d4'FDT: override 'cb_uniqueid' with 'da000011fb000030:0dd2e72d4d8eea2d'
## Booting kernel from Legacy Image at 12000000 ...
Image Name: Linux-45.1410.9835-desk-mx6-l-13.0.0
Image Type: ARM Linux Kernel Image (uncompressed)
Data Size: 7031456 8154216 Bytes = 67.7 8 MiB
Load Address: 10008000
Entry Point: 10008000
## Flattened Device Tree blob at 18000000
Booting using the fdt blob at 0x18000000
Loading Kernel Image ... OK reserving fdt memory region: addr=18000000 size=e000 Using Device Tree in place at 18000000, end 18010fff1800ffff
switch to ldo_bypass mode!
Frame buffer: configure splashscreen reserved memory to 0x8e000000 0x4e000000 (2 MiB)
WARNING: could not find 2nd splashscreen reserved memory path
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 45.1410.9835-desk-mx6-l-13.0.0 (dvdkjenkins@vagrantxenialbakery) (arm-poky-linux-gnueabi-gcc version 7(GCC) 10.32.0 , GNU ld (GCCGNU Binutils)2.36.1.20210209) #1 SMP PREEMPT Fri Oct 9 12Tue Feb 8 10:5614:59 CEST 202028 CET 2022[ 0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d10c5387d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[ 0.000000] OF: fdt: Machine model: AxelLite Quad DL on SBCX CB0012
[ 0.000000] Memory policy: Data cache writealloc
[ 0.000000] OF: reserved mem: node linux,cma compatible matching fail[ 0.000000] Reserved memory: created ipuv3_fb memory pool at 0x8e0000000x4e000000, size 2 MiB
[ 0.000000] OF: reserved mem: initialized node splashscreen, compatible id fsl,ipuv3-fb
[ 0.000000] Zone ranges:[ 0.000000] Normal [mem 0x0000000010000000-0x000000004fffffff][ 0.000000] HighMem empty[ 0.000000] Movable zone start for each node[ 0.000000] Early memory node ranges[ 0.000000] node 0: [mem 0x0000000010000000-0x000000004dffffff][ 0.000000] node 0: [mem 0x000000004e000000-0x000000004e1fffff][ 0.000000] node 0: [mem 0x000000004e200000-0x000000004fffffff][ 0.000000] Initmem setup node 0 [mem 0x0000000010000000-0x000000004fffffff][ 0.000000] percpu: Embedded 16 15 pages/cpu @e578e000 s35596 s32588 r8192 d21748 u65536d20660 u61440[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 520496260096[ 0.000000] Kernel command line: root=/dev/nfs rw nfsroot=192.168.0.121125:/opthome/dvdk/nfsrootdesk-mx-l/axelrfs/xelkdesk-mx6-l,v3,tcp ip=192.168.0.90:192.168.0.121125::255.255.255.0:xelk:eth0:off panic=1 console=ttymxc2,115200 cma=64M vmalloc=400M video=LVDS-1:d 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);spi0.0:64k(spi-SPL),960k(spi-uboot),256k(spi-env1),256k(spi-env2),512k(spi-dtb),8M(spi-kernel),4M(spi-splash),-(spi-free)[ 0.000000] PID Dentry cache hash table entries: 4096 131072 (order: 27, 16384 524288 bytes, linear)[ 0.000000] Dentry Inode-cache hash table entries: 262144 65536 (order: 86, 1048576 262144 bytes, linear)[ 0.000000] Inodemem auto-cache hash table entriesinit: stack: 131072 (orderoff, heap alloc: 7off, 524288 bytes)heap free:off[ 0.000000] Memory: 1734528K1019048K/2095104K 1048576K available (9216K 11264K kernel code, 660K 1340K rwdata, 2540K 2920K rodata, 1024K init, 426K 446K bss, 360576K 29528K reserved, 0K cma-reserved, 88064K 0K highmem)[ 0.000000] Virtual kernel memory layoutSLUB:[ HWalign=64, Order=0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)3, MinObjects=0, CPUs=2, Nodes=1[ 0.000000] fixmap rcu: 0xffc00000 - 0xfff00000 (3072 kB)Preemptible hierarchical RCU implementation.[ 0.000000] rcu: vmalloc : 0xe7000000 - 0xff800000 ( 392 MB)RCU event tracing is enabled.[ 0.000000] lowmem rcu: 0x80000000 - 0xe6800000 (1640 MB)[ 0.000000] pkmap : 0x7fe00000 - 0x80000000 ( RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2 MB).[ 0.000000] modules : 0x7f000000 - 0x7fe00000 ( 14 MB)[ 0Trampoline variant of Tasks RCU enabled.000000] .text : 0x80008000 - 0x80a00000 (10208 kB)[ 0.000000] .init rcu: 0x80d00000 RCU calculated value of scheduler- 0x80e00000 (1024 kB)[ 0.000000] enlistment delay is 10 jiffies.data : 0x80e00000 - 0x80ea5228 ( 661 kB)[ 0.000000] .bss : 0x80eae060 - 0x80f18988 ( 427 kB)[ 0.000000] SLUBrcu: HWalignAdjusting geometry for rcu_fanout_leaf=6416, Ordernr_cpu_ids=0-3, MinObjects=0, CPUs=4, Nodes=1[ 0.000000] Preemptible hierarchical RCU implementation.[ 0.000000] Tasks RCU enabled.2
[ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[ 0.000000] L2C-310 errata 752271 erratum 769419 enabled
[ 0.000000] L2C-310 enabling early BRESP for Cortex-A9
[ 0.000000] L2C-310 full line of zeros enabled for Cortex-A9
[ 0.000000] L2C-310 ID prefetch enabled, offset 16 lines
[ 0.000000] L2C-310 dynamic clock gating enabled, standby mode enabled
[ 0.000000] L2C-310 cache controller enabled, 16 ways, 1024 512 kB[ 0.000000] L2C-310: CACHE_ID 0x410000c70x410000c8, AUX_CTRL 0x764700010x76450001[ 0.000000] random: get_random_bytes called from start_kernel+0x32c/0x4d0 with crng_init=0
[ 0.000000] Switching to timer-based delay loop, resolution 333ns
[ 0.000008000007] sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 715827882841ns[ 0.000027000033] clocksource: mxc_timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 637086815595 ns[ 0.001670001424] Console: colour dummy device 80x30[ 0.001703001458] Calibrating delay loop (skipped), value calculated using timer frequency.. 6.00 BogoMIPS (lpj=30000)[ 0.001720001479] pid_max: default: 32768 minimum: 301[ 0.001850001619] Mount-cache hash table entries: 4096 2048 (order: 21, 16384 8192 bytes, linear)[ 0.001868001647] Mountpoint-cache hash table entries: 4096 2048 (order: 21, 16384 8192 bytes, linear)[ 0.002399002356] CPU: Testing write buffer coherency: ok[ 0.002433002401] CPU0: Spectre v2: using BPIALL workaround[ 0.002787002627] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000[ 0.039600003400] Setting up static identity map for 0x10100000 - 0x10100060[ 0.059554003571] rcu: Hierarchical SRCU implementation.[ 0.099556004752] smp: Bringing up secondary CPUs ...[ 0.169832005573] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001[ 0.169838005583] CPU1: Spectre v2: using BPIALL workaround[ 0.239814005750] CPU2smp: thread -Brought up 1node, cpu 2, socket 0, mpidr 80000002CPUs[ 0.239819005766] CPU2SMP: Spectre v2: using BPIALL workaroundTotal of 2 processors activated (12.00 BogoMIPS).[ 0.309812005778] CPU3CPU: thread -1, cpu 3, socket 0, mpidr 80000003All CPU(s) started in SVC mode.[ 0.309817006191] CPU3devtmpfs: Spectre v2: using BPIALL workaroundinitialized[ 0.309940015824] smp: Brought up 1 node, 4 CPUs[ 0VFP support v0.309953] SMP3: Total of implementor 41 architecture 3 part 30 variant 9 rev 4 processors activated (24.00 BogoMIPS).[ 0.309962016097] CPUclocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: All CPU(s) started in SVC mode.19112604462750000 ns[ 0.310826016122] devtmpfsfutex hash table entries: 512 (order: initialized3, 32768 bytes, linear)[ 0.320031016267] randompinctrl core: get_random_u32 called from bucket_table_alloc+0x114/0x23c with crng_init=0initialized pinctrl subsystem[ 0.320288017228] VFP support v0.3NET: implementor 41 architecture 3 part 30 variant 9 rev 4Registered protocol family 16[ 0.320529018756] clocksourceDMA: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 nspreallocated 256 KiB pool for atomic coherent allocations[ 0.320554019958] futex hash table entriesthermal_sys: 1024 (order: 4, 65536 bytes)Registered thermal governor 'step_wise'[ 0.320780019968] pinctrl corethermal_sys: initialized pinctrl subsystemRegistered thermal governor 'user_space'[ 0.321564] NET: Registered protocol family 16[ 0.322642] DMA: preallocated 256 KiB pool for atomic coherent allocations[ 0.323581020424] cpuidle: using governor menu[ 0.323851020611] CPU identified as i.MX6QMX6DL, silicon rev 1.23[ 0.323981020734] Use WDOG2 as reset source[ 0.331904241613] vdd1p1: supplied by regulator-dummy[ 0.332387250706] vdd3p0: supplied by regulator-dummy[ 0.332808259738] vdd2p5: supplied by regulator-dummy[ 0.333281268574] vddarm: bypassed regulator has no supply![ 0.333292268589] vddarm: failed to get the current voltage(: -517)EPROBE_DEFER[ 0.334011286365] vddsoc: bypassed regulator has no supply![ 0.334022286381] vddsoc: failed to get the current voltage(: -517)EPROBE_DEFER[ 0.345764303940] hwmxs_phy 20c9000.usbphy: supply phy-breakpoint: 3p0 not found 5 , using dummy regulator[ 0.313192] mxs_phy 20ca000.usbphy: supply phy-3p0 not found, using dummy regulator[ 0.775872] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.[ 0.345778775888] hw-breakpoint: maximum watchpoint size is 4 bytes.[ 0.346455777223] imx6qimx6dl-pinctrl 20e0000.iomuxcpinctrl: initialized IMX pinctrl driver[ 0.348809779297] imx mu driver is registered.[ 0.779869] imx rpmsg driver is registered.[ 0.371703815931] vgaarb: loaded[ 0.372451816739] SCSI subsystem initialized[ 0.372843817244] usbcore: registered new interface driver usbfs[ 0.372898817306] usbcore: registered new interface driver hub[ 0.372982817358] usbcore: registered new device driver usb[ 0.373170817515] usb_phy_generic 2000000.aips-bususbphynop1:usbphy_nop1: 2000000.aips-bus:usbphy_nop1 supply vcc not found, using dummy regulator[ 0.373331817862] usb_phy_generic 2000000.aips-bus:usbphy_nop2: 2000000.aips-bususbphynop2:usbphy_nop2 supply vcc not found, using dummy regulator[ 0.374517822917] i2c i2c-1: IMX I2C adapter registered[ 0.374539] i2c i2c-1: can't use DMA, using PIO instead.[ 0.375041824075] i2c i2c-2: IMX I2C adapter registered[ 0.375059824823] i2c i2c-2mc: Linux media interface: can't use DMA, using PIO insteadv0.10[ 0.375539824872] videodev: Linux video capture interface: v2.00[ 0.375593824932] pps_core: LinuxPPS API ver. 1 registered[ 0.375603824945] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>[ 0.375624824970] PTP clock support registered[ 0.399618849696] imx-ipuv3 2400000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)[ 0.429612] imx-ipuv3 2800000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)[ 0.430666851203] mxc_vdoa 21e4000.vdoa: i.MX Video Data Order Adapter(VDOA) driver probed[ 0.431161851768] mxc_mipi_csi2 21dc000.mipi_csimipi: i.MX MIPI CSI2 driver probed[ 0.431176851785] mxc_mipi_csi2 21dc000.mipi_csimipi: i.MX MIPI CSI2 dphy version is 0x3130302a[ 0.431284852019] MIPI CSI2 driver module loaded[ 0.431451852088] Advanced Linux Sound Architecture Driver Initialized.[ 0.432513853363] Bluetooth: Core ver 2.22[ 0.432554853418] NET: Registered protocol family 31[ 0.432565853431] Bluetooth: HCI device and connection manager initialized[ 0.432581853450] Bluetooth: HCI socket layer initialized[ 0.432595853466] Bluetooth: L2CAP socket layer initialized[ 0.432628853494] Bluetooth: SCO socket layer initialized[ 0.433601854103] clocksource: Switched to clocksource mxc_timer1[ 0.433715854283] VFS: Disk quotas dquot_6.6.0[ 0.433789854369] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)[ 0.441858864405] NET: Registered protocol family 2[ 0.442414865169] TCP established tcp_listen_portaddr_hash hash table entries: 16384 512 (order: 40, 65536 6144 bytes, linear)[ 0.442561865212] TCP established hash table entries: 8192 (order: 3, 32768 bytes, linear)[ 0.865301] TCP bind hash table entries: 16384 8192 (order: 54, 131072 65536 bytes, linear)[ 0.442820865436] TCP: Hash tables configured (established 16384 8192 bind 163848192)[ 0.442940865622] UDP hash table entries: 1024 512 (order: 32, 32768 16384 bytes, linear)[ 0.443022865668] UDP-Lite hash table entries: 1024 512 (order: 32, 32768 16384 bytes, linear)[ 0.443238865855] NET: Registered protocol family 1[ 0.443719866459] RPC: Registered named UNIX socket transport module.[ 0.443732866474] RPC: Registered udp transport module.[ 0.443740866484] RPC: Registered tcp transport module.[ 0.443749866493] RPC: Registered tcp NFSv4.1 backchannel transport module.[ 0.444440867411] hw perfeventsPCI: no CLS 0 bytes, default 64[ 0.867908] hw perfevents: no interrupt-affinity property for /soc/pmu, guessing.[ 0.444677868101] hw perfevents: enabled with armv7_cortex_a9 PMU driver, 7 counters available[ 0.446578870072] Bus freq driver module loaded[ 0.447978871135] Initialise system trusted keyrings[ 0.871353] workingset: timestamp_bits=30 max_order=19 18 bucket_order=0[ 0.452091876564] NFS: Registering the id_resolver key type[ 0.452123876596] Key type id_resolver registered[ 0.452132876608] Key type id_legacy registered[ 0.452178876657] ntfs: driver 2.1.32 [Flags: R/W].[ 0.452495877049] fuse : init (API version 7.2632)[ 0.457469970212] bounce: pool size: 64 pagesKey type asymmetric registered[ 0.457502970231] io scheduler noop Asymmetric key parser 'x509' registered[ 0.457516970257] io scheduler mq-deadline registered[ 0.457654970268] io scheduler cfq kyber registered (default)[ 0.457666973204] io scheduler mq-deadline registered[ 0.457677] io scheduler kyber registered[ 0.459875] imx6q-imx6q-pcie 1ffc000.pcie: no reserved region node.[ 0.459976] imx6q-pcie 1ffc000.pcie: 1ffc000.pcie supply epdev_on not found, using dummy regulator[ 0.460295978575] OFimx-sdma 20ec000.sdma: PCI: host bridge Direct firmware load for imx/socsdma/pcie@1ffc000 ranges:sdma-imx6q.bin failed with error -2[ 0.460330978595] OF: PCI: IO 0x01f80000..0x01f8ffff imx-> 0x00000000[ 0sdma 20ec000.460350] OFsdma: PCIFalling back to sysfs fallback for: MEM 0x01000000..0x01efffff imx/sdma/sdma-> 0x01000000[ 0.709145] imx6q-pcie 1ffc000.pcie: phy link never came upbin[ 0.712220980601] imx6qmxs-pcie 1ffc000dma 110000.pciedma-apbh: failed to initialize hostinitialized[ 0.712236985262] imx6qpfuze100-pcie 1ffc000.pcieregulator 1-0008: Full layer: 2, Metal layer: unable to add pcie port.1[ 0.712467985989] imx6qpfuze100-regulator 1-pcie0008: FAB: 0, FIN: probe of 1ffc000.pcie failed with error -1100[ 0.714273986004] imxpfuze100-sdma 20ec000regulator 1-0008: pfuze100 found.sdma: no iram assigned, using external mem[ 0.714488993180] imxSW4: Bringing 3150000uV into 1800000-sdma 20ec000.sdma: Falling back to user helper1800000uV[ 0.717918999881] mxsVGEN3: Bringing 2800000uV into 2500000-dma 1100002500000uV[ 1.dma001386] VGEN4: Bringing 3000000uV into 1800000-apbh: initialized1800000uV[ 01.719823002891] imxVGEN5: Bringing 3000000uV into 2800000-pgc-pd imx-pgc-power-domain.0: Linked as a consumer to 20dc000.gpc2800000uV[ 01.721571006478] pfuze100-regulator 1-0008Serial: Full layer: 18250/16550 driver, 4 ports, Metal layer: 1IRQ sharing disabled[ 01.722280009031] pfuze100-regulator 1-000821e8000.serial: FAB: 0ttymxc1 at MMIO 0x21e8000 (irq = 78, FIN: 0base_baud = 5000000) is a IMX[ 01.722295010031] pfuze100-regulator 1-000821ec000.serial: pfuze100 found.ttymxc2 at MMIO 0x21ec000 (irq = 79, base_baud = 5000000) is a IMX[ 01.735642014601] SW4: Bringing 3150000uV into 1800000imx6q-1800000uV[ 0pcie 1ffc000.743347] VGEN3pcie: host bridge /soc/pcie@1ffc000 ranges: Bringing 2800000uV into 2500000-2500000uV[ 01.744792014653] VGEN4: Bringing 3000000uV into 1800000imx6q-1800000uV[ 0pcie 1ffc000.746269] VGEN5pcie: Bringing 3000000uV into 2800000 IO 0x0001f80000..0x0001f8ffff -2800000uV> 0x0000000000[ 01.748140014680] Serialimx6q-pcie 1ffc000.pcie: MEM 0x0001000000..0x0001efffff -> 0x0001000000[ 2.000818] printk: 8250/16550 driver, 4 ports, IRQ sharing disabledconsole [ttymxc2] enabled[ 02.749911006236] 21e800021f0000.serial: ttymxc1 ttymxc3 at MMIO 0x21e8000 0x21f0000 (irq = 7380, base_baud = 5000000) is a IMX[ 02.750419014919] 21ec000imx6q-pcie 1ffc000.pcie: Phy link never came up[ 2.021582] 21f4000.serial: ttymxc2 ttymxc4 at MMIO 0x21ec000 0x21f4000 (irq = 7481, base_baud = 5000000) is a IMX[ 12.742762030346] console [ttymxc2] enabledimx6q-pcie 1ffc000.pcie: failed to initialize host[ 12.747019036285] 21f0000.serialimx6q-pcie 1ffc000.pcie: ttymxc3 at MMIO 0x21f0000 (irq = 75, base_baud = 5000000) unable to add pcie port.[ 2.042632] imx sema4 driver is a IMXregistered.[ 12.756230056796] 21f4000.serialbrd: ttymxc4 at MMIO 0x21f4000 (irq = 76, base_baud = 5000000) is a IMXmodule loaded[ 2.070129] loop: module loaded[ 12.767430074506] imx sema4 ahci driver is registered.[ 12.772018081150] nand: device found, Manufacturer ID: 0x01, Chip ID: 0xdc[drm 2.087576] Initialized vivante 1.0.0 20120216 for platformnand:Vivante GCCore on minor 0AMD/Spansion S34ML04G1[ 12.780418091509] nand: 512 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64[drm 2.099259] Initialized vivante 1.0.0 20120216 on minor 0Scanning device for bad blocks[ 12.793647112229] brdrandom: module loadedfast init done[ 12.804250244938] loop: module loadedBad eraseblock 724 at 0x000005a80000[ 12.813447892331] random: fast init done9 cmdlinepart partitions found on MTD device gpmi-nand[ 12.819491898547] Creating 9 MTD partitions on "gpmi-nand": device found, Manufacturer ID: 0x01, Chip ID: 0xdc[ 12.825890903609] 0x000000000000-0x000000200000 : "nand: AMD/Spansion S34ML04G1-SPL"[ 12.829822915087] 0x000000200000-0x000000800000 : "nand: 512 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64-uboot"[ 12.837551925109] gpmi0x000000800000-0x000000900000 : "nand 112000.gpmi-nand: mode:4 ,failed in set feature.env1"[ 12.844122935017] Scanning device for bad blocks0x000000900000-0x000000a00000 : "nand-env2"[ 2.243342945080] 9 cmdlinepart partitions found on MTD device gpmi0x000000a00000-0x000000b00000 : "nand-fdt"[ 2.249556955038] Creating 9 MTD partitions on 0x000000b00000-0x000000c00000 : "gpminand-nandspare":[ 2.254637965079] 0x0000000000000x000000c00000-0x000000200000 0x000001400000 : "nand-SPLkernel"[ 2.260611975039] 0x0000002000000x000001400000-0x000000800000 0x000001800000 : "nand-ubootsplash"[ 2.266741985121] 0x0000008000000x000001800000-0x000000900000 0x000020000000 : "nand-env1ubi"[ 2.272710995027] 0x000000900000gpmi-0x000000a00000 : "nand 112000.nand-env2"controller: driver registered.[ 23.278708003065] 0x000000a00000-0x000000b00000 : "nand-fdt"spinor@0 enforce active low on chipselect handle[ 23.284578009570] 0x000000b00000spi-0x000000c00000 nor spi0.0: unrecognized JEDEC id bytes: "nand-spare"00 00 00 00 00 00[ 23.290601016569] 0x000000c00000spi-0x000001400000 nor: "nandprobe of spi0.0 failed with error -kernel"2[ 23.296862022771] 0x000001400000-0x000001800000 : "nand-splash"[ 2spidev@0 enforce active low on chipselect handle[ 3.303028030886] 0x000001800000-0x000020000000 libphy: Fixed MDIO Bus: "nand-ubi"probed[ 23.315400035770] gpmi-nand 112000.gpmi-nand: CAN device driver registered.interface[ 23.323157043992] m25p80 spi0.0pps pps0: unrecognized JEDEC id bytes: 00, 00, 00new PPS source ptp0[ 23.329385050004] m25p80libphy: probe of spi0.0 failed with error -2[ 2.334745] spi_imx 2008000.ecspifec_enet_mii_bus: probed[ 23.339816056192] spi_imx 2014000fec 2188000.ecspiethernet eth0: probedregistered PHC device 0[ 23.344665063463] libphyusbcore: Fixed MDIO Bus: probedregistered new interface driver asix[ 23.349093068958] CAN device usbcore: registered new interface driver interfaceax88179_178a[ 23.353185075162] flexcan 2090000.flexcanusbcore: 2090000.flexcan supply xceiver not found, using dummy regulatorregistered new interface driver cdc_ether[ 23.363075081038] flexcan 2090000.flexcanusbcore: device registered (reg_base=e735c000, irq=35)new interface driver cdc_eem[ 23.372508086779] fec 2188000.ethernetusbcore: 2188000.ethernet supply phy not found, using dummy regulatorregistered new interface driver net1080[ 23.381579092488] pps pps0usbcore: registered new PPS source ptp0interface driver cdc_subset[ 23.386594098494] libphy: fec_enet_mii_bus: probed[ 2.392442] fec 2188000.ethernet eth0: registered PHC device 0[ 2.399482] usbcoreusbcore: registered new interface driver asixzaurus[ 23.404960104161] usbcore: registered new interface driver ax88179_178acdc_ncm[ 23.411093109864] usbcore: registered new interface driver cdc_ethercdc_mbim[ 23.416989115650] usbcoreehci_hcd: registered new interface driver cdc_eemUSB 2.0 'Enhanced' Host Controller (EHCI) Driver[ 23.422683122211] usbcoreehci-pci: registered new interface EHCI PCI platform driver net1080[ 23.428403127145] usbcore: registered new interface driver cdc_subsetcdc_wdm[ 23.434437132864] usbcore: registered new interface driver zaurususb-storage[ 23.440068143996] usbcoresnvs_rtc 20cc000.snvs: registered new interface driver cdc_ncmsnvs-rtc-lp: registered as rtc0[ 23.445795150188] usbcoresnvs_rtc 20cc000.snvs:snvs-rtc-lp: setting system clock to 2022-03-07T15:41: registered new interface driver cdc_mbim58 UTC (1646667718)[ 23.451548160184] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driveri2c /dev entries driver[ 23.458114164718] ehcii2c i2c-pci1: EHCI PCI platform driverAdded multiplexed i2c bus 4[ 23.462917171568] usbcoreinput: registered new interface driver cdc_wdm[ 2TSC2007 Touchscreen as /devices/platform/soc/2100000.bus/21a4000.468680] usbcore: registered new interface driver usbi2c/i2c-1/i2c-5/5-storage0048/input/input0[ 23.475949183663] usbmisc_imx 2184800.usbmisci2c i2c-1: 2184800.usbmisc supply vbusAdded multiplexed i2c bus 5[ 3.188516] i2c-mux-wakeup gpio i2c2mux: 2 port mux on 21a4000.i2c adapter[ 3.196303] pwm-backlight backlight: supply power not found, using dummy regulator[ 23.495369206280] ci_hdrc ci_hdrcmxc_hdmi 20e0000.1hdmi_video: EHCI Host Controllersupply HDMI not found, using dummy regulator[ 23.500279215798] ci_hdrc ci_hdrc.1mxc_sdc_fb fb@0: new USB bus registered, assigned bus number 1mxc display driver ldb[ 23.533638221704] ci_hdrc ci_hdrc.1mxc_sdc_fb fb@0: USB 2.0 startedusing reserved memory region at 0x4e000000, EHCI 1.00size 2 MiB[ 23.539255229410] usb usb1mxc_sdc_fb fb@0: New USB device found, idVendor=1d6b, idProduct=0002assigned reserved memory node splashscreen[ 23.546080236115] usb usb1mxc_sdc_fb fb@0: New USB device strings: Mfr=3, Product=2, SerialNumber=1using memory region 0x4e000000 0x4e1fffff[ 23.553311519499] usb usb1VGEN3: Product: EHCI Host Controllervoltage operation not allowed[ 23.558216764468] usb usb1ov5640_read_reg: Manufacturerwrite reg error: Linux 4reg=300a[ 3.14.98-desk-mx6-l-1.0.0 ehci_hcd769439] camera ov5640_mipi is not found[ 23.565548775286] usb usb1mxc_v4l2_output v4l2_out: SerialNumber: ci_hdrc.1V4L2 device registered as video16[ 23.570440782054] hub 1-0mxc_v4l2_output v4l2_out:1.0: USB hub foundV4L2 device registered as video17[ 23.574271789837] hub 1-0Bluetooth:1HCI UART driver ver 2.3[ 3.0794376] Bluetooth: 1 port detectedHCI UART protocol H4 registered[ 23.581320799525] snvs_rtc 20cc000.snvs:snvs-rtc-lp: rtc coreBluetooth: HCI UART protocol BCSP registered 20cc000[ 3.snvs804903] Bluetooth:snvs-rtc-lp as rtc0HCI UART protocol LL registered[ 23.590651810622] i2c /dev entries sdhci: Secure Digital Host Controller Interface driver[ 23.595188816910] i2c i2c-1sdhci: Added multiplexed i2c bus 3Copyright(c) Pierre Ossman[ 23.601590821273] inputsdhci-pltfm: TSC2007 Touchscreen as /devices/soc0/soc/2100000SDHCI platform and OF driver helper[ 3.aips828216] sdhci-bus/21a4000esdhc-imx 2190000.i2c/i2cmmc: voltage-1/i2c-4/4-0048/input/input0ranges unspecified[ 23.613137835339] i2c i2csdhci-esdhc-1imx 2194000.mmc: Added multiplexed i2c bus 4voltage-ranges unspecified[ 23.618003842305] i2csdhci-muxesdhc-gpio i2c2muximx 2190000.mmc: 2 port mux on 21a4000.i2c adapterGot CD GPIO[ 23.625461844790] pwm-backlight backlightcaam 2100000.crypto: backlight supply power not found, using dummy regulatorEntropy delay = 3200[ 23.635794865062] mxc_hdmi 20e0000caam 2100000.hdmi_videocrypto: 20e0000.hdmi_video supply HDMI not found, using dummy regulatorInstantiated RNG4 SH0[ 23.646717877533] mxc_sdc_fb fb@0caam 2100000.crypto: registered mxc display driver ldbInstantiated RNG4 SH1[ 23.652610882687] mxc_sdc_fb fb@0caam 2100000.crypto: using reserved memory region at 0x8e000000, size 2 MiBdevice ID = 0x0a16010000000100 (Era 4)[ 23.660311889358] mxc_sdc_fb fb@0caam 2100000.crypto: assigned reserved memory node splashscreen[ job rings = 2.666959] mxc_sdc_fb fb@, qi = 0: using memory region 0x8e000000 0x8e1fffff[ 23.956221889547] IR NEC protocol handler initializedmmc0: SDHCI controller on 2190000.mmc [2190000.mmc] using ADMA[ 23.960761909192] IR RC5(xcaam algorithms registered in /proc/sz) protocol handler initializedcrypto[ 23.965851915990] IR RC6 protocol handler initializedcaam 2100000.crypto: registering rng-caam[ 23.970387922172] IR JVC protocol handler initializedDevice caam-keygen registered[ 23.974939933653] IR Sony protocol handler initializedrandom: crng init done[ 23.979560934840] IR SANYO protocol handler initialized[ 2caam-snvs 20cc000.984284] IR Sharp protocol handler initializedcaam-snvs: violation handlers armed - non-secure state[ 23.988995939982] IR MCE Keyboard/mouse protocol handler initializedmmc0: host does not support reading read-only switch, assuming write-enable[ 23.994846945608] IR XMP protocol handler initialized[ 2.999740] mxc_v4l2_output v4l2_outusbcore: V4L2 device registered as video16new interface driver usbhid[ 3.006511956898] mxc_v4l2_output v4l2_outmmc0: V4L2 device registered as video17new high speed SDHC card at address aaaa[ 3.014794958710] VGEN3usbhid: voltage operation not allowedUSB HID core driver[ 3.373640968418] camera ov5640_mipi is foundmmcblk0: mmc0:aaaa SA16G 14.8 GiB[ 3.378370974916] Bluetoothfsl-ssi-dai 2028000.ssi: HCI UART driver ver 2.3No cache defaults, reading back from HW[ 3.382824976721] Bluetooth mmcblk0: HCI UART protocol H4 registeredp1 p2[ 3.387998995625] BluetoothNET: HCI UART Registered protocol BCSP registeredfamily 10[ 34.393377001267] Bluetooth: HCI UART protocol LL registeredSegment Routing with IPv6[ 34.399047005122] sdhcisit: Secure Digital Host Controller Interface IPv6, IPv4 and MPLS over IPv4 tunneling driver[ 34.405256011702] sdhciNET: Copyright(c) Pierre OssmanRegistered protocol family 17[ 34.409619016206] sdhci-pltfmcan: SDHCI platform and OF driver helpercontroller area network core[ 34.416280020650] sdhci-esdhc-imx 2190000.usdhcNET: Got CD GPIORegistered protocol family 29[ 34.483806025175] mmc0can: SDHCI controller on 2190000.usdhc [2190000.usdhc] using ADMAraw protocol[ 34.541275028151] mmc0can: host does not support reading read-only switch, assuming write-enablebroadcast manager protocol[ 34.555329032348] mmc0can: new high speed SDHC card at address 59b4netlink gateway - max_hops=1[ 34.561459037013] mmcblk0Bluetooth: mmc0:59b4 USDU1 14.9 GiBRFCOMM TTY layer initialized[ 34.567321041911] mmcblk0Bluetooth: RFCOMM socket layer initialized[ 4.047119] Bluetooth: p1 p2RFCOMM ver 1.11[ 4.050888] Bluetooth: BNEP (Ethernet Emulation) ver 1.3[ 4.723635054141] mmc1: SDHCI controller on 2194000.usdhc mmc [2194000.usdhcmmc] using ADMA[ 34.736499056264] caam 2100000.caamBluetooth: ERA sourceBNEP filters: CAAMVID.protocol multicast[ 34.744500068359] caam 2100000Bluetooth: BNEP socket layer initialized[ 4.caam073334] Bluetooth: AXI pipeline throttling enabledHIDP (Human Interface Emulation) ver 1.2[ 34.750842079324] sdhci-esdhc-imx 2194000.usdhcBluetooth: card claims to support voltages below defined rangeHIDP socket layer initialized[ 34.760357084376] caam 21000008021q: 802.1Q VLAN Support v1.caam: device ID = 0x0a16010000000000 (Era 8[ 4)[ 3.766838089135] caam 2100000rfkill_gpio bt_rfkill: bt_rfkill device registered.caam: job rings = 2, qi = 0, dpaa2 = no[ 34.773748095319] caam_jr 2101000.jr0: Entropy delay = 3200Key type dns_resolver registered[ 34.774441100289] mmc1vddpu: new SDIO card at address 0001supplied by SW1C[ 34.784437104312] wl12xx_driver wl12xx.0.auto: Falling back to user helperRegistering SWP/SWPB emulation handler[ 34.839606109310] caam_jr 2101000.jr0: Instantiated RNG4 SH0Loading compiled-in X.509 certificates[ 34.900365142986] caam_jr 2101000.jr0vddarm: Instantiated RNG4 SH1.bypassed regulator has no supply![ 34.910998148145] caam algorithms registered in /proc/cryptovddarm: failed to get the current voltage: -EPROBE_DEFER[ 34.920055154568] caam_jr 2101000.jr0vddarm: registering rng-caamsupplied by SW1AB[ 34.926290158861] platform caam_smvddsoc: blkkey_ex: 4 keystore units availablebypassed regulator has no supply![ 34.932686163922] platform caam_smvddsoc: failed to get the current voltage: 64-bit clear key:EPROBE_DEFER[ 34.937256170329] platform caam_smvddsoc: [0000] 00 01 02 03 04 0f 06 07supplied by SW1C[ 34.942923185780] platform caam_sm: 64-bit black keyci_hdrc ci_hdrc.1:EHCI Host Controller[ 34.947483190699] platform caam_smci_hdrc ci_hdrc.1: [0000] 8c 27 2b 81 e1 7d 80 2cnew USB bus registered, assigned bus number 1[ 34.953153224135] platform caam_smci_hdrc ci_hdrc.1: [0008] 45 cd 36 83 b5 5e 8e 6cUSB 2.0 started, EHCI 1.00[ 34.958915229774] platform caam_sm: 128-bit clear keyusb usb1:New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10[ 34.963544238076] platform caam_smusb usb1: New USB device strings: [0000] 00 01 02 03 04 0f 06 07Mfr=3, Product=2, SerialNumber=1[ 34.969233245325] platform caam_smusb usb1: Product: [0008] 08 09 0a 0b 0c 0d 0e 0fEHCI Host Controller[ 34.974913250210] platform caam_smusb usb1: 128-bit black keyManufacturer:[ Linux 5.10.35-desk-mx6-l-3.979540] platform caam_sm: [0000] d7 47 0f 49 e1 28 45 720.0 ehci_hcd[ 34.985221257194] platform caam_smusb usb1: SerialNumber: [0008] 57 98 10 88 2b a5 9f 5eci_hdrc.1[ 34.990887262165] platform caam_smhub 1-0: 192-bit clear key1.0:USB hub found[ 34.995542266017] platform caam_smhub 1-0:1.0: [0000] 00 01 02 03 04 0f 06 071 port detected[ 4.001210272238] platform caam_smgalcore: clk_get vg clock failed, disable vg![0008 4.278657] 08 09 0a 0b 0c 0d 0e 0fGalcore version 6.4.3.p2.336687[ 4.006895420866] platform caam_sm: [0016drm] 10 11 12 13 14 15 16 17Initialized vivante 1.0.0 20170808 for 130000.gpu on minor 0[ 4.012560429695] platform caam_sm: 192-bit black keymxc_vpu 2040000.vpu_fsl:VPU initialized[ 4.017212437324] platform caam_smimx_thermal 20c8000.anatop:tempmon: Industrial CPU temperature grade - max:105C critical:100C passive: [0000] 8c 71 fd 91 32 df 03 4b95C[ 4.022880467309] platform caam_smimx_epdc_fb 20f4000.epdc: [0008] 57 91 10 46 5a 43 2e 62can't get/select pinctrl[ 4.028567558007] platform caam_smMicrel KSZ9031 Gigabit PHY 2188000.ethernet-1:07: attached PHY driver [0016Micrel KSZ9031 Gigabit PHY] 5b 78 20 0a 42 7b ee 66[ 4.034252] platform caam_sm(mii_bus: [0024] be b5 0b 4f fe 3d 2a 95[ 4phy_addr=2188000.039916] platform caam_sm: 256ethernet-bit clear key1:07, irq=POLL)[ 46.044557634662] platform caam_smfec 2188000.ethernet eth0: [0000] 00 01 02 03 04 0f 06 07Link is Up - 100Mbps/Full - flow control off[ 46.050225644221] platform caam_smIPv6: ADDRCONF(NETDEV_CHANGE): eth0: [0008] 08 09 0a 0b 0c 0d 0e 0flink becomes ready[ 46.055907674290] platform caam_smIP-Config: Complete: [0016] 10 11 12 13 14 15 16 17[ 4 6.061575677555] platform caam_sm device=eth0, hwaddr=da:89: [0024] 18 19 1a 1b 1c 1d 1e 1f[ 4.067256] platform caam_sm01: 256-bit black key4d:[ 4.071882] platform caam_sm96: [0000] e5 aa 13 13 93 8e, ipaddr=192.168.0.90 5e c7[ 4, mask=255.255.255.0, gw=255.255.255.077566] platform caam_sm: [0008] a0 97 30 1d c4 55 2b 90255[ 46.083233688135] platform caam_sm: host=xelk, domain=, nis-domain=(none)[0016 6.693299] 36 b4 90 2e 6f a7 e9 06 bootserver=192.168.0.125, rootserver=192.168.0.125, rootpath=[ 46.088916693648] platform caam_smcfg80211: [0024] 91 a3 2d e6 c0 25 cc 32Loading compiled-in X.509 certificates for regulatory database[ 46.094595713318] platform caam_smcfg80211: 64-bit unwritten blobLoaded X.509 cert 'sforshee:00b28ddf47aef9cea7'[ 46.099570720057] platform caam_smregulatory.0: [0000] 00 00 00 00 00 00 00 00Direct firmware load for regulatory.db failed with error -2[ 46.105252728859] platform caam_smregulatory.0: Falling back to sysfs fallback for: regulatory.db[0008 6.728867] 00 00 00 00 00 00 00 00ALSA device list:[ 46.110919728887] platform caam_sm #0: [0016] 00 00 00 00 00 00 00 00sbcx-audio-tlv320aic3100[ 47.116602785613] platform caam_smVFS: [0024] 00 00 00 00 00 00 00 00Mounted root (nfs filesystem) on device 0:14.[ 47.122271793333] platform caam_smdevtmpfs: [0032] 00 00 00 00 00 00 00 00mounted[ 47.127953799822] platform caam_smFreeing unused kernel memory: 1024K[0040 7.824930] 00 00 00 00 00 00 00 00Run /sbin/init as init process[ 48.133635827419] platform caam_sm: systemd[00481] 00 00 00 00 00 00 00 00[ 4.139302] platform caam_sm: [0056] 00 00 00 00 00 00 00 00[ 4systemd 247.144984] platform caam_sm: [0064] 00 00 00 00 00 00 00 00[ 4.150650] platform caam_sm: [0072] 00 00 00 00 00 00 00 00[ 4.156332] platform caam_sm: [0080] 00 00 00 00 00 00 00 00[ 4.161999] platform caam_sm: [0088] 00 00 00 00 00 00 00 00[ 4.167679] platform caam_sm: 128-bit unwritten blob:[ 4.172738] platform caam_sm: [0000] 00 00 00 00 00 00 00 00[ 4.178423] platform caam_sm: [0008] 00 00 00 00 00 00 00 00[ 4.184106] platform caam_sm: [0016] 00 00 00 00 00 00 00 00[ 4.189772] platform caam_sm: [0024] 00 00 00 00 00 00 00 00[ 4.195455] platform caam_sm: [0032] 00 00 00 00 00 00 00 00[ 4.201124] platform caam_sm: [0040] 00 00 00 00 00 00 00 00[ 4.206805] platform caam_sm: [0048] 00 00 00 00 00 00 00 00[ 4.212473] platform caam_sm: [0056] 00 00 00 00 00 00 00 00[ 4.218155] platform caam_sm: [0064] 00 00 00 00 00 00 00 00[ 4.223839] platform caam_sm: [0072] 00 00 00 00 00 00 00 00[ 4.229505] platform caam_sm: [0080] 00 00 00 00 00 00 00 00[ 4.235187] platform caam_sm: [0088] 00 00 00 00 00 00 00 00[ 4.240852] platform caam_sm: 196-bit unwritten blob:[ 4.245928] platform caam_sm: [0000] 00 00 00 00 00 00 00 00[ 4.251595] platform caam_sm: [0008] 00 00 00 00 00 00 00 00[ 4.257277] platform caam_sm: [0016] 00 00 00 00 00 00 00 00[ 4.262945] platform caam_sm: [0024] 00 00 00 00 00 00 00 00[ 4.268627] platform caam_sm: [0032] 00 00 00 00 00 00 00 00[ 4.274316] platform caam_sm: [0040] 00 00 00 00 00 00 00 00[ 4.279984] platform caam_sm: [0048] 00 00 00 00 00 00 00 00[ 4.285670] platform caam_sm: [0056] 00 00 00 00 00 00 00 00[ 4.291337] platform caam_sm: [0064] 00 00 00 00 00 00 00 00[ 4.297019] platform caam_sm: [0072] 00 00 00 00 00 00 00 00[ 4.302688] platform caam_sm: [0080] 00 00 00 00 00 00 00 00[ 4.308369] platform caam_sm: [0088] 00 00 00 00 00 00 00 00[ 4.314050] platform caam_sm: 256-bit unwritten blob:[ 4.319110] platform caam_sm: [0000] 00 00 00 00 00 00 00 00[ 4.324794] platform caam_sm: [0008] 00 00 00 00 00 00 00 00[ 4.330462] platform caam_sm: [0016] 00 00 00 00 00 00 00 00[ 4.336144] platform caam_sm: [0024] 00 00 00 00 00 00 00 00[ 4.341812] platform caam_sm: [0032] 00 00 00 00 00 00 00 00[ 4.347494] platform caam_sm: [0040] 00 00 00 00 00 00 00 00[ 4.353161] platform caam_sm: [0048] 00 00 00 00 00 00 00 00[ 4.358842] platform caam_sm: [0056] 00 00 00 00 00 00 00 00[ 4.364524] platform caam_sm: [0064] 00 00 00 00 00 00 00 00[ 4.370191] platform caam_sm: [0072] 00 00 00 00 00 00 00 00[ 4.375873] platform caam_sm: [0080] 00 00 00 00 00 00 00 00[ 4.381539] platform caam_sm: [0088] 00 00 00 00 00 00 00 00[ 4.387381] platform caam_sm: 64-bit black key in blob:[ 4.392617] platform caam_sm: [0000] 54 28 88 21 a2 9e b8 df[ 4.398310] platform caam_sm: [0008] 0e ef 5c cb 41 fb e2 8f[ 4.403998] platform caam_sm: [0016] 95 5d ac 4a 95 a1 88 25[ 4.409667] platform caam_sm: [0024] 69 70 87 a2 ed f5 f8 85[ 4.415351] platform caam_sm: [0032] ca ba 17 34 f9 e0 de 6b[ 4.421019] platform caam_sm: [0040] 7b 38 9f 05 95 58 af 3f[ 4.426701] platform caam_sm: [0048] 65 a9 18 99 e6 6a bd 2d[ 4.432370] platform caam_sm: [0056] 00 00 00 00 00 00 00 00[ 4.438052] platform caam_sm: [0064] 00 00 00 00 00 00 00 00[ 4.443734] platform caam_sm: [0072] 00 00 00 00 00 00 00 00[ 4.449401] platform caam_sm: [0080] 00 00 00 00 00 00 00 00[ 4.455084] platform caam_sm: [0088] 00 00 00 00 00 00 00 00[ 4.460749] platform caam_sm: 128-bit black key in blob:[ 4.466085] platform caam_sm: [0000] 9e e6 ae ce dd ae ad b3[ 4.471752] platform caam_sm: [0008] 49 a5 65 3e 9d c1 b5 16[ 4.477436] platform caam_sm: [0016] e8 9e be 14 50 34 21 56[ 4.483103] platform caam_sm: [0024] a1 d6 59 db 53 cb 00 39[ 4.488819] platform caam_sm: [0032] 8b d6 eb 76 a3 88 46 9f[ 4.494504] platform caam_sm: [0040] 4d 86 66 1e ed ec b4 74[ 4.500171] platform caam_sm: [0048] 54 77 9b 6f 85 70 77 89[ 4.505855] platform caam_sm: [0056] 56 ae 21 fc 7c cd 52 29[ 4.511523] platform caam_sm: [0064] 00 00 00 00 00 00 00 00[ 4.517204] platform caam_sm: [0072] 00 00 00 00 00 00 00 00[ 4.522873] platform caam_sm: [0080] 00 00 00 00 00 00 00 00[ 4.528556] platform caam_sm: [0088] 00 00 00 00 00 00 00 00[ 4.534244] platform caam_sm: 192-bit black key in blob:[ 4.539567] platform caam_sm: [0000] 5d 6d 44 15 1f 9b 20 5b[ 4.545253] platform caam_sm: [0008] 67 60 06 7e 96 c8 80 a6[ 4.550920] platform caam_sm: [0016] 18 be 81 47 9d ac c4 e5[ 4.556603] platform caam_sm: [0024] b9 57 bf b1 38 44 61 cd[ 4.562271] platform caam_sm: [0032] 78 21 08 d8 e6 70 27 4f[ 4.567953] platform caam_sm: [0040] 11 b9 7d 64 3c 9b 34 46[ 4.573638] platform caam_sm: [0048] fe 80 e8 c8 53 d7 4a 18[ 4.579305] platform caam_sm: [0056] d8 e8 e1 04 01 20 0b c2[ 4.584989] platform caam_sm: [0064] c9 b2 8c 56 b3 0b 63 cd[ 4.590656] platform caam_sm: [0072] 00 00 00 00 00 00 00 00[ 4.596338] platform caam_sm: [0080] 00 00 00 00 00 00 00 00[ 4.602006] platform caam_sm: [0088] 00 00 00 00 00 00 00 00[ 4.607685] platform caam_sm: 256-bit black key in blob:[ 4.613008] platform caam_sm: [0000] c6 a3 12 6c 0a 23 11 16[ 4.618691] platform caam_sm: [0008] 14 ed 6c f9 64 6c 5c 8e[ 4.624374] platform caam_sm: [0016] 66 fd 1b df 64 2c a5 09[ 4.630041] platform caam_sm: [0024] e0 9c 97 df 8b 15 a5 3f[ 4.635724] platform caam_sm: [0032] 30 cf c3 57 24 26 96 cc[ 4.641392] platform caam_sm: [0040] 09 43 26 f0 76 25 23 c4[ 4.647076] platform caam_sm: [0048] 14 aa a2 84 30 6b 1 [ 7.364285] fec 2188000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx[ 7.383840] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready[ 7.413781] IP-Config: Complete:[ 7.417007] device=eth0, hwaddr=fa:2a:07:88:45:42, ipaddr=192.168.0.90, mask=255.255.255.0, gw=255.255.255.255[ 7.427509] host=xelk, domain=, nis-domain=(none)[ 7.432673] bootserver=192.168.0.125, rootserver=192.168.0.125, rootpath=[ 7.441102] usb_otg_vbus: disabling[ 7.444725] wlan-en-regulator: disabling[ 7.449269] VGEN1: disabling[ 7.452711] VGEN6: disabling[ 7.456242] ALSA device list:[ 7.459220] #0: sbcx-audio-tlv320aic3100[ 7.529614] VFS: Mounted root (nfs filesystem) on device 0:13.[ 7.536224] devtmpfs: mounted[ 7.540093] Freeing unused kernel memory: 1024K[ 7.566197] random: crng init done[ 7.984731] systemd[1]: System time before build time, advancing clock.[ 8.034184] systemd[1]: systemd 237 6+ running in system mode. (-PAM -AUDIT -SELINUX +IMA -APPARMOR +-SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -ZSTD -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)[ 8.056360851734] systemd[1]: Detected architecture arm.
Welcome to NXP i.MX Release Distro 45.1410-sumo hardknott (sumohardknott)!
[ 8.107503920276] systemd[1]: Set hostname to <imx6qdlxelkdesk-mx6>.[ 89.125889231038] systemd-sysv-generator[1173]: Initializing machine ID from random 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.[ 9.258823] systemd-sysv-generator[173]: 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.[ 89.464501291447] systemd-sysv-generator[1173]: File SysV service '/etc/libinit.d/alignment.sh' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemdunit file, in order to make it more safe and robust.[ 9.332636] systemd-sysv-generator[173]: SysV service '/systemetc/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.[ 9.361932] systemd-journaldsysv-generator[173]: 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.[ 9.396575] systemd-sysv-generator[173]: 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.[ 9.424326] systemd-sysv-generator[173]:35 configures an IP firewall (IPAddressDeny=any)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, but the local system does not support BPF/cgroup based firewallingin order to make it more safe and robust.[ 89.481603455005] systemd-sysv-generator[1173]: Proceeding WITHOUT firewalling in effect! (This warning is only shown SysV service '/etc/init.d/rc.local' lacks a native systemd unit file. Automatically generating a unit file for the first loaded compatibility. Please update package to include a native systemd unit using IP firewallingfile, in order to make it more safe and robust.)[ 9.046238484908] systemd-sysv-generator[173]: SysV service '/etc/init.d/sendsigs' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.[ 11.567899] systemd[1]: Queued start job for default target Multi-User System.[ 11.580549] systemd[1]: Created slice system-getty.slice.[ OK ] Created slice system-getty.slice.[ 11.616203] systemd[1]: Created slice system-modprobe.slice.[ OK ] Created slice system-modprobe.slice.[ 11.656081] systemd[1]: Created slice system-serial\x2dgetty.slice.[ OK ] Created slice system-serial\x2dgetty.slice.[ 11.695613] systemd[1]: Created slice User and Session Slice.[ OK ] Created slice User and Session Slice.[ 11.735388] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.[ OK ] Started Dispatch Password …ts to Console Directory Watch.[ 11.775212] systemd[1]: Started Forward Password Requests to Wall Directory Watch.[ OK ] Started Forward Password R…uests to Wall Directory Watch.[ 11.815542] systemd[1]: Reached target Host and Network Name Lookups.
[ OK ] Reached target Host and Network Name Lookups.
[ 9 11.084367854669] systemd[1]: Created slice User and Session SliceReached target Paths.[ OK ] Created slice User and Session SliceReached target Paths.[ 9 11.114014884813] systemd[1]: Started Forward Password Requests to Wall Directory WatchReached target Remote File Systems.[ OK ] Started Forward Password Requests to Wall Directory WatchReached target Remote File Systems.[ 9 11.154805924723] systemd[1]: Created slice System SliceReached target Slices.[ OK ] Created slice System SliceReached target Slices.[ 11.954934] systemd[1]: Reached target Swap.[ OK ] Reached target Swap.[ 11.989713] systemd[1]: Listening on RPCbind Server Activation Socket.[ OK ] Listening on RPCbind Server Activation Socket.[ 12.024748] systemd[1]: Reached target RPC Port Mapper.[ OK ] Reached target RPC Port Mapper.[ 12.069211] systemd[1]: Listening on Syslog Socket.[ OK ] Listening on Syslog Socket.[ 12.105496] systemd[1]: Listening on initctl Compatibility Named Pipe.[ OK ] Listening on initctl Compatibility Named Pipe.[ 12.246654] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.[ 12.258379] systemd[1]: Listening on Journal Socket (/dev/log).[ OK ] Listening on Journal Socket (/dev/log).[ 12.296158] systemd[1]: Listening on Journal Socket.
[ OK ] Listening on Journal Socket.
Starting Load Kernel Modules.[ 12.339347] systemd[1]: Listening on Network Service Netlink Socket.
[ OK ] Listening on Network Service Netlink Socket.
[ 12.383908] systemd[1]: Listening on udev Control Socket.[ OK ] Listening on Syslog udev Control Socket.[ 12.425793] systemd[1]: Listening on udev Kernel Socket.
[ OK ] Listening on udev Kernel Socket.
[ 12.468365] systemd[1]: Listening on User Database Manager Socket.[ OK ] Started Dispatch Password Requests to Console Directory WatchListening on User Database Manager Socket.[ 12.505788] systemd[1]: Condition check resulted in Huge Pages File System being skipped.[ 12.515313] systemd[1]: Condition check resulted in POSIX Message Queue File System being skipped.[ OK 12.531366] systemd[1] Created slice system-getty: Mounting Kernel Debug File System... Mounting Kernel Debug File System...[ 12.slice566026] systemd[1]: Condition check resulted in Kernel Trace File System being skipped.[ OK 12.590997] systemd[1] Reached target Swap: Mounting Temporary Directory (/tmp)...
Mounting Temporary Directory (/tmp)...
[ OK 12.647902] systemd[1]: Starting Create list of static device nodes for the current kernel... Starting Create list of st…odes for the current kernel...[ 12.701636] systemd[1]: Starting Load Kernel Module configfs... Starting Load Kernel Module configfs...[ 12.751542] systemd[1]: Starting Load Kernel Module drm... Starting Load Kernel Module drm...[ 12.799993] systemd[1] Reached target Paths: Starting Load Kernel Module fuse... Starting Load Kernel Module fuse...[ OK 12.845684] Reached target Slicessystemd[1]: Starting RPC Bind... Starting RPC Bind...[ 12.876744] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.[ 12.887820] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.[ 12.901102] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)[ 12.913776] systemd[1]: Starting Journal Service... Starting Journal Service...[ 12.976703] systemd[1]: Condition check resulted in Load Kernel Modules being skipped.[ 13.001090] systemd[1]: Starting Remount Root and Kernel File Systems... Starting Remount Root and Kernel File Systems...[ 13.051337] systemd[1]: Starting Apply Kernel Variables... Starting Apply Kernel Variables...[ 13.101267] systemd[1]: Starting Coldplug All udev Devices... Starting Coldplug All udev Devices...[ 13.155607] systemd[1]: Starting Setup Virtual Console...
Starting Setup Virtual Console...
[ OK 13.197438] systemd[1] Created slice system-serial\x2dgetty.slice: Started RPC Bind.[ OK ] Listening on /dev/initctl Compatibility Named PipeStarted RPC Bind.[ OK 13.248196] systemd[1] Reached target Remote File Systems. Starting Remount Root and : Mounted Kernel Debug File Systems..System.[ OK ] Listening on udev Control Socket. Starting udev Coldplug all Devices... Mounting Mounted Kernel Debug File System.[ 13..328358] systemd[ OK 1] Listening on Journal Socket : Mounted Temporary Directory (/dev/logtmp). Starting Journal Service...[FAILED] Failed to start Load Kernel Modules.See 'systemctl status systemd-modules-load.service' for details.
[ OK ] Mounted Temporary Directory (/tmp).
[ 13.366994] systemd[1]: Finished Create list of static device nodes for the current kernel.[ OK ] Finished Create list of st… nodes for the current kernel.[ 13.416146] systemd[1]: modprobe@configfs.service: Succeeded.[ 13.428848] systemd[1]: Finished Load Kernel Module configfs.[ OK ] Finished Load Kernel Module configfs.[ 13.445411] systemd[1]: Started Setup Virtual ConsoleJournal Service.[ OK ] Started Journal Service.[ OK ] Finished Load Kernel Module drm.[ OK ] Finished Load Kernel Module fuse.[ OK ] Finished Remount Root and Kernel File Systems.[ OK ] Mounted Finished Apply Kernel Debug File SystemVariables. Starting Rebuild Hardware Database... Starting Create System Users..[ OK ] Finished Setup Virtual Console.
Mounting FUSE Control File System...
Starting Apply Kernel Variables...
Mounting Kernel Configuration File System...
[ OK ] Started Starting Flush Journal Serviceto Persistent Storage... Starting Create Static Device Nodes in /dev...
[ OK ] Mounted FUSE Control File System.
[ OK 13.873210] Started Apply Kernel Variablessystemd-journald[182]: Received client request to flush runtime journal.
[ OK ] Mounted Kernel Configuration File System.
Starting Flush Journal to Persistent Storage...[ OK ] Started Create System Users.[ OK ] Started udev Coldplug all Devices. Starting Create Static Device Nodes in /dev...[ 10.525553] systemd-journald[186]: Received request to flush runtime journal from PID 1[ OK ] Started Finished Flush Journal to Persistent Storage.[ OK ] Started Finished Create Static Device Nodes in /dev.
[ OK ] Reached target Local File Systems (Pre).
Mounting /var/volatile...
[ OK ] Reached target Containers Starting Rule-based Manage…for Device Events and Files...
[ OK ] Mounted /var/volatile.
Starting Load/Save Random Seed...
[ OK ] Reached target Local File Systems.
Starting Rebuild Journal Catalog...
Starting Rebuild Dynamic Linker Cache...
Starting Create Volatile Files and Directories...
[ OK ] Started Load/Save Random SeedFinished Coldplug All udev Devices.[ OK ] Started Rebuild Journal Catalog.[ OK ] Started Create Volatile Files and Directories. Starting Update UTMP about System BootFinished Load/Shutdown... Starting Network Time Synchronization...[ OK ] Started Update UTMP about System Boot/Shutdown.[ OK ] Started Rebuild Hardware DatabaseSave Random Seed.[ OK ] Started Network Time Synchronization.[ OK ] Reached target System Time Synchronized. Starting udev Kernel Device Rule-based Manager...[ OK ] Started udev Kernel for Device Manager. Starting Network Service..Events and Files.
Starting Start Psplash Boot Screen...
[ OK ] Started Start Psplash Boot Screen.
[ OK ] Started Network Service.[ 13.920507] imxStart psplash-sdma 20ec000.sdma: loaded firmware 3syst…progress communication helper.4[ 14.177573] ERROR: v4l2 capture: slave not found![ OK ] Found device /dev/ttymxc2Finished Create Volatile Files and Directories.[ 14.444428FAILED] wlcore: WARNING Detected unconfigured mac address in nvs, derive from fuse insteadFailed to start Network Time Synchronization.[ 14.444428][ 14See 'systemctl status systemd-timesyncd.455445] wlcore: WARNING Your device performance is not optimizedservice' for details.[ 14.455445][ 14.466030 OK ] wlcore: WARNING Please use the calibrator tool to configure your deviceReached target System Time Set.[ 14.466030 OK ][ 14Reached target System Time Synchronized.477967] wlcore: loaded[ 15.716519] EXT4-fs (mmcblk0p2): recovery complete[ 15.724926] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)[ 15.804086] FAT-fs (mmcblk0p1): Volume was not properly unmounted Starting Update UTMP about System Boot/Shutdown. Some data may be corrupt. Please run fsck.[ OK ] Listening on Load/Save RF Kill Switch Status /devFinished Update UTMP about System Boot/rfkill Watch. Starting Load Kernel Modules..Shutdown.
[ OK ] Created slice system-systemd\x2dbacklight.slice.
Starting Load/Save Screen Backlight…ightness …ness of backlight:backlight...[ OK ] Stopped Network Time Synchronization.[FAILED] Failed to start Load Kernel ModulesNetwork Time Synchronization.See 'systemctl status systemd-modulestimesyncd.service' for details.[ OK ] Stopped Network Time Synchronization.[FAILED] Failed to start Network Time Synchronization.See 'systemctl status systemd-loadtimesyncd.service' for details.[ OK ] Started Finished Load/Save Screen Backlight Brightness …htness of backlight:backlight. Starting Load/Save RF Kill Switch Status[ 17.001256] imx-sdma 20ec000.sdma: firmware found.[ 17.006848] imx-sdma 20ec000.sdma: loaded firmware 3.6[ 17.240271] ERROR: v4l2 capture: slave not found![ 17.253579] ERROR: v4l2 capture: slave not found![ OK ] Started Load/Save RF Kill Switch StatusReached target Hardware activated USB gadget.[ OK ] Started Rebuild Dynamic Linker CacheStopped Network Time Synchronization. Starting Update is Completed[FAILED] Failed to start Network Time Synchronization.See 'systemctl status systemd-timesyncd..[ OK ] Started Update is Completedservice' for details.
[ OK ] Reached target System Initialization.
[ OK ] Started dnf makecache timer.[ OK ] Started dnf-automatic-install timer.[ OK ] Listening on RPCbind Server Activation Socket.[ OK ] Started dnf-automatic-download timer.[ OK ] Listening on dropbear.socketDaily rotation of log files.
[ OK ] Started Daily Cleanup of Temporary Directories.
Starting Console System Startup Logging..[ OK ] Reached target Timers.[ OK ] Started Daily rotation of log filesListening on Avahi mDNS/DNS-SD Stack Activation Socket.
[ OK ] Listening on D-Bus System Message Bus Socket.
Starting sshd.socket.[ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socketsshd.socket.
[ OK ] Reached target Sockets.
[ OK ] Started dnf-automatic-notifyonly timer.
[ OK ] Started dnf-automatic timer.
[ OK ] Reached target Basic System.
Starting Telephony serviceSave/Restore Sound Card State...[ OK ] Started Job spooling tools.
[ OK ] Started Periodic Command Scheduler.
Starting Generate options for connection service..[ OK ] Started D-Bus System Message Bus.[ OK ] Started Job spooling toolsConfiguration for i.MX GPU (Former rc_gpu.S). Starting Login ServiceIPv6 Packet Filtering Framework... Starting RPC Bind ServiceIPv4 Packet Filtering Framework...
Starting Network Time Service (one-shot ntpdate mode)...
[ OK ] Started D-Bus System Message Bus.[ OK ] Started Login Service.[ OK ] Started Xserver startup without a display manager. Starting System Logging Service... Starting Avahi mDNS/DNS-SD StackTelephony service...
[ OK ] Started Updates psplash to basic.
[ OK ] Started Configuration for i.MX GPU (Former rc_gpu.S).
[ OK ] Reached target Timers.
Starting Save/Restore Sound Card State...
[ OK ] Started Console System Startup Logging.
[ OK ] Started Generate options for connection service.
[ OK ] Started RPC Bind Service.
[ OK ] Started Network Time Service (one-shot ntpdate mode).
[ OK ] Started System Logging Service.
[FAILED] Failed to start User Login Management.See 'systemctl status systemd-logind.service' for details.[ OK ] Stopped Network Time Synchronization.[FAILED] Failed to start Network Time Synchronization.See 'systemctl status systemd-timesyncd.service' for details. Starting OpenSSH Key Generation...[FAILED] Failed to start Rotate log files.See 'systemctl status logrotate.service' for details.syslogd[568]: Error opening log file: /var/log/auth.log: No such file or directorysyslogd[568]: Error opening log file: /var/log/syslog: No such file or directory[ OK ] Started Finished Save/Restore Sound Card State.syslogd[568]: Error opening log file: /var/log/kern.log: No such file or directorysyslogd[568]: Error opening log file: /var/log/mail.log: No such file or directorysyslogd[568]: Error opening log file: /var/log/mail.err: No such file or directorysyslogd[568]: Error opening log file: /var/log/messages: No such file or directory[ OK ] Finished IPv6 Packet Filtering Framework.[ OK ] Finished IPv4 Packet Filtering Framework.[ OK ] Finished Network Time Service (one-shot ntpdate mode).[ OK ] Finished OpenSSH Key Generation.
[ OK ] Started Telephony service.
[ OK ] Started Avahi mDNS/DNSCreated slice system-SD Stacksystemd\x2dfsck.slice.[ OK ] Reached target Network (Pre).
[ OK ] Reached target Sound Card.
Starting Kernel Logging Service..[ OK ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
Starting Connection service...
[ OK ] Started Stopped User Login Management. Starting Load Kernel Logging Module drm... Starting Network Service...[ OK ] Stopped Network Time Synchronization.[FAILED] Failed to start Network Time Synchronization.See 'systemctl status systemd-timesyncd.service' for details.[ OK ] Finished Load Kernel Module drm.[ OK ] Found device /dev/mmcblk0p2. Starting File System Check on /dev/mmcblk0p2...[FAILED] Failed to start User Login Management.See 'systemctl status systemd-logind.service' for details. Starting Load/Save RF Kill Switch Status...
[ OK ] Started Connection service.
Starting Avahi mDNS/DNS-SD Stack...[ OK ] Stopped User Login Management. Starting Load Kernel Module drm...[ OK ] Found device /dev/mmcblk0p1.[ OK ] Started Load/Save RF Kill Switch Status.[ OK ] Started Network Service.[ OK ] Finished Load Kernel Module drm. Starting File System Check on /dev/mmcblk0p1...[FAILED] Failed to start Hostname Service.See 'systemctl status systemd-hostnamed.service' for details.[FAILED] Failed to start User Login Management.See 'systemctl status systemd-logind.service' for details.
Starting WPA supplicant...
[ OK ] Started Avahi mDNS/DNS-SD Stack.
[ OK ] Stopped User Login Management.
Starting Load Kernel Module drm...
[ OK ] Finished Load Kernel Module drm.
[FAILED] Failed to start User Login Management.
See 'systemctl status systemd-logind.service' for details.
[ OK ] Stopped User Login Management.
Starting Load Kernel Module drm...
[ OK ] Finished File System Check on /dev/mmcblk0p2.
Mounting /run/media/mmcblk0p2...
[ OK ] Finished Load Kernel Module drm.
[FAILED] Failed to start User Login Management.
See 'systemctl status systemd-logind.service' for details.
[ OK ] Started WPA supplicant.
[ OK ] Started Hostname Service.
[ OK ] Reached target Network.
[ OK ] Started NFS status monitor for NFSv2/3 locking..
[ OK FAILED] Started Target Communication Framework agentFailed to start Respond to IPv6 Node Information Queries.See 'systemctl status ninfod.service' for details.
[ OK ] Started Update psplash to network.
Starting Terminate Psplash Boot Screen...
Starting /etc/rc.local Compatibility...
[FAILED] Failed to start Network Router Discovery Daemon.See 'systemctl status rdisc.service' for details.[ OK ] Stopped User Login Management. Starting Load Kernel Module drm...[ OK ] Started Finished Terminate Psplash Boot Screen.[ OK ] Finished Load Kernel Module drm.[FAILED] Failed to start User Login Management.See 'systemctl status systemd-logind.service' for details.
[ OK ] Started /etc/rc.local Compatibility.
[ OK ] Started Getty on tty1.
[ OK ] Started Serial Getty on ttymxc2.
[ OK ] Started Getty Reached target Login Prompts.[ OK ] Reached target Multi-User System. Starting Update UTMP about System Runlevel Changes...[ OK ] Finished Update UTMP about System Runlevel Changes.[ 23.259732] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)[ OK ] Mounted /run/media/mmcblk0p2.[ OK ] Finished File System Check on tty1/dev/mmcblk0p1. Starting Bluetooth serviceMounting /run/media/mmcblk0p1...[ OK ] Started Bluetooth serviceMounted /run/media/mmcblk0p1.
NXP i.MX Release Distro 45.1410-sumo imx6qdlxelk hardknott desk-mx6 ttymxc2
imx6qdlxelk desk-mx6 login:
</pre>
8,226
edits