一、优化启动时间的流程
1、系统启动流程:先使用nxp提供的系统方案启动系统。分析系统启动流程。优化启动时间工作在验证系统必须功能正常的前提下进行。系统可以独立下载源码进行编译,也可以通过yocto工程构建。
本次优化启动时间的优化目标为冷启动到进入界面的启动时间为3秒。

2、优化思路

二、启动快速启动裁剪原则
- 从优化的最后一步开始进行优化
- 先不要一开始就裁剪掉那些可以帮助我们判断和测量那些组件可以优化的工具和模块
- 先从应用程序开始优化
- 可以先简化systemd,移除不必要的服务。若是使用BusyBox,则减少启动脚本加载的命令和启动的进程,尽量减少启动应用程序所占用的时间。
- 下一步就是简化和优化kernel,内核模块裁剪,去除调试功能,裁剪不必要驱动
- 再然后才是bootloader优化。这时候内核优化应该已经接入尾声,而且,bootargs应该是一个定值。
三、测量启动时间的方法
在优化工作下,总是需要各种各样的启动时间测量工具,以及分析工具。让自己的优化时间工作高效快速
1. 串口终端工具:grabserial
- Ubuntu16.04安装:
获取链接:http://elinux.org/Grabserial
- 安装grabserial
$ tar xzvf grabserial-1.9.3.tar.gz $ cd grabserial-1.9.3/ $ sudo python setup.py install
若出现问题:
$ sudo python setup.py install [sudo] l 的密码: Traceback (most recent call last): File "setup.py", line 5, in
from setuptools import setup ImportError: No module named setuptools
则安装:setuptools,然后在回滚之前的grabserial流程。
wget --no-check-certificate https://pypi.python.org/packages/source/s/setuptools/setuptools-12.0.3.tar.gz#md5=f07e4b0f4c1c9368fcd980d888b29a65 tar xvf setuptools-12.0.3.tar.gz cd setuptools-12.0.3 sudo python setup.py install
- 使用grabserial
sudo grabserial -d /dev/ttyUSB0 -t -e 20

2. dmesg命令分析kernel启动
dmesg可以输出启动启动的打印信息,其信息输出可以通过各种工具加工成图形表格,有助于帮助我们分析,系统在启动的时候到底花了多少时间在哪一些事情上。
- dmesg使用准备工作
- 配置内核:增大log缓冲区
$ make menuconfig > General setup ───────────────────────────────────────────────── │ │ (16) Kernel log buffer size (16 => 64KB, 17 => 128KB) │ │ │ │ (16) CPU kernel log buffer sizecontribution (13 => 8 KB, 17 => 128KB) │ │
- bootargs配置:
setenv console 'ttymxc0, earlycon=ec_imx6q,0x, initcall_debug printk.time=1'
- 使用kernel/scripts下的bootgraph.pl脚本生成图形
- 准备dmesg.log
$ dmesg > dmesg.log
- 生成bootgraph.svg,不好看,不直观。
$ cat dmesg.log | perl bootgraph.pl > bootgraph.svg

- 编写dmesg-initcall.pl脚本和FlameGraph生成图形
dmesg-initcall.pl脚本会调用到kernel/scripts下的bootgraph.pl脚本,算是一种改进版。
- dmesg-initcall.pl脚本
#!/usr/bin/perl # Copyright 2008, Intel Corporation # # This file is part of the Linux kernel # # This program file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; version 2 of the License. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # for more details. # # You should have received a copy of the GNU General Public License # along with this program in a file named COPYING; if not, write to the # Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301 USA # # Authors: # Arjan van de Ven
# # This script turns a dmesg output into a SVG graphic that shows which # functions take how much time. You can view SVG graphics with various # programs, including Inkscape, The Gimp and Firefox. # # # For this script to work, the kernel needs to be compiled with the # CONFIG_PRINTK_TIME configuration option enabled, and with # "initcall_debug" passed on the kernel command line. # # usage: # dmesg | perl scripts/bootgraph.pl > output.svg # use strict; my %start; my %end; my %type; my $done = 0; my $maxtime = 0; my $firsttime = 99999; my $count = 0; my %pids; my %pidctr; while (<>) { my $line = $_; if ($line =~ /([0-9\.]+)\].* calling ([a-zA-Z0-9\_\.]+)\+/) { my $func = $2; if ($done == 0) { $start{$func} = $1; $type{$func} = 0; if ($1 < $firsttime) { $firsttime = $1; } } if ($line =~ /\@ ([0-9]+)/) { $pids{$func} = $1; } $count = $count + 1; } if ($line =~ /([0-9\.]+)\].* async_waiting @ ([0-9]+)/) { my $pid = $2; my $func; if (!defined($pidctr{$pid})) { $func = "wait_" . $pid . "_1"; $pidctr{$pid} = 1; } else { $pidctr{$pid} = $pidctr{$pid} + 1; $func = "wait_" . $pid . "_" . $pidctr{$pid}; } if ($done == 0) { $start{$func} = $1; $type{$func} = 1; if ($1 < $firsttime) { $firsttime = $1; } } $pids{$func} = $pid; $count = $count + 1; } if ($line =~ /([0-9\.]+)\].* initcall ([a-zA-Z0-9\_\.]+)\+.*returned/) { if ($done == 0) { $end{$2} = $1; $maxtime = $1; } } if ($line =~ /([0-9\.]+)\].* async_continuing @ ([0-9]+)/) { my $pid = $2; my $func = "wait_" . $pid . "_" . $pidctr{$pid}; $end{$func} = $1; $maxtime = $1; } if ($line =~ /Write protecting the/) { $done = 1; } if ($line =~ /Freeing unused kernel memory/) { $done = 1; } } if ($count == 0) { print STDERR <
output.svg END exit 1; } my $mult = 1950.0 / ($maxtime - $firsttime); my $threshold2 = ($maxtime - $firsttime) / 120.0; my $threshold = $threshold2/10; my @initcalls = sort { $start{$a} <=> $start{$b} } keys(%start); foreach my $key (@initcalls) { my $duration = $end{$key} - $start{$key}; if ($duration >= $threshold) { my ($delta); $delta = (int(($end{$key} - $start{$key})*1000)) / 1000; printf("%s %s\n", $key, $delta); }
- 获取FlameGraph
$ git clone https://github.com/brendangregg/FlameGraph.git
- 生成linux-boot-flamegraph.svg
cat dmesg.log | perl dmesg-initcall.pl > boot-initcall.log cat boot-initcall.log | ./FlameGraph/flamegraph.pl > linux-boot-flamegraph.svg

- 生成linux-boot-gnuplot.svg直方图
- 准备linux-boot.gnuplot脚本
set terminal svg size 800,300 fsize 4 set output 'linux-boot-gnuplot.svg' set style data histograms set style histogram clustered gap 1 title offset character 0, 0, 0 set style fill solid 0.4 border set xtics rotate by -45 set boxwidth 0.9 absolute plot './boot-initcall.log' using 2:xticlabels(1)
- 安装gnuplot-x11
$ sudo apt-get install gnuplot-x11
- 生成linux-boot-gnuplot.svg
$ gnuplot < linux-boot.gnuplot

- 生成linux-boot-histogram.svg
- 准备TinyDrow
$ git clone https://github.com/tinyclub/tinydraw.git
- 生成linux-boot-histogram.svg
$ ./tinydraw/histogram/histogram.sh boot-initcall.log > linux-boot-histogram.svg

6. 统一生成所有svg
#!/bin/bash cat dmesg.log | perl bootgraph.pl > bootgraph.svg cat dmesg.log | perl dmesg-initcall.pl > boot-initcall.log cat boot-initcall.log | ./FlameGraph/flamegraph.pl > linux-boot-flamegraph.svg gnuplot < linux-boot.gnuplot ./tinydraw/histogram/histogram.sh boot-initcall.log > linux-boot-histogram.svg rm boot-initcall.log mv *.svg /mnt/hgfs/D/
4、使用systemd-analyze分析systemd启动
$ systemd-analyze plot > systemd.svg

nxp提供源码编译启动分析
- BootROM到signal_hdmi部分时间,大概0.s。这段基本没有优化空间
[0.000001 0.000001] [0. 0.] U-Boot SPL 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g (Mar 12 2018 - 12:25:24)
- spl时间:0.3698s
[0. 0.] U-Boot SPL 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g (Mar 12 2018 - 12:25:24) [1. 0.000601] Trying to boot from MMC1
- bl31时间:0.s
[1. 0.000601] Trying to boot from MMC1 [1. 0.] [1. 0.000531] [1. 0.000162] U-Boot 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g (Mar 12 2018 - 12:25:24 -0500)
- uboot时间:1.s
这里减去2s倒数时间
[1. 0.000162] U-Boot 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g (Mar 12 2018 - 12:25:24 -0500) [4. 0.000121] Starting kernel ...
- kernel时间:4.65263s
这里以Freeing unused kernel memory为kernel启动动作为结束标志。
[4. 0.000121] Starting kernel ... [4. 0.000971] [4. 0.040697] [ 0.000000] Booting Linux on physical CPU 0x0 [9. 0.005236] [ 4.] Freeing unused kernel memory: 1088K
- systemd时间:3.s
以进入login为systemd启动结束标志。
[9. 0.005236] [ 4.] Freeing unused kernel memory: 1088K [12. 0.009651] imx8mqevk login:
7.以下为完整的启动log
l@l:/$ sudo grabserial -d /dev/ttyUSB0 -t -e 30 [0.000001 0.000001] [0. 0.] U-Boot SPL 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g (Mar 12 2018 - 12:25:24) [0. 0.011353] PMIC: PFUZE100 ID=0x10 [1.000412 0.] start to config phy: p0=3200mts, p1=667mts with 1D2D training [1.016420 0.016008] check ddr4_pmu_train_imem code [1.027512 0.011092] check ddr4_pmu_train_imem code pass [1.047903 0.020391] check ddr4_pmu_train_dmem code [1.057924 0.010021] check ddr4_pmu_train_dmem code pass [1.061059 0.003135] config to do 3200 1d training. [1.066467 0.005408] Training PASS [1.067272 0.000805] check ddr4_pmu_train_imem code [1.074665 0.007393] check ddr4_pmu_train_imem code pass [1.076464 0.001799] check ddr4_pmu_train_dmem code [1.086214 0.009750] check ddr4_pmu_train_dmem code pass [1.088088 0.001874] config to do 3200 2d training. [1. 0.094996] Training PASS [1. 0.011683] check ddr4_pmu_train_imem code [1. 0.016543] check ddr4_pmu_train_imem code pass [1. 0.001595] check ddr4_pmu_train_dmem code [1. 0.009971] check ddr4_pmu_train_dmem code pass [1. 0.001304] pstate=1: set dfi clk done done [1. 0.025441] Training PASS [1. 0.003072] Load PIE [1. 0.000705] Normal Boot [1. 0.000601] Trying to boot from MMC1 [1. 0.] [1. 0.000531] [1. 0.000162] U-Boot 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g (Mar 12 2018 - 12:25:24 -0500) [1. 0.013112] [1. 0.000056] CPU: Freescale i.MX8MQ rev2.0 1500 MHz (running at 1000 MHz) [1. 0.021939] CPU: Commercial temperature grade (0C to 95C) at 41C [1. 0.002347] Reset cause: POR [1. 0.000561] Model: Freescale i.MX8MQ EVK [1. 0.012642] DRAM: 3 GiB [1. 0.095748] TCPC: Vendor ID [0x1fc9], Product ID [0x5110] [1. 0.039145] MMC: FSL_SDHC: 0, FSL_SDHC: 1 [1. 0.068860] * Warning - bad CRC, using default environment [1. 0.004471] [1. 0.003591] No panel detected: default to HDMI [1. 0.002696] Display: HDMI (1280x720) [1. 0.052911] In: serial [1. 0.000518] Out: serial [1. 0.000494] Err: serial [1. 0.000605] [1. 0.000071] BuildInfo: [1. 0.000475] - ATF 6a83ae0 [1. 0.000584] - U-Boot 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g [1. 0.002187] [1. 0.095648] switch to partitions #0, OK [1. 0.001208] mmc0(part 0) is current device [1. 0.004047] Net: [1. 0.006665] Warning: ethernet@30be0000 using MAC address from ROM [1. 0.004666] eth0: ethernet@30be0000 [1. 0.000722] Normal Boot [1. 0.000721] Hit any key to stop autoboot: 0 [3. 2.097054] switch to partitions #0, OK [3. 0.002509] mmc0(part 0) is current device [4.093165 0.098726] reading boot.scr [4.099778 0.006613] Unable to read file boot.scr [4. 0.005853] reading Image [4. 0.] bytes read in 448 ms (42.7 MiB/s) [4. 0.002647] Booting from mmc ... [4. 0.006331] reading fsl-imx8mq-evk.dtb [4. 0.018545] 42199 bytes read in 17 ms (2.4 MiB/s) [4. 0.071924] Flattened Device Tree blob at [4. 0.004350] Booting using the fdt blob at 0x [4. 0.002183] Using Device Tree in place at 00000000, end 000000004300d4d6 [4. 0.003236] [4. 0.000121] Starting kernel ... [4. 0.000971] [4. 0.040697] [ 0.000000] Booting Linux on physical CPU 0x0 [4. 0.002068] [ 0.000000] Linux version 4.9.51-imx_4.9.51_imx8m_ga+g6df7474 (bamboo@yb6) (gcc version 6.2.0 (GCC) ) #2 SMP PREEMPT Mon Mar 12 12:13:52 CDT 2018 [4. 0.007040] [ 0.000000] Boot CPU: AArch64 Processor [410fd034] [4. 0.009548] [ 0.000000] earlycon: ec_imx6q0 at MMIO 0x00000000 (options '') [4. 0.019435] [ 0.000000] bootconsole [ec_imx6q0] enabled [4. 0.007754] [ 0.000000] efi: Getting EFI parameters from FDT: [4. 0.004069] [ 0.000000] efi: UEFI not found. [4. 0.002267] [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000, size 960 MiB [4. 0.004568] [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [4. 0.069162] [ 0.000000] psci: probing for conduit method from DT. [4. 0.003871] [ 0.000000] psci: PSCIv1.0 detected in firmware. [4. 0.013094] [ 0.000000] psci: Using standard PSCI v0.2 function IDs [4. 0.012407] [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [4. 0.011972] [ 0.000000] percpu: Embedded 21 pages/cpu @ffff8000bff68000 s48536 r8192 d29288 u86016 [4. 0.011045] [ 0.000000] Detected VIPT I-cache on CPU0 [4. 0.001368] [ 0.000000] CPU features: enabling workaround for ARM erratum [4. 0.010903] [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: [4. 0.004348] [ 0.000000] Kernel command line: console=ttymxc0, earlycon=ec_imx6q,0x, root=/dev/mmcblk0p2 rootwait rw [4. 0.026909] [ 0.000000] log_buf_len individual max cpu contribution: 4096 bytes [4. 0.001470] [ 0.000000] log_buf_len total cpu_extra contributions: 12288 bytes [4. 0.004792] [ 0.000000] log_buf_len min size: 16384 bytes [4. 0.001688] [ 0.000000] log_buf_len: 32768 bytes [4. 0.000925] [ 0.000000] early log buf free: 14540(88%) [4. 0.001371] [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [4. 0.001285] [ 0.000000] Dentry cache hash table entries: (order: 10, bytes) [4. 0.001194] [ 0.000000] Inode-cache hash table entries: (order: 9, bytes) [4. 0.050033] [ 0.000000] Memory: K/K available (11900K kernel code, 1280K rwdata, 5284K rodata, 1088K init, 367K bss, 75984K reserved, K cma-reserved) [4. 0.003389] [ 0.000000] Virtual kernel memory layout: [4. 0.000792] [ 0.000000] modules : 0xffff000000000000 - 0xffff00000 ( 128 MB) [5.014900 0.018776] [ 0.000000] vmalloc : 0xffff00000 - 0xffff7dffbfff0000 ( GB) [5.016898 0.001998] [ 0.000000] .text : 0xffff00000 - 0xffff000008c20000 ( 11904 KB) [5.019691 0.002793] [ 0.000000] .rodata : 0xffff000008c20000 - 0xffff00000 ( 5312 KB) [5.037282 0.017591] [ 0.000000] .init : 0xffff00000 - 0xffff00000 ( 1088 KB) [5.040323 0.003041] [ 0.000000] .data : 0xffff00000 - 0xffff0000093a0200 ( 1281 KB) [5.044550 0.004227] [ 0.000000] .bss : 0xffff0000093a0200 - 0xffff0000093fc184 ( 368 KB) [5.060166 0.015616] [ 0.000000] fixed : 0xffff7dfffe7fd000 - 0xffff7dfffec00000 ( 4108 KB) [5.065255 0.005089] [ 0.000000] PCI I/O : 0xffff7dfffee00000 - 0xffff7dffffe00000 ( 16 MB) [5.073140 0.007885] [ 0.000000] vmemmap : 0xffff7e0000000000 - 0xffff0 ( 2048 GB maximum) [5.083203 0.010063] [ 0.000000] 0xffff7e0000000000 - 0xffff7e000 ( 48 MB actual) [5.093219 0.010016] [ 0.000000] memory : 0xffff0 - 0xffff8000c0000000 ( 3072 MB) [5. 0.008585] [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [5. 0.008361] [ 0.000000] Preemptible hierarchical RCU implementation. [5. 0.005759] [ 0.000000] Build-time adjustment of leaf fanout to 64. [5. 0.001439] [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4. [5. 0.008012] [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4 [5. 0.004603] [ 0.000000] NR_IRQS:64 nr_irqs:64 0 [5. 0.005076] [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode [5. 0.007220] [ 0.000000] ITS: No ITS available, not enabling LPIs [5. 0.003283] [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000 [5. 0.022346] [ 0.000000] i.MX8MQ clock driver init done [5. 0.002407] [ 0.000000] arm_arch_timer: Architected cp15 timer(s) running at 8.33MHz (phys). [5. 0.002595] [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1ec0311ec, max_idle_ns: 2 ns [5. 0.016985] [ 0.000004] sched_clock: 56 bits at 8MHz, resolution 120ns, wraps every 41ns [5. 0.003723] [ 0.008225] system counter timer init [5. 0.002067] [ 0.011723] sched_clock: 56 bits at 8MHz, resolution 120ns, wraps every 41ns [5. 0.004078] [ 0.019708] clocksource: imx sysctr: mask: 0xffffffffffffff max_cycles: 0x1ec0311ec, max_idle_ns: 2 ns [5. 0.015959] [ 0.030320] Console: colour dummy device 80x25 [5. 0.001775] [ 0.034465] Calibrating delay loop (skipped), value calculated using timer frequency.. 16.66 BogoMIPS (lpj=33333) [5. 0.016841] [ 0.044733] pid_max: default: 32768 minimum: 301 [5. 0.003044] [ 0.049416] Security Framework initialized [5. 0.001687] [ 0.053492] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes) [5. 0.008499] [ 0.060177] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes) [5. 0.012290] [ 0.068043] ASID allocator initialised with 65536 entries [5. 0.023660] [ 0.] Cannot find MU entry in device tree [5. 0.002045] [ 0.] CPU identified as i.MX8MQ, silicon rev 2.0 [5. 0.004230] [ 0.] EFI services will not be available. [5. 0.] [ 0.] Detected VIPT I-cache on CPU1 [5. 0.003380] [ 0.] GICv3: CPU1: found redistributor 1 region 0:0x00000000388a0000 [5. 0.006317] [ 0.] CPU1: Booted secondary processor [410fd034] [5. 0.004162] [ 0.] Detected VIPT I-cache on CPU2 [5. 0.003251] [ 0.] GICv3: CPU2: found redistributor 2 region 0:0x00000000388c0000 [5. 0.012016] [ 0.] CPU2: Booted secondary processor [410fd034] [5. 0.011410] [ 0.] Detected VIPT I-cache on CPU3 [5. 0.003436] [ 0.] GICv3: CPU3: found redistributor 3 region 0:0x00000000388e0000 [5. 0.006854] [ 0.] CPU3: Booted secondary processor [410fd034] [5. 0.004859] [ 0.] Brought up 4 CPUs [5. 0.003260] [ 0.] SMP: Total of 4 processors activated. [5. 0.003761] [ 0.] CPU features: detected feature: GIC system register CPU interface [5. 0.004007] [ 0.] CPU features: detected feature: 32-bit EL0 Support [5. 0.005692] [ 0.] CPU: All CPU(s) started at EL2 [5. 0.003425] [ 0.] alternatives: patching kernel code [5. 0.005855] [ 0.] devtmpfs: initialized [5. 0.002321] [ 0.] DMI not present or invalid. [5. 0.006544] [ 0.] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 00000 ns [5. 0.009859] [ 0.] futex hash table entries: 1024 (order: 5, bytes) [5. 0.014195] [ 0.] pinctrl core: initialized pinctrl subsystem [5. 0.002327] [ 0.] NET: Registered protocol family 16 [5. 0.032487] [ 0.] cpuidle: using governor menu [5. 0.002585] [ 0.] vdso: 2 pages (1 code @ ffff000008c27000, 1 data @ ffff00000) [5. 0.004519] [ 0.] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [5. 0.006049] [ 0.] DMA: preallocated 256 KiB pool for atomic allocations [5. 0.004317] [ 0.] Serial: AMBA PL011 UART driver [5. 0.005535] [ 0.] imx8mq-pinctrl .iomuxc: initialized IMX pinctrl driver [5. 0.041151] [ 0.] HugeTLB registered 2 MB page size, pre-allocated 0 pages [5. 0.010596] [ 0.] ACPI: Interpreter disabled. [5. 0.011051] [ 0.] mxs-dma .dma-apbh: initialized [5. 0.002411] [ 0.] vgaarb: loaded [5. 0.001292] [ 0.] SCSI subsystem initialized [5. 0.020994] [ 0.] usbcore: registered new interface driver usbfs [5. 0.004374] [ 0.] usbcore: registered new interface driver hub [5. 0.004251] [ 0.] usbcore: registered new device driver usb [5. 0.015994] [ 0.] i2c i2c-0: IMX I2C adapter registered [5. 0.011947] [ 0.] i2c i2c-0: can't use DMA, using PIO instead. [5. 0.013012] [ 0.] i2c i2c-1: IMX I2C adapter registered [5. 0.005159] [ 0.] i2c i2c-1: can't use DMA, using PIO instead. [5. 0.004674] [ 0.] media: Linux media interface: v0.10 [5. 0.003282] [ 0.] Linux video capture interface: v2.00 [5. 0.002984] [ 0.] pps_core: LinuxPPS API ver. 1 registered [5. 0.002614] [ 0.] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti
[5. 0.007387] [ 0.] PTP clock support registered [5. 0.004336] [ 0.] dmi: Firmware registration failed. [5. 0.003253] [ 0.] Linux cec interface: v0.10 [5. 0.000539] [ 0.] MU is ready for cross core communication! [5. 0.003598] [ 0.] virtio_rpmsg_bus virtio0: rpmsg host is online [5. 0.004065] [ 0.] imx rpmsg driver is registered. [5. 0.003427] [ 0.] Advanced Linux Sound Architecture Driver Initialized. [5. 0.001125] [ 0.] Bluetooth: Core ver 2.22 [5. 0.000660] [ 0.] NET: Registered protocol family 31 [5. 0.000518] [ 0.] Bluetooth: HCI device and connection manager initialized [5. 0.001080] [ 0.] Bluetooth: HCI socket layer initialized [5. 0.000820] [ 0.] Bluetooth: L2CAP socket layer initialized [5. 0.012839] [ 0.] Bluetooth: SCO socket layer initialized [5. 0.000376] [ 0.] clocksource: Switched to clocksource arch_sys_counter [5. 0.000820] [ 0.] VFS: Disk quotas dquot_6.6.0 [5. 0.000418] [ 0.] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [5. 0.006641] [ 0.] pnp: PnP ACPI: disabled [5. 0.030233] [ 0.] NET: Registered protocol family 2 [5. 0.000646] [ 0.] TCP established hash table entries: 32768 (order: 6, bytes) [5. 0.003313] [ 0.] TCP bind hash table entries: 32768 (order: 7, bytes) [5. 0.006803] [ 0.] TCP: Hash tables configured (established 32768 bind 32768) [5. 0.011624] [ 0.] UDP hash table entries: 2048 (order: 4, 65536 bytes) [5. 0.000998] [ 0.] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) [5. 0.001000] [ 0.] NET: Registered protocol family 1 [5. 0.000670] [ 0.] RPC: Registered named UNIX socket transport module. [5. 0.019615] [ 0.] RPC: Registered udp transport module. [5. 0.001302] [ 0.] RPC: Registered tcp transport module. [5. 0.001062] [ 0.] RPC: Registered tcp NFSv4.1 backchannel transport module. [5. 0.002403] [ 0.] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available [5. 0.018396] [ 0.] kvm [1]: 8-bit VMID [5. 0.000538] [ 0.] kvm [1]: IDMAP page: 40c10000 [5. 0.000698] [ 0.] kvm [1]: HYP VA range: 0:ffffffffffff [5. 0.001204] [ 0.] kvm [1]: Hyp mode initialized successfully [5. 0.000885] [ 0.] kvm [1]: GICv3: no GICV resource entry [5. 0.022806] [ 0.] kvm [1]: disabling GICv2 emulation [5. 0.008086] [ 0.] kvm [1]: GIC system register CPU interface enabled [5. 0.005944] [ 0.] kvm [1]: vgic interrupt IRQ1 [5. 0.004975] [ 0.] kvm [1]: virtual timer IRQ4 [5. 0.001654] [ 0.] audit: initializing netlink subsys (disabled) [5. 0.002644] [ 0.] audit: type=2000 audit(0.659:1): initialized [5. 0.002396] [ 0.] workingset: timestamp_bits=46 max_order=20 bucket_order=0 [5. 0.021501] [ 0.] squashfs: version 4.0 (2009/01/31) Phillip Lougher [5. 0.001806] [ 0.] NFS: Registering the id_resolver key type [5. 0.005219] [ 0.] Key type id_resolver registered [5. 0.005171] [ 0.] Key type id_legacy registered [5. 0.003189] [ 0.] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [5. 0.004769] [ 0.] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc. [5. 0.002836] [ 0.] 9p: Installing v9fs 9p2000 file system support [6.014226 0.023251] [ 0.] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244) [6.016899 0.002673] [ 0.] io scheduler noop registered [6.022514 0.005615] [ 0.] io scheduler cfq registered (default) [6.028900 0.006386] [ 0.] libphy: mdio_driver_register: phy-bcm-ns2-pci [6.040810 0.011910] [ 0.] imx-sdma 30bd0000.sdma: no iram assigned, using external mem [6.049160 0.008350] [ 0.] imx-sdma 30bd0000.sdma: loaded firmware 4.2 [6.052732 0.003572] [ 0.] imx-sdma 302c0000.sdma: no iram assigned, using external mem [6.056936 0.004204] [ 0.] imx-sdma 302c0000.sdma: loaded firmware 4.2 [6.072988 0.016052] [ 0.] Bus freq driver module loaded [6.074567 0.001579] [ 0.] xenfs: not registering filesystem on non-xen platform [6.077888 0.003321] [ 0.] pfuze100-regulator 0-0008: Full layer: 2, Metal layer: 1 [6.084956 0.007068] [ 0.] pfuze100-regulator 0-0008: FAB: 0, FIN: 0 [6.085953 0.000997] [ 0.] pfuze100-regulator 0-0008: pfuze100 found. [6. 0.019379] [ 0.] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled [6. 0.002597] [ 0.] SuperH (H)SCI(F) driver initialized [6. 0.007812] [ 0.] console [ttymxc0] enabled [6. 0.000977] [ 0.] bootconsole [ec_imx6q0] disabled [6. 0.007682] [ 0.] .serial: ttymxc2 at MMIO 0x (irq = 40, base_baud = ) is a IMX [6. 0.007279] [ 0.] msm_serial: driver initialized [6. 0.007402] [ 0.] [drm] Initialized [6. 0.016300] [ 0.] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [6. 0.003769] [ 0.] [drm] No driver support for vblank timestamp query. [6. 0.003645] [ 0.] imx-drm display-subsystem: bound imx-dcss-crtc.0 (ops dcss_crtc_ops) [6. 0.004216] [ 0.] VIC 2, pixel clock kHz [6. 0.013510] [ 1.003540] Pixel clock frequency: kHz, character clock frequency: , color depth is 8-bit. [6. 0.001857] [ 1.012947] VCO frequency is kHz [6. 0.007633] [ 1.019614] CDN_API_General_Write_Register_blocking LANES_CONFIG ret = 0 [6. 0.013532] [ 1.027164] [drm] hdmi-audio-codec driver bound to HDMI [6. 0.005032] [ 1.032414] imx-drm display-subsystem: bound 32c00000.hdmi (ops imx_hdp_imx_ops) [6. 0.008612] [ 1.039919] imx-drm display-subsystem: No connectors reported connected with modes [6. 0.003571] [ 1.047509] [drm] Cannot find any crtc or sizes - going 1024x768 [6. 0.032690] [ 1.066860] Console: switching to colour frame buffer device 128x48 [6. 0.004773] [ 1.083646] imx-drm display-subsystem: fb0: frame buffer device [6. 0.025230] [ 1.] loop: module loaded [6. 0.005948] [ 1.] hisi_sas: driver version v1.6 [6. 0.009727] [ 1.] fsl-quadspi 30bb0000.qspi: n25q256a (32768 Kbytes) [6. 0.006055] [ 1.] slram: not enough parameters. [6. 0.007456] [ 1.] libphy: Fixed MDIO Bus: probed [6. 0.012875] [ 1.] tun: Universal TUN/TAP device driver, 1.6 [6. 0.001456] [ 1.] tun: (C) 1999-2004 Max Krasnyansky
[6. 0.002600] [ 1.] CAN device driver interface [6. 0.008991] [ 1.] 30be0000.ethernet supply phy not found, using dummy regulator [6. 0.010662] [ 1.] pps pps0: new PPS source ptp0 [6. 0.004013] [ 1.] libphy: fec_enet_mii_bus: probed [6. 0.004500] [ 1.] fec 30be0000.ethernet eth0: registered PHC device 0 [6. 0.006624] [ 1.] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k [6. 0.006153] [ 1.] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [6. 0.007366] [ 1.] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k [6. 0.005136] [ 1.] igb: Copyright (c) 2007-2014 Intel Corporation. [6. 0.013978] [ 1.] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k [6. 0.003031] [ 1.] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. [6. 0.005726] [ 1.] sky2: driver version 1.30 [6. 0.012296] [ 1.] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [6. 0.003849] [ 1.] ehci-pci: EHCI PCI platform driver [6. 0.001414] [ 1.] ehci-platform: EHCI generic platform driver [6. 0.004440] [ 1.] ehci-exynos: EHCI EXYNOS driver [6. 0.016901] [ 1.] ehci-msm: Qualcomm On-Chip EHCI Host Controller [6. 0.001425] [ 1.] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [6. 0.001344] [ 1.] ohci-pci: OHCI PCI platform driver [6. 0.002160] [ 1.] ohci-platform: OHCI generic platform driver [6. 0.004449] [ 1.] ohci-exynos: OHCI EXYNOS driver [6. 0.009964] [ 1.] Can't support > 32 bit dma. [6. 0.001485] [ 1.] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [6. 0.003437] [ 1.] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 [6. 0.013559] [ 1.] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe6c hci version 0x110 quirks 0x0 [6. 0.006212] [ 1.] xhci-hcd xhci-hcd.0.auto: irq 229, io mem 0x [6. 0.008364] [ 1.] hub 1-0:1.0: USB hub found [6. 0.001105] [ 1.] hub 1-0:1.0: 1 port detected [6. 0.012337] [ 1.] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [6. 0.003953] [ 1.] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 [6. 0.012101] [ 1.] hub 2-0:1.0: USB hub found [6. 0.003495] [ 1.] hub 2-0:1.0: 1 port detected [6. 0.002078] [ 1.] usbcore: registered new interface driver usb-storage [6. 0.001604] [ 1.] usbcore: registered new interface driver usb_ehset_test [6. 0.006597] [ 1.] mousedev: PS/2 mouse device common for all mice [6. 0.011406] [ 1.] input: .snvs:snvs-powerkey as /devices/platform/.snvs/.snvs:snvs-powerkey/input/input0 [6. 0.011557] [ 1.] snvs_rtc .snvs:snvs-rtc-lp: rtc core: registered .snvs:snvs- as rtc0 [6. 0.004246] [ 1.] i2c /dev entries driver [6. 0.015068] [ 1.] 0-003c supply DOVDD not found, using dummy regulator [6. 0.002648] [ 1.] 0-003c supply DVDD not found, using dummy regulator [6. 0.003532] [ 1.] 0-003c supply AVDD not found, using dummy regulator [6. 0.078204] [ 1.] ov5640_read_reg:write reg error:reg=300a [6. 0.011980] [ 1.] camera ov5640_mipi is not found [6. 0.001218] [ 1.] mxc-mipi-csi2_yav 30a70000.mipi_csi1: mipi_csi2_probe [6. 0.003767] [ 1.] CSI: Registered sensor subdevice: mxc-mipi-csi2.0 [6. 0.013530] [ 1.] mxc-mipi-csi2_yav 30a70000.mipi_csi: Remote device at /mipi_csi1@30a70000/port/endpoint1 XXX found [6. 0.008795] [ 1.] mxc-mipi-csi2_yav 30a70000.mipi_csi1: lanes: 2, name: mxc-mipi-csi2.0 [6. 0.004175] [ 1.] imx2-wdt .wdog: timeout 60 sec (nowayout=0) [6. 0.007039] [ 1.] Bluetooth: HCI UART driver ver 2.3 [6. 0.004285] [ 1.] Bluetooth: HCI UART protocol H4 registered [6. 0.006475] [ 1.] Bluetooth: HCI UART protocol BCSP registered [6. 0.022587] [ 1.] Bluetooth: HCI UART protocol ATH3K registered [6. 0.007427] [ 1.] Bluetooth: HCI UART protocol Three-wire (H5) registered [6. 0.003897] [ 1.] Bluetooth: HCI UART protocol Broadcom registered [6. 0.003933] [ 1.] Bluetooth: HCI UART protocol QCA registered [6. 0.010604] [ 1.] sdhci: Secure Digital Host Controller Interface driver [6. 0.005710] [ 1.] sdhci: Copyright(c) Pierre Ossman [6. 0.015363] [ 1.] sdhci-pltfm: SDHCI platform and OF driver helper [6. 0.023220] [ 1.] mmc0: SDHCI controller on 30b40000.usdhc [30b40000.usdhc] using ADMA [6. 0.006500] [ 1.] sdhci-esdhc-imx 30b50000.usdhc: Got CD GPIO [6. 0.058752] [ 1.] mmc1: SDHCI controller on 30b50000.usdhc [30b50000.usdhc] using ADMA [6. 0.011013] [ 1.] ledtrig-cpu: registered to indicate activity on CPUs [6. 0.006078] [ 1.] caam .caam: ERA source: CCBVID. [6. 0.003368] [ 1.] Can't support > 32 bit dma. [6. 0.012453] [ 1.] caam .caam: device ID = 0x0a000 (Era 9) [6. 0.003758] [ 1.] job rings = 3, qi = 0 [6. 0.000736] [ 1.] Can't support > 32 bit dma. [6. 0.005716] [ 1.] caam_jr .jr0: Entropy delay = 3200 [6. 0.011917] [ 1.] Failed to run desc RNG4 SH0 status (0xfffffff5) [6. 0.002990] [ 1.] Failed to run desc RNG4 SH1 status (0xfffffff5) [6. 0.002107] [ 1.] caam_jr .jr0: Entropy delay = 3600 [6. 0.044205] [ 1.] mmc0: new HS400 MMC card at address 0001 [6. 0.008236] [ 1.] mmcblk0: mmc0:0001 R1J56L 13.8 GiB [7.004942 0.006130] [ 1.] mmcblk0boot0: mmc0:0001 R1J56L partition 1 4.00 MiB [7.012354 0.007412] [ 1.] mmcblk0boot1: mmc0:0001 R1J56L partition 2 4.00 MiB [7.019663 0.007309] [ 1.] caam_jr .jr0: Instantiated RNG4 SH0. [7.025260 0.005597] [ 1.] mmcblk0rpmb: mmc0:0001 R1J56L partition 3 128 KiB [7.030385 0.005125] [ 1.] mmcblk0: p1 p2 [7.087800 0.057415] [ 1.] caam_jr .jr0: Instantiated RNG4 SH1. [7. 0.014450] [ 1.] Can't support > 32 bit dma. [7. 0.001603] [ 1.] Can't support > 32 bit dma. [7. 0.013774] [ 1.] caam algorithms registered in /proc/crypto [7. 0.010078] [ 1.] caam_jr .jr0: registering rng-caam [7. 0.007491] [ 1.] caam .caam: caam pkc algorithms registered in /proc/crypto [7. 0.007357] [ 1.] platform caam_sm: blkkey_ex: 2 keystore units available [7. 0.012844] [ 1.] platform caam_sm: 64-bit clear key: [7. 0.001202] [ 1.] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07 [7. 0.008900] [ 1.] platform caam_sm: 64-bit black key: [7. 0.002086] [ 1.] platform caam_sm: [0000] 51 83 24 ae 3a 2e 97 7b [7. 0.012476] [ 2.001687] platform caam_sm: [0008] 2e bd f9 73 86 7b 6b 52 [7. 0.002514] [ 2.007360] platform caam_sm: 128-bit clear key: [7. 0.004983] [ 2.012047] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07 [7. 0.005592] [ 2.017722] platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f [7. 0.016920] [ 2.023448] platform caam_sm: 128-bit black key: [7. 0.002667] [ 2.028081] platform caam_sm: [0000] d8 59 bb 46 0a 70 54 da [7. 0.002244] [ 2.033760] platform caam_sm: [0008] 25 bf 9a 9a 0f 4e 70 ae [7. 0.018771] [ 2.039439] platform caam_sm: 192-bit clear key: [7. 0.003012] [ 2.044071] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07 [7. 0.005135] [ 2.049748] platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f [7. 0.004006] [ 2.055422] platform caam_sm: [0016] 10 11 12 13 14 15 16 17 [7. 0.004617] [ 2.061093] platform caam_sm: 192-bit black key: [7. 0.002649] [ 2.065725] platform caam_sm: [0000] e2 82 91 71 da dd 93 38 [7. 0.004546] [ 2.071399] platform caam_sm: [0008] 6d c7 ef 25 14 72 7d ab [7. 0.003474] [ 2.077074] platform caam_sm: [0016] c7 a3 23 7a 8e a6 51 7a [7. 0.005307] [ 2.082749] platform caam_sm: [0024] 3f 71 d3 3d 1f 1e 49 d8 [7. 0.004964] [ 2.088421] platform caam_sm: 256-bit clear key: [7. 0.022733] [ 2.093056] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07 [7. 0.007879] [ 2.098732] platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f [7. 0.007901] [ 2.] platform caam_sm: [0016] 10 11 12 13 14 15 16 17 [7. 0.004498] [ 2.] platform caam_sm: [0024] 18 19 1a 1b 1c 1d 1e 1f [7. 0.002428] [ 2.] platform caam_sm: 256-bit black key: [7. 0.001869] [ 2.] platform caam_sm: [0000] b5 7a 37 84 7a 30 4e 2e [7. 0.002432] [ 2.] platform caam_sm: [0008] ce fa 52 54 6b c5 cb f7 [7. 0.001471] [ 2.] platform caam_sm: [0016] 24 92 d3 a3 b3 6a b5 11 [7. 0.001224] [ 2.] platform caam_sm: [0024] 06 2a 83 fc 1f e7 c9 1f [7. 0.001789] [ 2.] platform caam_sm: 64-bit unwritten blob: [7. 0.001997] [ 2.] platform caam_sm: [0000] 00 00 00 00 00 00 00 00 [7. 0.002353] [ 2.] platform caam_sm: [0008] 00 00 00 00 00 00 00 00 [7. 0.013973] [ 2.] platform caam_sm: [0016] 00 00 00 00 00 00 00 00 [7. 0.002014] [ 2.] platform caam_sm: [0024] 00 00 00 00 00 00 00 00 [7. 0.001682] [ 2.] platform caam_sm: [0032] 00 00 00 00 00 00 00 00 [7. 0.015174] [ 2.] platform caam_sm: [0040] 00 00 00 00 00 00 00 00 [7. 0.002221] [ 2.] platform caam_sm: [0048] 00 00 00 00 00 00 00 00 [7. 0.001507] [ 2.] platform caam_sm: [0056] 00 00 00 00 00 00 00 00 [7. 0.001681] [ 2.] platform caam_sm: [0064] 00 00 00 00 00 00 00 00 [7. 0.016997] [ 2.] platform caam_sm: [0072] 00 00 00 00 00 00 00 00 [7. 0.002282] [ 2.] platform caam_sm: [0080] 00 00 00 00 00 00 00 00 [7. 0.001374] [ 2.] platform caam_sm: [0088] 00 00 00 00 00 00 00 00 [7. 0.001318] [ 2.] platform caam_sm: 128-bit unwritten blob: [7. 0.017750] [ 2.] platform caam_sm: [0000] 00 00 00 00 00 00 00 00 [7. 0.001531] [ 2.] platform caam_sm: [0008] 00 00 00 00 00 00 00 00 [7. 0.001383] [ 2.] platform caam_sm: [0016] 00 00 00 00 00 00 00 00 [7. 0.001804] [ 2.] platform caam_sm: [0024] 00 00 00 00 00 00 00 00 [7. 0.017575] [ 2.] platform caam_sm: [0032] 00 00 00 00 00 00 00 00 [7. 0.002154] [ 2.] platform caam_sm: [0040] 00 00 00 00 00 00 00 00 [7. 0.001590] [ 2.] platform caam_sm: [0048] 00 00 00 00 00 00 00 00 [7. 0.001457] [ 2.] platform caam_sm: [0056] 00 00 00 00 00 00 00 00 [7. 0.016757] [ 2.] platform caam_sm: [0064] 00 00 00 00 00 00 00 00 [7. 0.001879] [ 2.] platform caam_sm: [0072] 00 00 00 00 00 00 00 00 [7. 0.001175] [ 2.] platform caam_sm: [0080] 00 00 00 00 00 00 00 00 [7. 0.001664] [ 2.] platform caam_sm: [0088] 00 00 00 00 00 00 00 00 [7. 0.022249] [ 2.] platform caam_sm: 196-bit unwritten blob: [7. 0.011084] [ 2.] platform caam_sm: [0000] 00 00 00 00 00 00 00 00 [7. 0.003508] [ 2.] platform caam_sm: [0008] 00 00 00 00 00 00 00 00 [7. 0.002747] [ 2.] platform caam_sm: [0016] 00 00 00 00 00 00 00 00 [7. 0.002332] [ 2.] platform caam_sm: [0024] 00 00 00 00 00 00 00 00 [7. 0.002856] [ 2.] platform caam_sm: [0032] 00 00 00 00 00 00 00 00 [7. 0.004906] [ 2.] platform caam_sm: [0040] 00 00 00 00 00 00 00 00 [7. 0.002676] [ 2.] platform caam_sm: [0048] 00 00 00 00 00 00 00 00 [7. 0.011341] [ 2.] platform caam_sm: [0056] 00 00 00 00 00 00 00 00 [7. 0.005084] [ 2.] platform caam_sm: [0064] 00 00 00 00 00 00 00 00 [7. 0.005738] [ 2.] platform caam_sm: [0072] 00 00 00 00 00 00 00 00 [7. 0.011348] [ 2.] platform caam_sm: [0080] 00 00 00 00 00 00 00 00 [7. 0.010960] [ 2.] platform caam_sm: [0088] 00 00 00 00 00 00 00 00 [7. 0.007815] [ 2.] platform caam_sm: 256-bit unwritten blob: [7. 0.003045] [ 2.] platform caam_sm: [0000] 00 00 00 00 00 00 00 00 [7. 0.003953] [ 2.] platform caam_sm: [0008] 00 00 00 00 00 00 00 00 [7. 0.004157] [ 2.] platform caam_sm: [0016] 00 00 00 00 00 00 00 00 [7. 0.002347] [ 2.] platform caam_sm: [0024] 00 00 00 00 00 00 00 00 [7. 0.003267] [ 2.] platform caam_sm: [0032] 00 00 00 00 00 00 00 00 [7. 0.002172] [ 2.] platform caam_sm: [0040] 00 00 00 00 00 00 00 00 [7. 0.008828] [ 2.] platform caam_sm: [0048] 00 00 00 00 00 00 00 00 [7. 0.011820] [ 2.] platform caam_sm: [0056] 00 00 00 00 00 00 00 00 [7. 0.002485] [ 2.] platform caam_sm: [0064] 00 00 00 00 00 00 00 00 [7. 0.006701] [ 2.] platform caam_sm: [0072] 00 00 00 00 00 00 00 00 [7. 0.002474] [ 2.] platform caam_sm: [0080] 00 00 00 00 00 00 00 00 [7. 0.007743] [ 2.] platform caam_sm: [0088] 00 00 00 00 00 00 00 00 [7. 0.005230] [ 2.] platform caam_sm: 64-bit black key in blob: [7. 0.001062] [ 2.] platform caam_sm: [0000] 10 f3 ff 91 bb 0c cb 1a [7. 0.001696] [ 2.] platform caam_sm: [0008] 39 2f cb 25 0c 9b 7e 17 [7. 0.001757] [ 2.] platform caam_sm: [0016] 32 12 45 3a e8 01 21 9b [7. 0.001748] [ 2.] platform caam_sm: [0024] fa 68 b3 6c d1 de 02 9e [7. 0.017509] [ 2.] platform caam_sm: [0032] 2b aa f1 6d a3 c2 a5 ba [7. 0.003890] [ 2.] platform caam_sm: [0040] 43 bc 73 0b b4 d1 4c 81 [7. 0.002864] [ 2.] platform caam_sm: [0048] 3f 77 4e 4b 14 12 91 ad [7. 0.015035] [ 2.] platform caam_sm: [0056] 00 00 00 00 00 00 00 00 [7. 0.001560] [ 2.] platform caam_sm: [0064] 00 00 00 00 00 00 00 00 [7. 0.001069] [ 2.] platform caam_sm: [0072] 00 00 00 00 00 00 00 00 [7. 0.000830] [ 2.] platform caam_sm: [0080] 00 00 00 00 00 00 00 00 [7. 0.018620] [ 2.] platform caam_sm: [0088] 00 00 00 00 00 00 00 00 [7. 0.009760] [ 2.] platform caam_sm: 128-bit black key in blob: [7. 0.002324] [ 2.] platform caam_sm: [0000] 69 3a 37 ab 59 42 75 46 [7. 0.002152] [ 2.] platform caam_sm: [0008] 9e 36 81 f5 c8 4a e2 45 [7. 0.008459] [ 2.] platform caam_sm: [0016] 73 12 24 31 8d 41 11 62 [7. 0.001429] [ 2.] platform caam_sm: [0024] b2 89 80 da ff 95 b6 e8 [7. 0.001413] [ 2.] platform caam_sm: [0032] fc b2 66 17 d1 fa 12 71 [7. 0.001998] [ 2.] platform caam_sm: [0040] 9c 9a 7a 1d e4 64 3f 55 [7. 0.017170] [ 2.] platform caam_sm: [0048] 0d a9 74 37 70 65 0b 74 [7. 0.001862] [ 2.] platform caam_sm: [0056] 4e 27 0b 4d b6 ff 20 1c [7. 0.001825] [ 2.] platform caam_sm: [0064] 00 00 00 00 00 00 00 00 [7. 0.001591] [ 2.] platform caam_sm: [0072] 00 00 00 00 00 00 00 00 [7. 0.016803] [ 2.] platform caam_sm: [0080] 00 00 00 00 00 00 00 00 [7. 0.001052] [ 2.] platform caam_sm: [0088] 00 00 00 00 00 00 00 00 [7. 0.000976] [ 2.] platform caam_sm: 192-bit black key in blob: [7. 0.000969] [ 2.] platform caam_sm: [0000] aa 33 1a 73 09 28 3c 3c [7. 0.019590] [ 2.] platform caam_sm: [0008] 3b 6c ae 51 26 c0 d6 9c [7. 0.002311] [ 2.] platform caam_sm: [0016] 3d 5c 7c ab c2 b1 00 a9 [7. 0.003954] [ 2.] platform caam_sm: [0024] 9e 1e fd 0b 88 8f 82 25 [7. 0.010891] [ 2.] platform caam_sm: [0032] 22 3d f0 12 45 dd 0c e9 [7. 0.010116] [ 2.] platform caam_sm: [0040] 06 c7 36 15 13 53 89 e2 [7. 0.006070] [ 2.] platform caam_sm: [0048] ab 48 6c 19 bd 6b eb ef [7. 0.002904] [ 2.] platform caam_sm: [0056] 1c a0 0e 4b 04 46 fa 16 [7. 0.003026] [ 2.] platform caam_sm: [0064] 86 30 3f 3e a8 69 b0 81 [7. 0.005886] [ 2.] platform caam_sm: [0072] 00 00 00 00 00 00 00 00 [7. 0.003658] [ 2.] platform caam_sm: [0080] 00 00 00 00 00 00 00 00 [7. 0.004990] [ 2.] platform caam_sm: [0088] 00 00 00 00 00 00 00 00 [7. 0.012539] [ 2.] platform caam_sm: 256-bit black key in blob: [7. 0.013575] [ 2.] platform caam_sm: [0000] ab d3 ce e7 af 8b 97 f4 [7. 0.001813] [ 2.] platform caam_sm: [0008] 9c ce dd 9f 65 94 66 8c [7. 0.002664] [ 2.] platform caam_sm: [0016] f2 24 31 8c ed d2 da 09 [7. 0.002049] [ 2.] platform caam_sm: [0024] 52 16 ef 01 1f b2 b9 2a [7. 0.004003] [ 2.] platform caam_sm: [0032] 6b c2 f1 98 3e 67 0a 99 [7. 0.003548] [ 2.] platform caam_sm: [0040] 0a de 9b 6f 72 de 7d 4a [7. 0.002177] [ 2.] platform caam_sm: [0048] 97 bc 74 ec 18 cc ab b9 [7. 0.002549] [ 2.] platform caam_sm: [0056] 13 4b 50 66 a3 57 ee cf [7. 0.015477] [ 2.] platform caam_sm: [0064] b8 f5 62 4e 57 92 b3 38 [7. 0.013019] [ 2.] platform caam_sm: [0072] 5b 80 a4 a4 f7 ee 04 26 [7. 0.006698] [ 2.] platform caam_sm: [0080] 00 00 00 00 00 00 00 00 [7. 0.001966] [ 2.] platform caam_sm: [0088] 00 00 00 00 00 00 00 00 [7. 0.005115] [ 2.] platform caam_sm: restored 64-bit black key: [7. 0.003009] [ 2.] platform caam_sm: [0000] d8 43 d1 60 b9 1b f1 ee [7. 0.002579] [ 2.] platform caam_sm: [0008] 2c c7 e4 46 69 6c d8 99 [7. 0.002580] [ 2.] platform caam_sm: restored 128-bit black key: [7. 0.002587] [ 2.] platform caam_sm: [0000] d8 59 bb 46 0a 70 54 da [7. 0.015319] [ 2.] platform caam_sm: [0008] 25 bf 9a 9a 0f 4e 70 ae [7. 0.003135] [ 2.] platform caam_sm: restored 192-bit black key: [7. 0.000932] [ 2.] platform caam_sm: [0000] e2 82 91 71 da dd 93 38 [7. 0.000873] [ 2.] platform caam_sm: [0008] 6d c7 ef 25 14 72 7d ab [7. 0.017462] [ 2.] platform caam_sm: [0016] 7a 5d 1e 28 90 8d d3 fa [7. 0.003482] [ 2.] platform caam_sm: [0024] d8 13 8b 87 92 67 24 f3 [7. 0.017213] [ 2.] platform caam_sm: restored 256-bit black key: [7. 0.001247] [ 2.] platform caam_sm: [0000] b5 7a 37 84 7a 30 4e 2e [7. 0.002724] [ 2.] platform caam_sm: [0008] ce fa 52 54 6b c5 cb f7 [7. 0.000931] [ 2.] platform caam_sm: [0016] 24 92 d3 a3 b3 6a b5 11 [7. 0.001030] [ 2.] platform caam_sm: [0024] 06 2a 83 fc 1f e7 c9 1f [7. 0.000924] [ 2.] caam-snvs .caam-snvs: can't get snvs clock [8.003159 0.003277] [ 2.] caam-snvs .caam-snvs: violation handlers armed - non-secure state [8.021246 0.018087] [ 2.] usbcore: registered new interface driver usbhid [8.025281 0.004035] [ 2.] usbhid: USB HID core driver [8.030989 0.005708] [ 2.] ak5558 1-0013: ak5558_i2c_probe(748) [8.064079 0.033090] [ 2.] imx-wm8524 sound-wm8524: wm8524-hifi <-> 308b0000.sai mapping ok [8.076116 0.012037] [ 2.] wm8524-codec wm8524: Supported sample rate: Hz [8.077322 0.001206] [ 2.] wm8524-codec wm8524: Supported sample rate: 96000Hz [8.088105 0.010783] [ 2.] wm8524-codec wm8524: Supported sample rate: 48000Hz [8.090279 0.002174] [ 2.] wm8524-codec wm8524: Supported sample rate: 32000Hz [8.098527 0.008248] [ 2.] imx-spdif sound-spdif: snd-soc-dummy-dai <-> .spdif mapping ok [8. 0.009132] [ 2.] imx-spdif sound-hdmi-arc: snd-soc-dummy-dai <-> 308a0000.spdif mapping ok [8. 0.010365] [ 2.] imx-cdnhdmi sound-hdmi: hdmi-hifi.0 <-> .sai mapping ok [8. 0.020235] [ 2.] ak4458 1-0010: ASoC: failed to probe component -6 [8. 0.002144] [ 2.] imx-ak4458 sound-ak4458: ASoC: failed to instantiate card -6 [8. 0.006685] [ 2.] imx-ak4458 sound-ak4458: snd_soc_register_card failed (-6) [8. 0.002891] [ 2.] random: fast init done [8. 0.023985] [ 2.] ak5558 1-0013: ASoC: failed to probe component -6 [8. 0.001676] [ 3.003633] imx-ak5558 sound-ak5558: ASoC: failed to instantiate card -6 [8. 0.005063] [ 3.010476] imx-ak5558 sound-ak5558: snd_soc_register_card failed (-6) [8. 0.005716] [ 3.018059] NET: Registered protocol family 26 [8. 0.004448] [ 3.022698] NET: Registered protocol family 17 [8. 0.007110] [ 3.027280] can: controller area network core (rev abi 9) [8. 0.006122] [ 3.033647] NET: Registered protocol family 29 [8. 0.007854] [ 3.038203] can: raw protocol (rev ) [8. 0.001657] [ 3.042522] can: broadcast manager protocol (rev t) [8. 0.004299] [ 3.048299] can: netlink gateway (rev ) max_hops=1 [8. 0.005373] [ 3.054677] Bluetooth: RFCOMM TTY layer initialized [8. 0.019660] [ 3.059622] Bluetooth: RFCOMM socket layer initialized [8. 0.007326] [ 3.064819] Bluetooth: RFCOMM ver 1.11 [8. 0.003775] [ 3.068620] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [8. 0.004489] [ 3.073980] Bluetooth: BNEP filters: protocol multicast [8. 0.002479] [ 3.079321] Bluetooth: BNEP socket layer initialized [8. 0.002230] [ 3.084344] Bluetooth: HIDP (Human Interface Emulation) ver 1.2 [8. 0.008814] [ 3.090380] Bluetooth: HIDP socket layer initialized [8. 0.001994] [ 3.095505] 9pnet: Installing 9P2000 support [8. 0.001801] [ 3.] Key type dns_resolver registered [8. 0.001957] [ 3.] registered taskstats version 1 [8. 0.028020] [ 3.] cpu cpu0: registered imx8mq-cpufreq [8. 0.008199] [ 3.] .pcie supply epdev_on not found, using dummy regulator [8. 0.013623] [ 3.] OF: PCI: host bridge /pcie@0x ranges: [8. 0.003444] [ 3.] OF: PCI: No bus range found for /pcie@0x, using [bus 00-ff] [8. 0.013951] [ 3.] OF: PCI: IO 0x1ff80000..0x1ff8ffff -> 0x00000000 [8. 0.007218] [ 3.] OF: PCI: MEM 0x..0x1fefffff -> 0x [8. 0.078933] [ 3.] imx6q-pcie .pcie: Speed change timeout [8. 0.005104] [ 3.] imx6q-pcie .pcie: Roll back to GEN1 link! [8. 0.025105] [ 3.] imx6q-pcie .pcie: Link up, Gen1 [8. 0.012251] [ 3.] imx6q-pcie .pcie: PCI host bridge to bus 0000:00 [8. 0.006023] [ 3.] pci_bus 0000:00: root bus resource [bus 00-ff] [8. 0.002037] [ 3.] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] [8. 0.006789] [ 3.] pci_bus 0000:00: root bus resource [mem 0x-0x1fefffff] [8. 0.005149] [ 3.] pci 0000:00:00.0: BAR 14: assigned [mem 0x-0x181fffff] [8. 0.003735] [ 3.] pci 0000:00:00.0: BAR 0: assigned [mem 0x-0x182fffff] [8. 0.010044] [ 3.] pci 0000:00:00.0: BAR 6: assigned [mem 0x-0x1830ffff pref] [8. 0.006423] [ 3.] pci 0000:01:00.0: BAR 0: assigned [mem 0x-0x181fffff 64bit] [8. 0.005355] [ 3.] pci 0000:00:00.0: PCI bridge to [bus 01] [8. 0.007257] [ 3.] pci 0000:00:00.0: bridge window [mem 0x-0x181fffff] [8. 0.021295] [ 3.] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt [8. 0.002098] [ 3.] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt [8. 0.003004] [ 3.] ath10k_pci 0000:01:00.0: enabling device (0000 -> 0002) [8. 0.009445] [ 3.] ath10k_pci 0000:01:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0 [8. 0.] [ 3.] 33c00000.pcie supply epdev_on not found, using dummy regulator [8. 0.005890] [ 3.] OF: PCI: host bridge /pcie@0x33c00000 ranges: [8. 0.003768] [ 3.] OF: PCI: No bus range found for /pcie@0x33c00000, using [bus 00-ff] [8. 0.015683] [ 3.] OF: PCI: IO 0x27f80000..0x27f8ffff -> 0x00000000 [8. 0.005124] [ 3.] OF: PCI: MEM 0x..0x27efffff -> 0x [8. 0.] [ 3.] ath10k_pci 0000:01:00.0: Falling back to user helper [8. 0.] [ 3.] imx6q-pcie 33c00000.pcie: phy link never came up [9.002126 0.007974] [ 3.] imx6q-pcie 33c00000.pcie: Link never came up [9.006757 0.004631] [ 3.] imx6q-pcie 33c00000.pcie: failed to initialize host [9.010153 0.003396] [ 3.] imx6q-pcie 33c00000.pcie: unable to add pcie port. [9.060659 0.050506] [ 3.] imx6q-pcie: probe of 33c00000.pcie failed with error -110 [9.077358 0.016699] [ 3.] update hantro voltage from 900 mV to 1000 mV [9.083375 0.006017] [ 3.] hantrodec: module inserted. Major = -1 [9.098301 0.014926] [ 3.] snvs_rtc .snvs:snvs-rtc-lp: setting system clock to 1970-01-01 00:02:49 UTC (169) [9. 0.002964] [ 3.] VSD_3V3: disabling [9. 0.000562] [ 3.] gpio_dvfs: disabling [9. 0.002862] [ 3.] SW1AB: disabling [9. 0.002140] [ 3.] VGEN1: disabling [9. 0.002966] [ 3.] VGEN6: disabling [9. 0.018564] [ 3.] dhd_module_init in [9. 0.003757] [ 3.] bcmdhd_wlan@0 supply wlreg_on not found, using dummy regulator [9. 0.002337] [ 3.] No Broadcom PCI device enumerated! [9. 0.000550] [ 3.] dhd_wifi_platform_load_pcie: pcie_register_driver failed [9. 0.003181] [ 3.] bcmdhd_wlan: probe of bcmdhd_wlan@0 failed with error -1 [9. 0.009525] [ 3.] dhd_module_init out [9. 0.000564] [ 3.] ALSA device list: [9. 0.000289] [ 3.] #0: wm8524-audio [9. 0.008381] [ 3.] #1: imx-spdif [9. 0.000589] [ 3.] #2: imx-hdmi-arc [9. 0.000891] [ 3.] #3: imx-audio-hdmi [9. 0.013348] [ 4.000516] EXT4-fs (mmcblk0p2): mounting ext3 file system using the ext4 subsystem [9. 0.] [ 4.] EXT4-fs (mmcblk0p2): recovery complete [9. 0.009400] [ 4.] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null) [9. 0.010236] [ 4.] VFS: Mounted root (ext3 filesystem) on device 179:2. [9. 0.007240] [ 4.] devtmpfs: mounted [9. 0.005236] [ 4.] Freeing unused kernel memory: 1088K [9. 0.082238] [ 4.] systemd[1]: System time before build time, advancing clock. [9. 0.029168] [ 4.] NET: Registered protocol family 10 [9. 0.028827] [ 4.] 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) [9. 0.041041] [ 4.] systemd[1]: Detected architecture arm64. [9. 0.004215] [9. 0.000994] Welcome to NXP i.MX Release Distro 4.9.51-mx8-ga (morty)! [9. 0.004690] [9. 0.000128] [ 4.] systemd[1]: Set hostname to
. [9. 0.] [ 4.] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [9. 0.023986] [ OK ] Started Forward Password Requests to Wall Directory Watch. [9. 0.010592] [ 4.] systemd[1]: Created slice User and Session Slice. [9. 0.019468] [ OK ] Created slice User and Session Slice. [9. 0.005371] [ 4.] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [9. 0.004604] [ OK ] Started Dispatch Password Requests to Console Directory Watch. [9. 0.005976] [ 4.] systemd[1]: Listening on Syslog Socket. [9. 0.002049] [ OK ] Listening on Syslog Socket. [9. 0.011464] [ 4.] systemd[1]: Reached target Paths. [9. 0.002382] [ OK ] Reached target Paths. [9. 0.016372] [ 4.] systemd[1]: Reached target Remote File Systems. [9. 0.004085] [ OK ] Reached target Remote File Systems. [9. 0.016426] [ 4.] systemd[1]: Listening on Journal Socket (/dev/log). [9. 0.001642] [ OK ] Listening on Journal Socket (/dev/log). [9. 0.012003] [ OK ] Listening on udev Control Socket. [9. 0.010740] [ OK ] Reached target Swap. [9. 0.013203] [ OK ] Created slice System Slice. [9. 0.012375] [ OK ] Created slice system-getty.slice. [9. 0.012832] [ OK ] Created slice system-serial\x2dgetty.slice. [9. 0.009697] [ OK ] Reached target Slices. [9. 0.014612] [ OK ] Listening on /dev/initctl Compatibility Named Pipe. [9. 0.015206] [ OK ] Listening on Journal Audit Socket. [9. 0.011200] [ OK ] Listening on Journal Socket. [9. 0.015829] Starting Create list of required st... nodes for the current kernel... [9. 0.016513] Starting Journal Service... [9. 0.021562] Starting Load Kernel Modules... [9. 0.021279] Starting Setup Virtual Console..[ 4.] galcore: loading out-of-tree module taints kernel. [9. 0.005231] . [9. 0.006296] [ 4.] galcore: clk_get 2d core clock failed, disable 2d/vg! [9. 0.005068] [ 4.] Galcore version 6.2.4. [9. 0.015245] Mounting Huge Pages File System... [9. 0.014734] Mounting Temporary Directory... [9. 0.006338] Mounting Debug File System... [10.006076 0.019427] Starting Remount Root and Kernel File Systems... [10.014335 0.008259] [ 4.] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null) [10.023228 0.008893] [ OK ] Listening on udev Kernel Socket. [10.036216 0.012988] Mounting POSIX Message Queue File System... [10.058699 0.022483] [ OK ] Mounted POSIX Message Queue File System. [10.079374 0.020675] [ OK ] Mounted Debug File System. [10.091213 0.011839] [ OK ] Mounted Huge Pages File System. [10. 0.010072] [ OK ] Mounted Temporary Directory. [10. 0.022026] [ OK ] Started Journal Service. [10. 0.008599] [ OK ] Started Create list of required sta...ce nodes for the current kernel. [10. 0.007606] [ OK ] Started Load Kernel Modules. [10. 0.016142] [ OK ] Started Setup Virtual Console. [10. 0.017683] [ OK ] Started Remount Root and Kernel File Systems. [10. 0.021284] Starting udev Coldplug all Devices... [10. 0.013876] Starting Apply Kernel Variables... [10. 0.016383] Mounting Configuration File System... [10. 0.016726] Starting Create Static Device Nodes in /dev... [10. 0.016599] Starting Flush Journal to Persistent Storage... [10. 0.025150] [ OK ] Mounted Configuration File System. [10. 0.008448] [ OK ] Started Apply Kernel Variables. [10. 0.016897] [ OK ] Started Create Static Device Nodes in /dev. [10. 0.021903] [ 5.] systemd-journald[1685]: Received request to flush runtime journal from PID 1 [10. 0.015961] [ OK ] Reached target Local File Systems (Pre). [10. 0.008425] Mounting /var/volatile... [10. 0.005061] Starting udev Kernel Device Manager... [10. 0.016817] [ OK ] Mounted /var/volatile. [10. 0.017516] [ OK ] Started Flush Journal to Persistent Storage. [10. 0.018595] Starting Load/Save Random Seed... [10. 0.008795] [ OK ] Reached target Local File Systems. [10. 0.011267] Starting Create Volatile Files and Directories... [10. 0.015403] [ OK ] Started udev Kernel Device Manager. [10. 0.015246] [ OK ] Started Load/Save Random Seed. [10. 0.017249] [ OK ] Started Create Volatile Files and Directories. [10. 0.019153] Starting Update UTMP about System Boot/Shutdown... [10. 0.012843] Starting Network Time Synchronization... [10. 0.016372] [ OK ] Started udev Coldplug all Devices. [10. 0.018535] Starting Start Psplash Boot Screen... [10. 0.019928] [ OK ] Started Update UTMP about System Boot/Shutdown. [10. 0.012737] [ OK ] Started Start Psplash Boot Screen. [10. 0.039661] [ OK ] Started Network Time Synchronization. [10. 0.017169] [ OK ] Reached target System Initialization. [10. 0.019105] [ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket. [10. 0.018637] [ OK ] Listening on RPCbind Server Activation Socket.[ 5.] ath10k_pci 0000:01:00.0: Falling back to user helper [10. 0.017971] [10. 0.002294] [ OK ] Listening on dropbear.socket. [10. 0.014723] [ OK ] Started Daily Cleanup of Temporary Directories. [10. 0.012043] [ OK ] Reached target Timers. [10. 0.016812] Starting Console System Startup Logging... [10. 0.013822] [ OK ] Listening on D-Bus System Message Bus Socket. [10. 0.013571] [ OK ] Reached target Sockets. [10. 0.013634] [ OK ] Reached target Basic System. [10. 0.012712] [ OK ] Started Updates psplash to basic. [10. 0.015296] [ OK ] Started Job spooling tools. [10. 0.016438] [ OK ] Started System Logging Service. [10. 0.036860] [ OK ] Started Periodic Command Scheduler. [10. 0.017731] [ 5.] ath10k_pci 0000:01:00.0: qca6174 hw3.2 target 0x0 chip_id 0x00340aff sub 0000:0000 [10. 0.010836] [ 5.] ath10k_pci 0000:01:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 0 testmode 0 [10. 0.015210] [ 5.] ath10k_pci 0000:01:00.0: firmware ver WLAN.RM.4.4.1-00051-QCARMSWP-1 api 6 features wowlan,ignore-otp crc32 c3fd4411 [10. 0.011496] Starting Login Service... [10. 0.005328] [ OK ] Started Kernel Logging Service. [10. 0.021863] Starting Telephony service... [10. 0.012087] [ 5.] ath10k_pci 0000:01:00.0: board id is not exist in otp, ignore it [10. 0.012758] [ OK ] Started D-Bus System Message Bus. [10. 0.010287] [ 5.] ath10k_pci 0000:01:00.0: board_file api 1 bmi_id N/A crc32 a596a4ea [11. 0.] [ OK ] Started Telephony service. [11. 0.012577] Starting Avahi mDNS/DNS-SD Stack... [11. 0.015901] Starting Connection service... [11. 0.010294] [ 5.] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. [11. 0.008560] Starting Network Time Service (one-shot ntpdate mode)... [11. 0.015558] [ OK ] Started Configuration for i.MX GPU (Former rc_gpu.S). [11. 0.013153] [ OK ] Reached target System Time Synchronized. [11. 0.017022] [ OK ] Started Console System Startup Logging. [11. 0.022006] [ OK ] Started Network Time Service (one-shot ntpdate mode). [11. 0.017295] [ OK ] Found device /dev/ttymxc0. [11. 0.072819] [ OK ] Started Avahi mDNS/DNS-SD Stack. [11. 0.014852] [ OK ] Started Connection service. [11. 0.011099] [ OK ] Started Login Service. [11. 0.019427] Starting Hostname Service... [11. 0.013821] Starting WPA supplicant... [11. 0.006658] Starting Save/Restore Sound Card State... [11. 0.038980] [ 6.] Atheros 8031 ethernet 30be0000.etherne:00: attached PHY driver [Atheros 8031 ethernet] (mii_bus:phy_addr=30be0000.etherne:00, irq=-1) [11. 0.011744] [ OK [ 6.] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [11. 0.007404] ] Started Save/Restore Sound Card State. [11. 0.005837] [ OK ] Started WPA supplicant. [11. 0.012710] [ OK ] Reached target Network. [11. 0.015206] Starting /etc/rc.local Compatibility... [11. 0.015362] [ OK ] Started Update psplash to network. [11. 0.018023] Starting Terminate Psplash Boot Screen... [11. 0.015487] Starting Permit User Sessions... [11. 0.014938] [ OK ] Reached target Sound Card. [11. 0.017307] [ OK ] Started /etc/rc.local Compatibility. [11. 0.013859] [ OK ] Started Terminate Psplash Boot Screen. [11. 0.014560] [ OK ] Started Permit User Sessions. [11. 0.010484] [ OK ] Started Hostname Service. [11. 0.019956] Starting Weston Wayland Compositor (on tty7)... [11. 0.014445] [ OK ] Started Serial Getty on ttymxc0. [11. 0.015572] [ OK ] Started Getty on tty1. [11. 0.014431] [ OK ] Reached target Login Prompts. [11. 0.053458] [ OK ] Started Weston Wayland Compositor (on tty7). [11. 0.038017] [ OK ] Reached target Multi-User System. [11. 0.019074] Starting Update UTMP about System Runlevel Changes... [11. 0.022715] [ OK ] Created slice User Slice of root. [11. 0.027941] Starting User Manager for UID 0... [11. 0.019626] [ 6.] audit: type=1006 audit(.431:2): pid=3029 uid=0 old-auid= auid=0 tty=(none) old-ses= ses=1 res=1 [11. 0.024401] [ OK ] Started Update UTMP about System Runlevel Changes. [11. 0.011867] [ OK ] Started Session c1 of user root. [11. 0.014301] [ OK ] Started User Manager for UID 0. [12. 1.020063] [12. 0.013105] NXP i.MX Release Distro 4.9.51-mx8-ga imx8mqevk ttymxc0 [12. 0.003075] [12. 0.009651] imx8mqevk login:
发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/177131.html原文链接:https://javaforall.net
