Difference between revisions of "Booting from NFS (XELK)"

From DAVE Developer's Wiki
Jump to: navigation, search
Line 15: Line 15:
 
!Notes
 
!Notes
 
|-
 
|-
|1.0.0
+
|{{oldid|8371|3.0.1}}
 
|November 2018
 
|November 2018
 
|[[Axel_Embedded_Linux_Kit_(XELK)#XELK_3.0.1|XELK 3.0.1]]
 
|[[Axel_Embedded_Linux_Kit_(XELK)#XELK_3.0.1|XELK 3.0.1]]
 
|First release
 
|First release
 +
|-
 +
|4.0.0
 +
|July 2019
 +
|[[Axel_Embedded_Linux_Kit_(XELK)#XELK_4.0.0|XELK 4.0.0]]
 +
|
 
|-
 
|-
 
|}
 
|}
Line 31: Line 36:
 
== net_nfs configuration ==  
 
== net_nfs configuration ==  
  
XELK 3.0.0 Virtual Machine is properly configured for the TFTP and NFS debug.
+
XELK 4.0.0 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.
 
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.
Line 42: Line 47:
  
 
=== network adapter ===
 
=== network adapter ===
The network adpater should be configured in '''bridge mode''' in order to allow thge target to get the files from the VM
+
The network adpater should be configured in '''bridge mode''' in order to allow the target to get the files from the VM
  
  
Line 48: Line 53:
  
  
[[File:Network-VM.png|500px]]
+
[[File:XELK VM Network.png|500px]]
  
  
Line 54: Line 59:
  
 
<pre>
 
<pre>
dvdk@vagrant-ubuntu-trusty-64:~$ ifconfig
+
dvdk@vagrant:~$ ifconfig  
eth0      Link encap:Ethernet  HWaddr 08:00:27:01:15:46  
+
eth0      Link encap:Ethernet  HWaddr 08:00:27:ed:54:80  
           inet addr:192.168.0.125 Bcast:192.168.0.255  Mask:255.255.255.0
+
           inet addr:192.168.0.121 Bcast:192.168.0.255  Mask:255.255.255.0
           inet6 addr: fe80::a00:27ff:fe01:1546/64 Scope:Link
+
           inet6 addr: fe80::a00:27ff:feed:5480/64 Scope:Link
 
           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
 
           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
           RX packets:847415 errors:0 dropped:4 overruns:0 frame:0
+
           RX packets:342143 errors:0 dropped:0 overruns:0 frame:0
           TX packets:186868 errors:0 dropped:0 overruns:0 carrier:0
+
           TX packets:267700 errors:0 dropped:0 overruns:0 carrier:0
 
           collisions:0 txqueuelen:1000  
 
           collisions:0 txqueuelen:1000  
           RX bytes:293175710 (293.1 MB)  TX bytes:134758296 (134.7 MB)
+
           RX bytes:160784829 (160.7 MB)  TX bytes:214001179 (214.0 MB)
  
 
lo        Link encap:Local Loopback   
 
lo        Link encap:Local Loopback   
Line 68: Line 73:
 
           inet6 addr: ::1/128 Scope:Host
 
           inet6 addr: ::1/128 Scope:Host
 
           UP LOOPBACK RUNNING  MTU:65536  Metric:1
 
           UP LOOPBACK RUNNING  MTU:65536  Metric:1
           RX packets:5091 errors:0 dropped:0 overruns:0 frame:0
+
           RX packets:201 errors:0 dropped:0 overruns:0 frame:0
           TX packets:5091 errors:0 dropped:0 overruns:0 carrier:0
+
           TX packets:201 errors:0 dropped:0 overruns:0 carrier:0
           collisions:0 txqueuelen:0
+
           collisions:0 txqueuelen:1
           RX bytes:538322 (538.3 KB)  TX bytes:538322 (538.3 KB)
+
           RX bytes:21929 (21.9 KB)  TX bytes:21929 (21.9 KB)
  
dvdk@vagrant-ubuntu-trusty-64:~$  
+
dvdk@vagrant:~$  
 
</pre>
 
</pre>
  
Line 80: Line 85:
  
 
<pre>
 
<pre>
dvdk@vagrant-ubuntu-trusty-64:~$ cat /etc/exports  
+
dvdk@vagrant:~$ cat /etc/exports  
/home/dvdk/axel/rfs 192.168.0.0/255.255.255.0(rw,async,no_root_squash,no_subtree_check)
+
/home 0.0.0.0/0.0.0.0(rw,async,no_root_squash,no_subtree_check,crossmnt)
dvdk@vagrant-ubuntu-trusty-64:~$  
+
dvdk@vagrant:~$  
 
</pre>
 
</pre>
  
Line 88: Line 93:
  
 
<pre>
 
<pre>
dvdk@vagrant-ubuntu-trusty-64:~$ sudo /etc/init.d/nfs-kernel-server restart
+
dvdk@vagrant:~$ sudo /etc/init.d/nfs-kernel-server restart
 
[sudo] password for dvdk:  
 
[sudo] password for dvdk:  
 
  * Stopping NFS kernel daemon                                                                                                                                                                                                        [ OK ]  
 
  * Stopping NFS kernel daemon                                                                                                                                                                                                        [ OK ]  
Line 94: Line 99:
 
  * Exporting directories for NFS kernel daemon...                                                                                                                                                                                    [ OK ]  
 
  * Exporting directories for NFS kernel daemon...                                                                                                                                                                                    [ OK ]  
 
  * Starting NFS kernel daemon                                                                                                                                                                                                        [ OK ]  
 
  * Starting NFS kernel daemon                                                                                                                                                                                                        [ OK ]  
dvdk@vagrant-ubuntu-trusty-64:~$  
+
dvdk@vagrant:~$  
 
</pre>
 
</pre>
  
Line 102: Line 107:
  
 
<pre>
 
<pre>
=> setenv serverip 192.168.0.125
+
=> setenv serverip 192.168.0.120
=> setenv ipaddr 192.168.0.95
+
=> setenv ipaddr 192.168.0.121
 
</pre>
 
</pre>
  
Line 112: Line 117:
  
 
<pre>
 
<pre>
=> setenv bootfile /tftpboot/axel/xelk-3.0.4_uImage
+
=> setenv bootfile /tftpboot/axel/xelk-4.0.0_uImage
=> setenv fdtfile /tftpboot/axel/xelk-3.0.4_imx6dl-sbcx-cb0048.dtb
+
=> setenv fdtfile /tftpboot/axel/xelk-4.0.0_imx6q-xelk-l-2.0.0.dtb
 
</pre>
 
</pre>
  
 
finally, the ''root file system'' directory on the Virtual Machine should be configured for let the kernel to find the '''INIT'''
 
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/axel/rfs/xelk-3.0.1</pre>
+
<pre>=> setenv rootpath /home/dvdk/axel/rfs/xelk-4.0.0</pre>
  
  
Line 126: Line 131:
 
=> run net_nfs
 
=> run net_nfs
 
Using FEC device
 
Using FEC device
TFTP from server 192.168.0.13; our IP address is 192.168.0.90
+
TFTP from server 192.168.0.121; our IP address is 192.168.0.120
Filename '/tftpboot/axel/xelk-3.0.4_uImage'.
+
Filename 'axel/xelk-4.0.0_uImage'.
 
Load address: 0x12000000
 
Load address: 0x12000000
 
Loading: #################################################################
 
Loading: #################################################################
Line 148: Line 153:
 
         #################################################################
 
         #################################################################
 
         #################################################################
 
         #################################################################
         #######################################
+
         #################################################################
         1.5 MiB/s
+
        ###
 +
         1.2 MiB/s
 
done
 
done
Bytes transferred = 6521336 (6381f8 hex)
+
Bytes transferred = 6668104 (65bf48 hex)
 
Using FEC device
 
Using FEC device
TFTP from server 192.168.0.13; our IP address is 192.168.0.90
+
TFTP from server 192.168.0.121; our IP address is 192.168.0.120
Filename '/tftpboot/axel/xelk-3.0.4_imx6dl-sbcx-cb0048.dtb'.
+
Filename 'axel/xelk-4.0.0_imx6q-xelk-l-2.0.0.dtb'.
 
Load address: 0x18000000
 
Load address: 0x18000000
Loading: #########
+
Loading: ##########
         977.5 KiB/s
+
         879.9 KiB/s
 
done
 
done
Bytes transferred = 46068 (b3f4 hex)
+
Bytes transferred = 47771 (ba9b hex)
 +
FDT: override 'som_uniqueid' with 'ea9b8da9:2513b9d4'
 +
FDT: override 'cb_uniqueid' with '00000000:00000000'
 
## Booting kernel from Legacy Image at 12000000 ...
 
## Booting kernel from Legacy Image at 12000000 ...
   Image Name:  Linux-4.1.15-xelk-3.0.4
+
   Image Name:  Linux-4.9.11-xelk-4.0.0
 
   Image Type:  ARM Linux Kernel Image (uncompressed)
 
   Image Type:  ARM Linux Kernel Image (uncompressed)
   Data Size:    6521272 Bytes = 6.2 MiB
+
   Data Size:    6668040 Bytes = 6.4 MiB
 
   Load Address: 10008000
 
   Load Address: 10008000
 
   Entry Point:  10008000
 
   Entry Point:  10008000
Line 170: Line 178:
 
   Booting using the fdt blob at 0x18000000
 
   Booting using the fdt blob at 0x18000000
 
   Loading Kernel Image ... OK
 
   Loading Kernel Image ... OK
   Using Device Tree in place at 18000000, end 1800e3f3
+
  reserving fdt memory region: addr=18000000 size=c000
 +
   Using Device Tree in place at 18000000, end 1800efff
 
switch to ldo_bypass mode!
 
switch to ldo_bypass mode!
Frame buffer: configure splashscreen reserved memory to 0x4e000000 (6 MiB)
+
Frame buffer: configure splashscreen reserved memory to 0x8e000000 (2 MiB)
WARNING: could not find 2nd splashscreen reserved memory path
 
 
 
Starting kernel ...
 
 
 
</pre>
 
  
then the Linux kernel will start and mount the root file system using the nfs protocol
 
 
<pre class="workstation-terminal">
 
 
Starting kernel ...
 
Starting kernel ...
  
 
[    0.000000] Booting Linux on physical CPU 0x0
 
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.1.15-xelk-3.0.4 (jenkins@linuxserver2) (gcc version 5.2.0 (GCC) ) #1 SMP PREEMPT Sat Nov 3 23:31:09 CET 2018
+
[    0.000000] Linux version 4.9.11-xelk-4.0.0 (dvdk@vagrant) (gcc version 6.2.0 (GCC) ) #1 SMP PREEMPT Thu Jun 27 11:34:17 CEST 2019
 
[    0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d
 
[    0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d
 
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
 
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine model: AxelLite DL on SBCX CB0048
+
[    0.000000] OF: fdt:Machine model: AxelLite Quad on XELK-L rev 2.0.0
[    0.000000] Reserved memory: created ipuv3_fb memory pool at 0x4e000000, size 6 MiB
+
[    0.000000] Reserved memory: created ipuv3_fb memory pool at 0x8e000000, size 2 MiB
[    0.000000] Reserved memory: initialized node splashscreen, compatible id fsl,ipuv3-fb
+
[    0.000000] OF: reserved mem: initialized node splashscreen, compatible id fsl,ipuv3-fb
 
[    0.000000] Memory policy: Data cache writealloc
 
[    0.000000] Memory policy: Data cache writealloc
[    0.000000] PERCPU: Embedded 12 pages/cpu @bf7bb000 s16960 r8192 d24000 u49152
+
[    0.000000] percpu: Embedded 14 pages/cpu @e579b000 s25996 r8192 d23156 u57344
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 258560
+
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 520496
[    0.000000] Kernel command line: root=/dev/nfs rw nfsroot=192.168.0.13:/opt/nfsroot/axel/xelk,v3,tcp ip=192.168.0.90:192.168.0.13::255.255.255.
+
[    0.000000] Kernel command line: root=/dev/nfs rw nfsroot=192.168.0.121:/home/dvdk/axel/rfs/xelk-4.0.0,v3,tcp ip=192.168.0.120:192.168.0.121:192.168.0.254:255.255.255.0:xelk:eth0:off panic=1 console=ttymxc2,115200 vmalloc=400M mtdparts=gpmi-nand:8M(nand-uboot),1M(nand-env1),1M(nand-env2),1M(nand-fdt),1M(nand-spare),8M(nand-kernel),4M(nand-splash),-(nand-ubi);spi0.0:1M(spi-uboot),256k(spi-env1),256k(spi-env2),512k(spi-dtb),8M(spi-kernel),4M(spi-splash),-(spi-free)
0:xelk:eth0:off panic=1 console=ttymxc2,115200 vmalloc=400M mtdparts=gpmi-nand:8M(nand-uboot),1M(nand-env1),1M(nand-env2),1M(nand-fdt),1M(nand-spa
 
re),8M(nand-kernel),4M(nand-splash),-(nand-ubi);spi0.0:1M(spi-uboot),256k(spi-env1),256k(spi-env2),512k(spi-dtb),8M(spi-kernel),4M(spi-splash),-(s
 
pi-free)
 
 
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
 
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
+
[    0.000000] Dentry cache hash table entries: 262144 (order: 8, 1048576 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
+
[    0.000000] Inode-cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Memory: 693136K/1042432K available (8375K kernel code, 450K rwdata, 2732K rodata, 312K init, 429K bss, 349296K reserved, 0K cma-res
+
[    0.000000] Memory: 1734744K/2095104K available (9216K kernel code, 522K rwdata, 2380K rodata, 1024K init, 448K bss, 360360K reserved, 0K cma-reserved, 88064K highmem)
erved, 0K highmem)
 
 
[    0.000000] Virtual kernel memory layout:
 
[    0.000000] Virtual kernel memory layout:
 
[    0.000000]    vector  : 0xffff0000 - 0xffff1000  (  4 kB)
 
[    0.000000]    vector  : 0xffff0000 - 0xffff1000  (  4 kB)
 
[    0.000000]    fixmap  : 0xffc00000 - 0xfff00000  (3072 kB)
 
[    0.000000]    fixmap  : 0xffc00000 - 0xfff00000  (3072 kB)
[    0.000000]    vmalloc : 0xc0800000 - 0xff000000   (1000 MB)
+
[    0.000000]    vmalloc : 0xe7000000 - 0xff800000   ( 392 MB)
[    0.000000]    lowmem  : 0x80000000 - 0xc0000000   (1024 MB)
+
[    0.000000]    lowmem  : 0x80000000 - 0xe6800000   (1640 MB)
 
[    0.000000]    pkmap  : 0x7fe00000 - 0x80000000  (  2 MB)
 
[    0.000000]    pkmap  : 0x7fe00000 - 0x80000000  (  2 MB)
 
[    0.000000]    modules : 0x7f000000 - 0x7fe00000  (  14 MB)
 
[    0.000000]    modules : 0x7f000000 - 0x7fe00000  (  14 MB)
[    0.000000]      .text : 0x80008000 - 0x80ae1278   (11109 kB)
+
[    0.000000]      .text : 0x80008000 - 0x80a00000   (10208 kB)
[    0.000000]      .init : 0x80ae2000 - 0x80b30000   ( 312 kB)
+
[    0.000000]      .init : 0x80d00000 - 0x80e00000   (1024 kB)
[    0.000000]      .data : 0x80b30000 - 0x80ba0a48   ( 451 kB)
+
[    0.000000]      .data : 0x80e00000 - 0x80e82a90   ( 523 kB)
[    0.000000]        .bss : 0x80ba0a48 - 0x80c0c06c   ( 430 kB)
+
[    0.000000]        .bss : 0x80e82a90 - 0x80ef2e60   ( 449 kB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
+
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
 
[    0.000000] Preemptible hierarchical RCU implementation.
 
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
+
[    0.000000]  Build-time adjustment of leaf fanout to 32.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
 
 
[    0.000000] NR_IRQS:16 nr_irqs:16 16
 
[    0.000000] NR_IRQS:16 nr_irqs:16 16
[    0.000000] L2C-310 erratum 769419 enabled
+
[    0.000000] L2C-310 errata 752271 769419 enabled
 
[    0.000000] L2C-310 enabling early BRESP for Cortex-A9
 
[    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 full line of zeros enabled for Cortex-A9
 
[    0.000000] L2C-310 ID prefetch enabled, offset 16 lines
 
[    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 dynamic clock gating enabled, standby mode enabled
[    0.000000] L2C-310 cache controller enabled, 16 ways, 512 kB
+
[    0.000000] L2C-310 cache controller enabled, 16 ways, 1024 kB
[    0.000000] L2C-310: CACHE_ID 0x410000c8, AUX_CTRL 0x76450001
+
[    0.000000] L2C-310: CACHE_ID 0x410000c7, AUX_CTRL 0x76470001
[    0.000000] mxc_clocksource_init 3000000
 
 
[    0.000000] Switching to timer-based delay loop, resolution 333ns
 
[    0.000000] Switching to timer-based delay loop, resolution 333ns
[    0.000006] sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 715827882841ns
+
[    0.000007] sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 715827882841ns
[    0.000026] clocksource mxc_timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 637086815595 ns
+
[    0.000025] clocksource: mxc_timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 637086815595 ns
[    0.000960] Console: colour dummy device 80x30
+
[    0.001336] Console: colour dummy device 80x30
[    0.000977] Calibrating delay loop (skipped), value calculated using timer frequency.. 6.00 BogoMIPS (lpj=30000)
+
[    0.001359] Calibrating delay loop (skipped), value calculated using timer frequency.. 6.00 BogoMIPS (lpj=30000)
[    0.000994] pid_max: default: 32768 minimum: 301
+
[    0.001374] pid_max: default: 32768 minimum: 301
[    0.001090] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
+
[    0.001457] Mount-cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.001105] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
+
[    0.001469] Mountpoint-cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.001738] CPU: Testing write buffer coherency: ok
+
[    0.002050] CPU: Testing write buffer coherency: ok
[    0.002033] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
+
[    0.002386] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[    0.002128] Setting up static identity map for 0x10008280 - 0x100082d8
+
[    0.002444] Setting up static identity map for 0x10100000 - 0x10100058
[    0.060274] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
+
[    0.149865] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[    0.060347] Brought up 2 CPUs
+
[    0.219851] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002
[    0.060364] SMP: Total of 2 processors activated (12.00 BogoMIPS).
+
[    0.289849] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003
[    0.060374] CPU: All CPU(s) started in SVC mode.
+
[    0.289930] Brought up 4 CPUs
[    0.060857] devtmpfs: initialized
+
[    0.289957] SMP: Total of 4 processors activated (24.00 BogoMIPS).
[    0.071894] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4
+
[    0.289965] CPU: All CPU(s) started in SVC mode.
[    0.072283] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
+
[    0.290762] devtmpfs: initialized
[    0.072692] pinctrl core: initialized pinctrl subsystem
+
[    0.302714] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4
[    0.073692] NET: Registered protocol family 16
+
[    0.303023] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.075235] DMA: preallocated 256 KiB pool for atomic coherent allocations
+
[    0.303148] pinctrl core: initialized pinctrl subsystem
[    0.099694] cpuidle: using governor ladder
+
[    0.304103] NET: Registered protocol family 16
[    0.129689] cpuidle: using governor menu
+
[    0.305139] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.129880] CPU identified as i.MX6DL, silicon rev 1.3
+
[    0.339595] cpuidle: using governor menu
[    0.129991] Use WDOG2 as reset source
+
[    0.339807] CPU identified as i.MX6Q, silicon rev 1.5
[    0.
+
[    0.339954] Use WDOG2 as reset source
 +
[    0.349965] vddarm: bypassed regulator has no supply!
 +
[    0.349980] vddarm: failed to get the current voltage(-517)
 +
[    0.350733] vddsoc: bypassed regulator has no supply!
 +
[    0.350747] vddsoc: failed to get the current voltage(-517)
 +
[    0.361884] hw-breakpoint: found 5 (+
  
Freescale i.MX Release Distro 4.1.15-2.0.1 imx6qxelk /dev/ttymxc2
+
NXP i.MX Release Distro 4.9.11-1.0.0 imx6qxelk ttymxc2
  
 
imx6qxelk login:
 
imx6qxelk login:
 
</pre>
 
</pre>

Revision as of 09:50, 16 July 2019

Info Box
Axel-04.png Applies to Axel Ultra
Axel-lite 02.png Applies to Axel Lite
Axel-02.png Applies to AXEL ESATTA
SBC-AXEL-02.png Applies to SBC AXEL
AXEL ULite-top.png Applies to AXEL ULite
SBC Lynx-top.png Applies to SBC Lynx

History[edit | edit source]

Version Date DIVELK version Notes

3.0.1

November 2018 XELK 3.0.1 First release
4.0.0 July 2019 XELK 4.0.0

Introduction[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]

XELK 4.0.0 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 XELK 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

network adapter[edit | edit source]

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


Network-bridge.png


XELK VM Network.png


then check or re-configure the Host IP address

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

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

dvdk@vagrant:~$ 

nfs server[edit | edit source]

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

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

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

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

Target configuration[edit | edit source]

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

=> setenv serverip 192.168.0.120
=> setenv ipaddr 192.168.0.121
  • serverip is the IP address of the host machine running the tftp/nfs server
  • ipaddr is the IP address of the target

The kernel and device tree files has to be selected

=> setenv bootfile /tftpboot/axel/xelk-4.0.0_uImage
=> setenv fdtfile /tftpboot/axel/xelk-4.0.0_imx6q-xelk-l-2.0.0.dtb

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

=> setenv rootpath /home/dvdk/axel/rfs/xelk-4.0.0


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

=> run net_nfs
Using FEC device
TFTP from server 192.168.0.121; our IP address is 192.168.0.120
Filename 'axel/xelk-4.0.0_uImage'.
Load address: 0x12000000
Loading: #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         ###
         1.2 MiB/s
done
Bytes transferred = 6668104 (65bf48 hex)
Using FEC device
TFTP from server 192.168.0.121; our IP address is 192.168.0.120
Filename 'axel/xelk-4.0.0_imx6q-xelk-l-2.0.0.dtb'.
Load address: 0x18000000
Loading: ##########
         879.9 KiB/s
done
Bytes transferred = 47771 (ba9b hex)
FDT: override 'som_uniqueid' with 'ea9b8da9:2513b9d4'
FDT: override 'cb_uniqueid' with '00000000:00000000'
## Booting kernel from Legacy Image at 12000000 ...
   Image Name:   Linux-4.9.11-xelk-4.0.0
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    6668040 Bytes = 6.4 MiB
   Load Address: 10008000
   Entry Point:  10008000
   Verifying Checksum ... OK
## Flattened Device Tree blob at 18000000
   Booting using the fdt blob at 0x18000000
   Loading Kernel Image ... OK
   reserving fdt memory region: addr=18000000 size=c000
   Using Device Tree in place at 18000000, end 1800efff
switch to ldo_bypass mode!
Frame buffer: configure splashscreen reserved memory to 0x8e000000 (2 MiB)

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.11-xelk-4.0.0 (dvdk@vagrant) (gcc version 6.2.0 (GCC) ) #1 SMP PREEMPT Thu Jun 27 11:34:17 CEST 2019
[    0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] OF: fdt:Machine model: AxelLite Quad on XELK-L rev 2.0.0
[    0.000000] Reserved memory: created ipuv3_fb memory pool at 0x8e000000, size 2 MiB
[    0.000000] OF: reserved mem: initialized node splashscreen, compatible id fsl,ipuv3-fb
[    0.000000] Memory policy: Data cache writealloc
[    0.000000] percpu: Embedded 14 pages/cpu @e579b000 s25996 r8192 d23156 u57344
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 520496
[    0.000000] Kernel command line: root=/dev/nfs rw nfsroot=192.168.0.121:/home/dvdk/axel/rfs/xelk-4.0.0,v3,tcp ip=192.168.0.120:192.168.0.121:192.168.0.254:255.255.255.0:xelk:eth0:off panic=1 console=ttymxc2,115200 vmalloc=400M mtdparts=gpmi-nand:8M(nand-uboot),1M(nand-env1),1M(nand-env2),1M(nand-fdt),1M(nand-spare),8M(nand-kernel),4M(nand-splash),-(nand-ubi);spi0.0:1M(spi-uboot),256k(spi-env1),256k(spi-env2),512k(spi-dtb),8M(spi-kernel),4M(spi-splash),-(spi-free)
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 262144 (order: 8, 1048576 bytes)
[    0.000000] Inode-cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Memory: 1734744K/2095104K available (9216K kernel code, 522K rwdata, 2380K rodata, 1024K init, 448K bss, 360360K reserved, 0K cma-reserved, 88064K highmem)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
[    0.000000]     vmalloc : 0xe7000000 - 0xff800000   ( 392 MB)
[    0.000000]     lowmem  : 0x80000000 - 0xe6800000   (1640 MB)
[    0.000000]     pkmap   : 0x7fe00000 - 0x80000000   (   2 MB)
[    0.000000]     modules : 0x7f000000 - 0x7fe00000   (  14 MB)
[    0.000000]       .text : 0x80008000 - 0x80a00000   (10208 kB)
[    0.000000]       .init : 0x80d00000 - 0x80e00000   (1024 kB)
[    0.000000]       .data : 0x80e00000 - 0x80e82a90   ( 523 kB)
[    0.000000]        .bss : 0x80e82a90 - 0x80ef2e60   ( 449 kB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 32.
[    0.000000] NR_IRQS:16 nr_irqs:16 16
[    0.000000] L2C-310 errata 752271 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 kB
[    0.000000] L2C-310: CACHE_ID 0x410000c7, AUX_CTRL 0x76470001
[    0.000000] Switching to timer-based delay loop, resolution 333ns
[    0.000007] sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 715827882841ns
[    0.000025] clocksource: mxc_timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 637086815595 ns
[    0.001336] Console: colour dummy device 80x30
[    0.001359] Calibrating delay loop (skipped), value calculated using timer frequency.. 6.00 BogoMIPS (lpj=30000)
[    0.001374] pid_max: default: 32768 minimum: 301
[    0.001457] Mount-cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.001469] Mountpoint-cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.002050] CPU: Testing write buffer coherency: ok
[    0.002386] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[    0.002444] Setting up static identity map for 0x10100000 - 0x10100058
[    0.149865] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[    0.219851] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002
[    0.289849] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003
[    0.289930] Brought up 4 CPUs
[    0.289957] SMP: Total of 4 processors activated (24.00 BogoMIPS).
[    0.289965] CPU: All CPU(s) started in SVC mode.
[    0.290762] devtmpfs: initialized
[    0.302714] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4
[    0.303023] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.303148] pinctrl core: initialized pinctrl subsystem
[    0.304103] NET: Registered protocol family 16
[    0.305139] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.339595] cpuidle: using governor menu
[    0.339807] CPU identified as i.MX6Q, silicon rev 1.5
[    0.339954] Use WDOG2 as reset source
[    0.349965] vddarm: bypassed regulator has no supply!
[    0.349980] vddarm: failed to get the current voltage(-517)
[    0.350733] vddsoc: bypassed regulator has no supply!
[    0.350747] vddsoc: failed to get the current voltage(-517)
[    0.361884] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.
[    0.361898] hw-breakpoint: maximum watchpoint size is 4 bytes.
[    0.362682] imx6q-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver
[    0.364793] imx-gpc 20dc000.gpc: pu regulator not ready, retry
[    0.414489] mxs-dma 110000.dma-apbh: initialized
[    0.416537] vgaarb: loaded
[    0.417187] SCSI subsystem initialized
[    0.417632] usbcore: registered new interface driver usbfs
[    0.417695] usbcore: registered new interface driver hub
[    0.417781] usbcore: registered new device driver usb
[    0.417956] 2000000.aips-bus:usbphy_nop1 supply vcc not found, using dummy regulator
[    0.418084] 2000000.aips-bus:usbphy_nop2 supply vcc not found, using dummy regulator
[    0.419305] i2c i2c-1: IMX I2C adapter registered
[    0.419325] i2c i2c-1: can't use DMA, using PIO instead.
[    0.419984] i2c i2c-2: IMX I2C adapter registered
[    0.420000] i2c i2c-2: can't use DMA, using PIO instead.
[    0.420165] Linux video capture interface: v2.00
[    0.420205] pps_core: LinuxPPS API ver. 1 registered
[    0.420215] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.420239] PTP clock support registered
[    0.449654] imx-ipuv3 2400000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)
[    0.479648] imx-ipuv3 2800000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)
[    0.480479] MIPI CSI2 driver module loaded
[    0.480793] imx rpmsg driver is registered.
[    0.480969] Advanced Linux Sound Architecture Driver Initialized.
[    0.481774] Bluetooth: Core ver 2.22
[    0.481817] NET: Registered protocol family 31
[    0.481826] Bluetooth: HCI device and connection manager initialized
[    0.481841] Bluetooth: HCI socket layer initialized
[    0.481856] Bluetooth: L2CAP socket layer initialized
[    0.481895] Bluetooth: SCO socket layer initialized
[    0.482849] clocksource: Switched to clocksource mxc_timer1
[    0.482949] VFS: Disk quotas dquot_6.6.0
[    0.483012] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.493465] NET: Registered protocol family 2
[    0.494070] TCP established hash table entries: 16384 (order: 4, 65536 bytes)
[    0.494217] TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
[    0.494463] TCP: Hash tables configured (established 16384 bind 16384)
[    0.494544] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[    0.494624] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[    0.494848] NET: Registered protocol family 1
[    0.495279] RPC: Registered named UNIX socket transport module.
[    0.495293] RPC: Registered udp transport module.
[    0.495301] RPC: Registered tcp transport module.
[    0.495309] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.495998] hw perfevents: enabled with armv7_cortex_a9 PMU driver, 7 counters available
[    0.497717] Bus freq driver module loaded
[    0.498727] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.499652] workingset: timestamp_bits=30 max_order=19 bucket_order=0
[    0.506459] NFS: Registering the id_resolver key type
[    0.506494] Key type id_resolver registered
[    0.506503] Key type id_legacy registered
[    0.506552] ntfs: driver 2.1.32 [Flags: R/W].
[    0.506989] fuse init (API version 7.26)
[    0.511567] bounce: pool size: 64 pages
[    0.511584] io scheduler noop registered
[    0.511595] io scheduler deadline registered
[    0.511754] io scheduler cfq registered (default)
[    0.512261] imx-weim 21b8000.weim: Driver registered.
[    0.514073] OF: PCI: host bridge /soc/pcie@0x01000000 ranges:
[    0.514091] OF: PCI:   No bus range found for /soc/pcie@0x01000000, using [bus 00-ff]
[    0.514122] OF: PCI:    IO 0x01f80000..0x01f8ffff -> 0x00000000
[    0.514142] OF: PCI:   MEM 0x01000000..0x01efffff -> 0x01000000
[    0.723413] imx6q-pcie 1ffc000.pcie: phy link never came up
[    0.723429] imx6q-pcie 1ffc000.pcie: Link never came up
[    0.726507] imx6q-pcie 1ffc000.pcie: failed to initialize host
[    0.726575] imx6q-pcie: probe of 1ffc000.pcie failed with error -110
[    0.727944] imx-sdma 20ec000.sdma: no iram assigned, using external mem
[    0.728222] imx-sdma 20ec000.sdma: loaded firmware 3.3
[    0.732961] pfuze100-regulator 1-0008: Full layer: 2, Metal layer: 1
[    0.733697] pfuze100-regulator 1-0008: FAB: 0, FIN: 0
[    0.733713] pfuze100-regulator 1-0008: pfuze100 found.
[    0.737457] vddpu: supplied by SW1C
[    0.741107] SW4: Bringing 3150000uV into 1800000-1800000uV
[    0.747972] VGEN3: Bringing 2800000uV into 2500000-2500000uV
[    0.749501] VGEN4: Bringing 3000000uV into 1800000-1800000uV
[    0.751038] VGEN5: Bringing 3000000uV into 2800000-2800000uV
[    0.753139] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.754979] 21ec000.serial: ttymxc2 at MMIO 0x21ec000 (irq = 70, base_baud = 5000000) is a IMX
[    1.637046] console [ttymxc2] enabled
[    1.643120] imx sema4 driver is registered.
[    1.647364] [drm] Initialized
[    1.650773] [drm] Initialized vivante 1.0.0 20120216 on minor 0
[    1.667562] brd: module loaded
[    1.677285] loop: module loaded
[    1.686962] random: fast init done
[    1.692642] nand: device found, Manufacturer ID: 0xef, Chip ID: 0xdc
[    1.699029] nand: Unknown W29N04GV
[    1.702441] nand: 512 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    1.710511] gpmi-nand 112000.gpmi-nand: enable the asynchronous EDO mode 4
[    1.717442] Scanning device for bad blocks
[    2.030239] 8 cmdlinepart partitions found on MTD device gpmi-nand
[    2.036452] Creating 8 MTD partitions on "gpmi-nand":
[    2.041516] 0x000000000000-0x000000800000 : "nand-uboot"
[    2.048181] 0x000000800000-0x000000900000 : "nand-env1"
[    2.054553] 0x000000900000-0x000000a00000 : "nand-env2"
[    2.060891] 0x000000a00000-0x000000b00000 : "nand-fdt"
[    2.067193] 0x000000b00000-0x000000c00000 : "nand-spare"
[    2.073562] 0x000000c00000-0x000001400000 : "nand-kernel"
[    2.080136] 0x000001400000-0x000001800000 : "nand-splash"
[    2.086736] 0x000001800000-0x000020000000 : "nand-ubi"
[    2.099454] gpmi-nand 112000.gpmi-nand: driver registered.
[    2.107102] m25p80 spi0.0: s25fl256s1 (32768 Kbytes)
[    2.112082] 7 cmdlinepart partitions found on MTD device spi0.0
[    2.118033] Creating 7 MTD partitions on "spi0.0":
[    2.122835] 0x000000000000-0x000000100000 : "spi-uboot"
[    2.129235] 0x000000100000-0x000000140000 : "spi-env1"
[    2.135536] 0x000000140000-0x000000180000 : "spi-env2"
[    2.141764] 0x000000180000-0x000000200000 : "spi-dtb"
[    2.147884] 0x000000200000-0x000000a00000 : "spi-kernel"
[    2.154388] 0x000000a00000-0x000000e00000 : "spi-splash"
[    2.160750] 0x000000e00000-0x000002000000 : "spi-free"
[    2.167066] spi_imx 2008000.ecspi: probed
[    2.171784] libphy: Fixed MDIO Bus: probed
[    2.176308] CAN device driver interface
[    2.180372] 2090000.flexcan supply xceiver not found, using dummy regulator
[    2.188251] flexcan 2090000.flexcan: device registered (reg_base=e7334000, irq=33)
[    2.197475] 2188000.ethernet supply phy not found, using dummy regulator
[    2.204710] pps pps0: new PPS source ptp0
[    2.209661] libphy: fec_enet_mii_bus: probed
[    2.215655] fec 2188000.ethernet eth0: registered PHC device 0
[    2.222476] usbcore: registered new interface driver asix
[    2.227973] usbcore: registered new interface driver ax88179_178a
[    2.234144] usbcore: registered new interface driver cdc_ether
[    2.240028] usbcore: registered new interface driver cdc_eem
[    2.245761] usbcore: registered new interface driver net1080
[    2.251469] usbcore: registered new interface driver cdc_subset
[    2.257468] usbcore: registered new interface driver zaurus
[    2.263160] usbcore: registered new interface driver cdc_ncm
[    2.268869] usbcore: registered new interface driver cdc_mbim
[    2.274646] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.281195] ehci-pci: EHCI PCI platform driver
[    2.286036] usbcore: registered new interface driver cdc_wdm
[    2.291764] usbcore: registered new interface driver usb-storage
[    2.298951] 2184800.usbmisc supply vbus-wakeup not found, using dummy regulator
[    2.314560] ci_hdrc ci_hdrc.1: EHCI Host Controller
[    2.319472] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 1
[    2.352890] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00
[    2.358515] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.365343] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.372574] usb usb1: Product: EHCI Host Controller
[    2.377478] usb usb1: Manufacturer: Linux 4.9.11-xelk-4.0.0 ehci_hcd
[    2.384204] usb usb1: SerialNumber: ci_hdrc.1
[    2.389210] hub 1-0:1.0: USB hub found
[    2.393027] hub 1-0:1.0: 1 port detected
[    2.398081] mousedev: PS/2 mouse device common for all mice
[    2.404975] input: TSC2007 Touchscreen as /devices/soc0/soc/2100000.aips-bus/21a8000.i2c/i2c-2/2-0048/input/input0
[    2.416762] snvs_rtc 20cc000.snvs:snvs-rtc-lp: rtc core: registered 20cc000.snvs:snvs-r as rtc0
[    2.425602] i2c /dev entries driver
[    2.430756] backlight supply power not found, using dummy regulator
[    2.439907] 20e0000.hdmi_video supply HDMI not found, using dummy regulator
[    2.448213] mxc_sdc_fb fb@0: registered mxc display driver lcd
[    2.454155] mxc_sdc_fb fb@0: using reserved memory region at 0x8e000000, size 2 MiB
[    2.461827] mxc_sdc_fb fb@0: assigned reserved memory node splashscreen
[    2.468470] mxc_sdc_fb fb@0: using memory region 0x8e000000 0x8e1fffff
[    2.525841] mxc_v4l2_output v4l2_out: V4L2 device registered as video16
[    2.532628] mxc_v4l2_output v4l2_out: V4L2 device registered as video17
[    2.540671] VGEN3: voltage operation not allowed
[    2.783210] ov5640_read_reg:write reg error:reg=300a
[    2.788183] camera ov5640_mipi is not found
[    2.793623] Bluetooth: HCI UART driver ver 2.3
[    2.798080] Bluetooth: HCI UART protocol H4 registered
[    2.803282] Bluetooth: HCI UART protocol BCSP registered
[    2.808603] Bluetooth: HCI UART protocol LL registered
[    2.814244] sdhci: Secure Digital Host Controller Interface driver
[    2.820431] sdhci: Copyright(c) Pierre Ossman
[    2.824832] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.892914] mmc0: SDHCI controller on 2190000.usdhc [2190000.usdhc] using ADMA
[    2.962159] mmc0: host does not support reading read-only switch, assuming write-enable
[    2.976216] mmc0: new high speed SDHC card at address 59b4
[    2.982263] mmcblk0: mmc0:59b4 USDU1 14.9 GiB
[    2.986757] mmc1: SDHCI controller on 2194000.usdhc [2194000.usdhc] using ADMA
[    2.987839] mxc_vdoa 21e4000.vdoa: i.MX Video Data Order Adapter(VDOA) driver probed
[    2.989302] caam 2100000.caam: ERA source: CAAMVID.
[    2.989343] caam 2100000.caam: AXI pipeline throttling enabled.
[    2.990440] caam 2100000.caam: Entropy delay = 3200
[    2.990467] caam 2100000.caam: Instantiated RNG4 SH0
[    3.051232] caam 2100000.caam: Instantiated RNG4 SH1
[    3.051243] caam 2100000.caam: device ID = 0x0a16010000000000 (Era 4)
[    3.051251] caam 2100000.caam: job rings = 2, qi = 0
[    3.081138]  mmcblk0: p1 p2
[    3.127493] caam algorithms registered in /proc/crypto
[    3.136636] caam_jr 2101000.jr0: registering rng-caam
[    3.142565] platform caam_sm: blkkey_ex: 4 keystore units available
[    3.149033] platform caam_sm: 64-bit clear key:
[    3.153651] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
[    3.159320] platform caam_sm: 64-bit black key:
[    3.163883] platform caam_sm: [0000] 74 11 16 0f ed db 3b 63
[    3.169555] platform caam_sm: [0008] 7b 40 17 1b f1 98 48 a4
[    3.175238] platform caam_sm: 128-bit clear key:
[    3.179868] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
[    3.185554] platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f
[    3.191225] platform caam_sm: 128-bit black key:
[    3.195872] platform caam_sm: [0000] e4 be c9 d0 bc b2 03 1b
[    3.201542] platform caam_sm: [0008] 11 21 6f 4f 92 3c 9f c9
[    3.207224] platform caam_sm: 192-bit clear key:
[    3.211852] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
[    3.217539] platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f
[    3.223226] platform caam_sm: [0016] 10 11 12 13 14 15 16 17
[    3.228891] platform caam_sm: 192-bit black key:
[    3.233532] platform caam_sm: [0000] 64 bd 9d 71 35 5e 37 f4
[    3.239202] platform caam_sm: [0008] 47 de ba 85 2b c6 e5 e9
[    3.244887] platform caam_sm: [0016] 4d 1e f6 9c 78 cc d3 02
[    3.250556] platform caam_sm: [0024] 74 ed 70 9e fe e7 ab 55
[    3.256242] platform caam_sm: 256-bit clear key:
[    3.260869] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
[    3.266554] platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f
[    3.272225] platform caam_sm: [0016] 10 11 12 13 14 15 16 17
[    3.277910] platform caam_sm: [0024] 18 19 1a 1b 1c 1d 1e 1f
[    3.283590] platform caam_sm: 256-bit black key:
[    3.288219] platform caam_sm: [0000] 96 72 1f 31 66 73 d4 51
[    3.293905] platform caam_sm: [0008] 46 1e db dc 71 1a fa f2
[    3.299575] platform caam_sm: [0016] 96 fd bd f3 a3 32 1c db
[    3.305257] platform caam_sm: [0024] eb 4e 56 46 66 73 35 1f
[    3.310925] platform caam_sm: 64-bit unwritten blob:
[    3.315911] platform caam_sm: [0000] 00 00 00 00 00 00 00 00
[    3.321583] platform caam_sm: [0008] 00 00 00 00 00 00 00 00
[    3.327268] platform caam_sm: [0016] 00 00 00 00 00 00 00 00
[    3.332952] platform caam_sm: [0024] 00 00 00 00 00 00 00 00
[    3.338621] platform caam_sm: [0032] 00 00 00 00 00 00 00 00
[    3.344304] platform caam_sm: [0040] 00 00 00 00 00 00 00 00
[    3.349972] platform caam_sm: [0048] 00 00 00 00 00 00 00 00
[    3.355653] platform caam_sm: [0056] 00 00 00 00 00 00 00 00
[    3.361322] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[    3.367006] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[    3.372675] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[    3.378358] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[    3.384036] platform caam_sm: 128-bit unwritten blob:
[    3.389099] platform caam_sm: [0000] 00 00 00 00 00 00 00 00
[    3.394785] platform caam_sm: [0008] 00 00 00 00 00 00 00 00
[    3.400455] platform caam_sm: [0016] 00 00 00 00 00 00 00 00
[    3.406138] platform caam_sm: [0024] 00 00 00 00 00 00 00 00
[    3.411807] platform caam_sm: [0032] 00 00 00 00 00 00 00 00
[    3.417488] platform caam_sm: [0040] 00 00 00 00 00 00 00 00
[    3.423173] platform caam_sm: [0048] 00 00 00 00 00 00 00 00
[    3.428842] platform caam_sm: [0056] 00 00 00 00 00 00 00 00
[    3.434526] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[    3.440196] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[    3.445879] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[    3.451550] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[    3.457229] platform caam_sm: 196-bit unwritten blob:
[    3.462291] platform caam_sm: [0000] 00 00 00 00 00 00 00 00
[    3.467979] platform caam_sm: [0008] 00 00 00 00 00 00 00 00
[    3.473664] platform caam_sm: [0016] 00 00 00 00 00 00 00 00
[    3.479333] platform caam_sm: [0024] 00 00 00 00 00 00 00 00
[    3.485015] platform caam_sm: [0032] 00 00 00 00 00 00 00 00
[    3.490685] platform caam_sm: [0040] 00 00 00 00 00 00 00 00
[    3.496369] platform caam_sm: [0048] 00 00 00 00 00 00 00 00
[    3.502038] platform caam_sm: [0056] 00 00 00 00 00 00 00 00
[    3.507722] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[    3.513412] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[    3.519081] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[    3.524765] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[    3.530433] platform caam_sm: 256-bit unwritten blob:
[    3.535509] platform caam_sm: [0000] 00 00 00 00 00 00 00 00
[    3.541178] platform caam_sm: [0008] 00 00 00 00 00 00 00 00
[    3.546862] platform caam_sm: [0016] 00 00 00 00 00 00 00 00
[    3.552531] platform caam_sm: [0024] 00 00 00 00 00 00 00 00
[    3.558214] platform caam_sm: [0032] 00 00 00 00 00 00 00 00
[    3.563897] platform caam_sm: [0040] 00 00 00 00 00 00 00 00
[    3.569566] platform caam_sm: [0048] 00 00 00 00 00 00 00 00
[    3.575250] platform caam_sm: [0056] 00 00 00 00 00 00 00 00
[    3.580919] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[    3.586601] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[    3.592270] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[    3.597953] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[    3.603828] platform caam_sm: 64-bit black key in blob:
[    3.609067] platform caam_sm: [0000] a0 87 08 21 71 47 90 66
[    3.614761] platform caam_sm: [0008] 44 20 b4 02 3a dc ed fc
[    3.620431] platform caam_sm: [0016] 0a eb 64 c7 1d 2a b9 a2
[    3.626117] platform caam_sm: [0024] 16 38 6d 89 f4 b2 41 5d
[    3.631789] platform caam_sm: [0032] ad ac a9 6c b1 9d a7 1f
[    3.637472] platform caam_sm: [0040] 49 77 7a bc f5 9b 1c e7
[    3.643157] platform caam_sm: [0048] b6 db 94 24 91 45 2b 19
[    3.648826] platform caam_sm: [0056] 00 00 00 00 00 00 00 00
[    3.654510] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[    3.660180] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[    3.665863] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[    3.671532] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[    3.677212] platform caam_sm: 128-bit black key in blob:
[    3.682534] platform caam_sm: [0000] 0a 8f 9b 03 ee 77 d8 6d
[    3.688217] platform caam_sm: [0008] c8 43 03 3e e4 e0 13 bd
[    3.693903] platform caam_sm: [0016] f1 c5 2e 5b 14 71 49 81
[    3.699572] platform caam_sm: [0024] 7e 17 2f a0 1a 24 b0 8c
[    3.705263] platform caam_sm: [0032] 1f ba 2a 16 7d 6d 45 0c
[    3.710934] platform caam_sm: [0040] a7 cc 2e 78 c6 ee 4a 43
[    3.716619] platform caam_sm: [0048] 9f 8a c8 5a 09 35 92 7c
[    3.722289] platform caam_sm: [0056] 7a 52 65 74 b9 7a a8 ff
[    3.727974] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[    3.733658] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[    3.739328] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[    3.745008] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[    3.750673] platform caam_sm: 192-bit black key in blob:
[    3.756014] platform caam_sm: [0000] 13 b2 1e 39 2c 12 b4 d6
[    3.761683] platform caam_sm: [0008] 55 d7 12 6c 02 32 53 79
[    3.767368] platform caam_sm: [0016] a6 71 43 26 43 c5 c2 d9
[    3.773059] platform caam_sm: [0024] b7 7b 02 9c dd c2 62 40
[    3.778730] platform caam_sm: [0032] df 9f 29 8a 1a 8b 27 e0
[    3.784417] platform caam_sm: [0040] 00 94 81 ef 1d da c7 94
[    3.790088] platform caam_sm: [0048] b1 29 d6 ec b8 1a da 44
[    3.795772] platform caam_sm: [0056] 40 2e db c7 10 86 a8 2d
[    3.801443] platform caam_sm: [0064] ca eb e7 40 9d 90 43 91
[    3.807126] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[    3.812795] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[    3.818479] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[    3.824159] platform caam_sm: 256-bit black key in blob:
[    3.829483] platform caam_sm: [0000] 34 14 01 3d a5 f4 19 d1
[    3.835167] platform caam_sm: [0008] eb c3 34 57 44 ac 42 00
[    3.840836] platform caam_sm: [0016] f4 84 e4 f9 55 b8 92 f8
[    3.846520] platform caam_sm: [0024] 93 61 3e 3c a7 e9 9c 12
[    3.852191] platform caam_sm: [0032] 93 d9 2a 52 e9 4d 3a 48
[    3.857876] platform caam_sm: [0040] fd e6 e5 9b f0 f1 b2 48
[    3.863560] platform caam_sm: [0048] 78 4e d6 17 5f 39 41 e2
[    3.869229] platform caam_sm: [0056] 28 d0 d9 73 55 60 05 26
[    3.874912] platform caam_sm: [0064] f4 e7 ae 18 4e cc ef 85
[    3.880582] platform caam_sm: [0072] 7e 1b df 36 0f ce 67 c0
[    3.886265] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[    3.891933] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[    3.897794] platform caam_sm: restored 64-bit black key:
[    3.903143] platform caam_sm: [0000] 3d d1 79 74 3e 71 a9 22
[    3.908814] platform caam_sm: [0008] fd 48 c2 75 9d 12 1f e4
[    3.914497] platform caam_sm: restored 128-bit black key:
[    3.919907] platform caam_sm: [0000] e4 be c9 d0 bc b2 03 1b
[    3.925593] platform caam_sm: [0008] 11 21 6f 4f 92 3c 9f c9
[    3.931258] platform caam_sm: restored 192-bit black key:
[    3.936683] platform caam_sm: [0000] 64 bd 9d 71 35 5e 37 f4
[    3.942353] platform caam_sm: [0008] 47 de ba 85 2b c6 e5 e9
[    3.948039] platform caam_sm: [0016] d7 96 82 17 d8 20 9d 7f
[    3.953723] platform caam_sm: [0024] 8b 4d 7a 52 ec 0d c6 e1
[    3.959388] platform caam_sm: restored 256-bit black key:
[    3.964812] platform caam_sm: [0000] 96 72 1f 31 66 73 d4 51
[    3.970483] platform caam_sm: [0008] 46 1e db dc 71 1a fa f2
[    3.976168] platform caam_sm: [0016] 96 fd bd f3 a3 32 1c db
[    3.981837] platform caam_sm: [0024] eb 4e 56 46 66 73 35 1f
[    3.987775] snvs-secvio 20cc000.caam-snvs: can't get snvs clock
[    3.993777] snvs-secvio 20cc000.caam-snvs: violation handlers armed - non-secure state
[    4.002361] usbcore: registered new interface driver usbhid
[    4.007971] usbhid: USB HID core driver
[    4.017015] NET: Registered protocol family 10
[    4.022450] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    4.029097] NET: Registered protocol family 17
[    4.033590] can: controller area network core (rev 20120528 abi 9)
[    4.039948] NET: Registered protocol family 29
[    4.044436] can: raw protocol (rev 20120528)
[    4.048716] can: broadcast manager protocol (rev 20161123 t)
[    4.054410] can: netlink gateway (rev 20130117) max_hops=1
[    4.060132] Bluetooth: RFCOMM TTY layer initialized
[    4.065052] Bluetooth: RFCOMM socket layer initialized
[    4.070214] Bluetooth: RFCOMM ver 1.11
[    4.074000] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    4.079317] Bluetooth: BNEP filters: protocol multicast
[    4.084610] Bluetooth: BNEP socket layer initialized
[    4.089583] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    4.095534] Bluetooth: HIDP socket layer initialized
[    4.100556] 8021q: 802.1Q VLAN Support v1.8
[    4.105146] Key type dns_resolver registered
[    4.111203] cpu cpu0: regulators not ready, retry
[    4.129640] vddarm: supplied by SW1AB
[    4.133918] vddsoc: supplied by SW1C
[    4.138108] imx-gpc 20dc000.gpc: Registered imx-gpc
[    4.144579] mxc_vpu 2040000.vpu_fsl: VPU initialized
[    4.150295] Galcore version 6.2.2.93313
[    4.315879] cpu cpu0: Registered imx6q-cpufreq
[    4.321427] imx_thermal 2000000.aips-bus:tempmon: Automotive CPU temperature grade - max:125C critical:120C passive:115C
[    4.333570] input: gpio-keys as /devices/soc0/gpio-keys/input/input1
[    4.340042] random: crng init done
[    4.343882] snvs_rtc 20cc000.snvs:snvs-rtc-lp: setting system clock to 1970-01-01 00:00:01 UTC (1)
[    4.484169] Micrel KSZ9031 Gigabit PHY 2188000.ethernet:07: attached PHY driver [Micrel KSZ9031 Gigabit PHY] (mii_bus:phy_addr=2188000.ethernet:07, irq=-1)
[    4.498238] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    6.563439] fec 2188000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[    6.572954] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[    6.603030] IP-Config: Complete:
[    6.606296]      device=eth0, hwaddr=f6:b6:b3:16:bd:84, ipaddr=192.168.0.120, mask=255.255.255.0, gw=192.168.0.254
[    6.616705]      host=xelk, domain=, nis-domain=(none)
[    6.621866]      bootserver=192.168.0.121, rootserver=192.168.0.121, rootpath=
[    6.629817] usb_otg_vbus: disabling
[    6.633365] VGEN1: disabling
[    6.636818] VGEN6: disabling
[    6.640257] ALSA device list:
[    6.643248]   No soundcards found.
[    6.656062] VFS: Mounted root (nfs filesystem) on device 0:13.
[    6.663411] devtmpfs: mounted
[    6.667267] Freeing unused kernel memory: 1024K (80d00000 - 80e00000)
[    6.965426] systemd[1]: System time before build time, advancing clock.
[    7.020043] systemd[1]: systemd 230 running in system mode. (-PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT +GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
[    7.038673] systemd[1]: Detected architecture arm.

Welcome to NXP i.MX Release Distro 4.9.11-1.0.0 (morty)!

[    7.074978] systemd[1]: Set hostname to <imx6qxelk>.
[    7.837190] systemd[1]: connman.service: Cannot add dependency job, ignoring: Unit connman.service is masked.
[    7.848186] systemd[1]: sysinit.target: Found ordering cycle on sysinit.target/start
[    7.855982] systemd[1]: sysinit.target: Found dependency on alignment.service/start
[    7.863700] systemd[1]: sysinit.target: Found dependency on basic.target/start
[    7.870941] systemd[1]: sysinit.target: Found dependency on sockets.target/start
[    7.878391] systemd[1]: sysinit.target: Found dependency on rpcbind.socket/start
[    7.885839] systemd[1]: sysinit.target: Found dependency on sysinit.target/start
[ SKIP ] Ordering cycle found, skipping alignment.service
[  OK  ] Listening on Journal Socket.
[  OK  ] Listening on udev Kernel Socket.
[  OK  ] Listening on Syslog Socket.
[  OK  ] Reached target Swap.
[  OK  ] Reached target Remote File Systems.
[  OK  ] Created slice User and Session Slice.
[  OK  ] Listening on Journal Socket (/dev/log).
[  OK  ] Listening on udev Control Socket.
[  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
[  OK  ] Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Listening on Network Service Netlink Socket.
[  OK  ] Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Reached target Paths.
[  OK  ] Created slice System Slice.
[  OK  ] Created slice system-getty.slice.
         Mounting Debug File System...
         Starting Journal Service...
         Mounting Temporary Directory...
         Starting Setup Virtual Console...
[  OK  ] Reached target Slices.
         Starting Remount Root and Kernel File Systems...
         Starting Load Kernel Modules...
[  OK  ] Created slice system-serial\x2dgetty.slice.
[  OK  ] Mounted Debug File System.
[  OK  ] Mounted Temporary Directory.
[  OK  ] Started Setup Virtual Console.
[  OK  ] Started Remount Root and Kernel File Systems.
[FAILED] Failed to start Load Kernel Modules.
See 'systemctl status systemd-modules-load.service' for details.
[  OK  ] Started Journal Service.
         Starting Apply Kernel Variables...
         Mounting Configuration File System...
         Mounting FUSE Control File System...
         Starting Flush Journal to Persistent Storage...
         Starting udev Coldplug all Devices...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Mounted FUSE Control File System.
[  OK  ] Mounted Configuration File System.
[  OK  ] Started Apply Kernel Variables.
[    9.268811] systemd-journald[211]: Received request to flush runtime journal from PID 1
[  OK  ] Started Flush Journal to Persistent Storage.
[  OK  ] Started Create Static Device Nodes in /dev.
[  OK  ] Reached target Local File Systems (Pre).
         Mounting /var/volatile...
         Starting udev Kernel Device Manager...
[  OK  ] Mounted /var/volatile.
         Starting Load/Save Random Seed...
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Started udev Coldplug all Devices.
[  OK  ] Started Load/Save Random Seed.
[  OK  ] Started Create Volatile Files and Directories.
[  OK  ] Started udev Kernel Device Manager.
[  OK  ] Created slice system-systemd\x2dbacklight.slice.
         Starting Load/Save Screen Backlight...htness of backlight:backlight...
         Starting Update UTMP about System Boot/Shutdown...
         Starting Network Time Synchronization...
         Starting Start Psplash Boot Screen...
[   10.570136] ERROR: v4l2 capture: slave not found!
[   10.576616] ERROR: v4l2 capture: slave not found!
[  OK  ] Started Load/Save Screen Backlight Brightness of backlight:backlight.
[  OK  ] Started Start Psplash Boot Screen.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Started Update UTMP about System Boot/Shutdown.
[  OK  ] Found device /dev/ttymxc2.
[   11.673008] EXT4-fs (mmcblk0p2): mounting ext3 file system using the ext4 subsystem
[   11.768209] EXT4-fs (mmcblk0p2): recovery complete
[   11.773145] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[   11.829847] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[  OK  ] Reached target System Time Synchronized.
[  OK  ] Reached target System Initialization.
         Starting sshd.socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target Timers.
[  OK  ] Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on sshd.socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
[  OK  ] Started D-Bus System Message Bus.
         Starting Network Service...
[  OK  ] Started System Logging Service.
         Starting Telephony service...
[  OK  ] Started Periodic Command Scheduler.
[  OK  ] Started Configuration for i.MX GPU (Former rc_gpu.S).
         Starting Login Service...
[  OK  ] Started Job spooling tools.
[  OK  ] Started Kernel Logging Service.
[  OK  ] Started Updates psplash to basic.
[  OK  ] Started Network Service.
[  OK  ] Started Telephony service.
[  OK  ] Reached target Network.
[  OK  ] Started Servizio Custom di Test.
         Starting Network Name Resolution...
         Starting /etc/rc.local Compatibility...
[  OK  ] Started Update psplash to network.
         Starting Terminate Psplash Boot Screen...
[  OK  ] Started Network Name Resolution.
[  OK  ] Started /etc/rc.local Compatibility.
[  OK  ] Started Terminate Psplash Boot Screen.
[  OK  ] Started Login Service.
[  OK  ] Started Serial Getty on ttymxc2.
[  OK  ] Started Getty on tty1.
[  OK  ] Reached target Login Prompts.
[  OK  ] Reached target Multi-User System.
         Starting Update UTMP about System Runlevel Changes...
[  OK  ] Started Update UTMP about System Runlevel Changes.

NXP i.MX Release Distro 4.9.11-1.0.0 imx6qxelk ttymxc2

imx6qxelk login: