2.Orangepi PC2 kernel编译

$cd /root/Oriangepi/OrangePiH5/kernel
$make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- distclean

#查看配置文件
$ls /root/Oriangepi/OrangePiH5/kernel/arch/arm64/configs/
defconfig                 OrangePiH5_Prima_defconfig
OrangePiH5_PC2_defconfig  OrangePiH5_Zero_Plus2_defconfig

$make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- OrangePiH5_PC2_defconfig

$make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- Image

$make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- modules

#安装驱动到指定目录,也就是output目录,你可以在分好区后直接安装到sd卡也可以
$make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j4 modules_install INSTALL_MOD_PATH=/root/Oriangepi/OrangePiH5/output

#编译GPU驱动
$make -C modules/gpu ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- LICHEE_KDIR=/root/Oriangepi/OrangePiH5/kernel LICHEE_MOD_DIR=/root/Oriangepi/OrangePiH5/output/lib/ LICHEE_PLATFORM=linux

#生成gpu驱动目录
install -d /root/Oriangepi/OrangePiH5/output/lib/modules/`cat include/config/kernel.release 2> /dev/null`/kernel/drivers/gpu

#终端输入临时变量
export MAIL_MOD_DIR=/root/Oriangepi/OrangePiH5/output/lib/modules/`cat include/config/kernel.release 2> /dev/null`/kernel/drivers/gpu

#安装gpu驱动
mv ../output/lib/mali.ko $MAIL_MOD_DIR

生成上章需要的设备树

$make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- dtbs -j4
  CC      scripts/mod/devicetable-offsets.s
  GEN     scripts/mod/devicetable-offsets.h
  HOSTCC  scripts/mod/file2alias.o
  HOSTLD  scripts/mod/modpost
  DTC     arch/arm64/boot/dts/sun50iw2p1-fpga.dtb
  DTC     arch/arm64/boot/dts/sun50iw2p1-perf2_v1_0.dtb
  DTC     arch/arm64/boot/dts/sun50iw2p1-p1.dtb
  DTC     arch/arm64/boot/dts/sun50iw2p1-perf1_v1_0.dtb
  DTC     arch/arm64/boot/dts/sun50iw2p1-cheetah-perf.dtb
  DTC     arch/arm64/boot/dts/sun50iw2p1-cheetah-p1.dtb
  DTC     arch/arm64/boot/dts/sun50iw2p1-soc.dtb
  DTC     arch/arm64/boot/dts/sun50iw2p1-cheetah-cmcc-p1.dtb

再次打包

$cd /root/Oriangepi/OrangePiH5/scripts/pack
$./pack

将Image转为uImage

#将上章编译Uboot生成的mkimage复制到/usr/bin目录
$cp /root/Oriangepi/OrangePiH5/uboot/tools/mkimage /usr/bin

#本人的工作目录
$pwd
/root/Oriangepi/OrangePiH5

$mkimage -A arm -n "OrangePiH5" -O linux -T kernel -C none -a 0x40080000 -e 0x40080000 -d kernel/arch/arm64/boot/Image output/uImage

Image Name:   OrangePiH5
Created:      Mon Apr 29 21:38:10 2019
Image Type:   ARM Linux Kernel Image (uncompressed)
Data Size:    12200520 Bytes = 11914.57 KiB = 11.64 MiB
Load Address: 40080000
Entry Point:  40080000

创建uEnv.txt文件

#向右箭头表示回车
$cat <<EOF > "output/uEnv.txt"
> console=tty0 console=ttyS0,115200n8 no_console_suspend
> kernel_filename=orangepi/uImage
> initrd_filename=initrd.img
> EOF
$cp -rfa external/initrd.img output/

以下为作死一波流

#在进行下面操作前,请先按上章把uboot dd到特定扇区
#下面开始分区,对原uboot没影响

#先查看官方sd卡镜像烧录情况
$fdisk -l /dev/sdb
/dev/sdb1        40960  143359  102400  50M  c W95 FAT32 (LBA)
/dev/sdb2       143360 4417535 4274176   2G 83 Linux

------------------------------------------------------------------------------
$umount /dev/sdb1
#可以看出boot分区扇区由40960开始

#分区,删除原分区步骤略
$fdisk /dev/sdb
欢迎使用 fdisk (util-linux 2.31.1)。
更改将停留在内存中,直到您决定将更改写入磁盘。
使用写入命令前请三思。


命令(输入 m 获取帮助): o
创建了一个磁盘标识符为 0x4e4c64ca 的新 DOS 磁盘标签。

命令(输入 m 获取帮助): n
分区类型
   p   主分区 (0个主分区,0个扩展分区,4空闲)
   e   扩展分区 (逻辑分区容器)
选择 (默认 p): 

将使用默认回应 p。
分区号 (1-4, 默认  1): 
第一个扇区 (2048-62333951, 默认 2048): 40960
上个扇区,+sectors 或 +size{K,M,G,T,P} (40960-62333951, 默认 62333951): +50M

创建了一个新分区 1,类型为“Linux”,大小为 50 MiB。
分区 #1 包含一个 vfat 签名。

您想移除该签名吗? 是[Y]/否[N]: y

写入命令将移除该签名。

命令(输入 m 获取帮助): n
分区类型
   p   主分区 (1个主分区,0个扩展分区,3空闲)
   e   扩展分区 (逻辑分区容器)
选择 (默认 p): 

将使用默认回应 p。
分区号 (2-4, 默认  2): 
第一个扇区 (2048-62333951, 默认 2048): 143360
上个扇区,+sectors 或 +size{K,M,G,T,P} (143360-62333951, 默认 62333951): 

创建了一个新分区 2,类型为“Linux”,大小为 29.7 GiB。
分区 #2 包含一个 ext4 签名。

您想移除该签名吗? 是[Y]/否[N]: y

写入命令将移除该签名。

命令(输入 m 获取帮助): w
分区表已调整。
将调用 ioctl() 来重新读分区表。
正在同步磁盘。

root@flary-VirtualBox:~/Oriangepi/OrangePiH5/output/pack# fdisk -l /dev/sdb
Disk /dev/sdb:29.7 GiB,31914983424 字节,62333952 个扇区
单元:扇区 / 1 * 512 = 512 字节
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0x4e4c64ca

设备       启动   起点     末尾     扇区  大小 Id 类型
/dev/sdb1        40960   143359   102400   50M 83 Linux
/dev/sdb2       143360 62333951 62190592 29.7G 83 Linux

#格式化
$mkfs.vfat -n BOOT /dev/sdb1
$mkfs.ext4 -O ^64bit,^metadata_csum -F -b 4096 -E  stride=2,stripe-width=1024 -L rootfs /dev/sdb2

拷贝如下文件到以下SD卡的boot分区,并创建orangepi目录

tree /media/root
/media/root
└── BOOT
    ├── initrd.img
    ├── orangepi
    │   ├── OrangePiH5.dtb
    │   └── uImage
    └── uEnv.txt

以下为引导信息

B 0@
@($@▒▒HELLO! BOOT0 is starting!
boot0 commit : 661df598b3672fc3bc3e0c2425a77170a26d7a0d

boot0 version : 4.0
set pll start
set pll end
rtc[0] value = 0x00000000
rtc[1] value = 0x00000000
rtc[2] value = 0x00000000
rtc[3] value = 0x00000000
rtc[4] value = 0x00000000
rtc[5] value = 0x00000000
DRAM BOOT DRIVE INFO: V0.6
the chip id is 0x00000001
the chip id is 0x00000001
the chip id is 0x00000001
the chip id is 0x00000001
the chip id is 0x00000001
axp not exist
DRAM CLK =672 MHZ
DRAM Type =3 (2:DDR2,3:DDR3,6:LPDDR2,7:LPDDR3)
DRAM zq value: 0x003b3bf9
DRAM SIZE =1024 M
DRAM simple test OK.
dram size =1024
card no is 0
sdcard 0 line count 4
[mmc]: mmc driver ver 2016-03-15 20:40
[mmc]: sdc0 spd mode error, 2
[mmc]: Wrong media type 0x00000000
[mmc]: ***[2]Try SD card 0***
[mmc]: HSSDR52/SDR25 4 bit
[mmc]: 50000000 Hz
[mmc]: 30436 MB
[mmc]: ***SD/MMC 0 init OK!!!***
sum=aae18245
src_sum=aae18245
read boot-pkg from emmc 32800 sector
Succeed in loading uboot from sdmmc flash.
Entry_name        = u-boot
Entry_name        = monitor
Entry_name        = scp
set arisc reset to de-assert state
Ready to disable icache.
▒R▒▒O:    Configuring SPC Controller
NOTICE:  BL3-1: v1.0(debug):3ffd944
NOTICE:  BL3-1: Built : 11:09:10, Aug 30 2016
NOTICE:  BL3-1 commit: 3ffd9442d4769d7fc0002770e3b69b55150a288e

INFO:    BL3-1: Initializing runtime services
ERROR:   Error initializing runtime service tspd_fast
INFO:    BL3-1: Preparing for EL3 exit to normal world
INFO:    BL3-1: Next image address = 0x4a000000
INFO:    BL3-1: Next image spsr = 0x1d3


U-Boot 2014.07-g661df59-dirty (Apr 28 2019 - 21:05:01) Allwinner Technology

uboot commit : 661df598b3672fc3bc3e0c2425a77170a26d7a0d

secure enable bit: 0
i2c: secure monitor exist
[      0.738]pmbus:   ready
u0:48105000
[      0.741][ARISC] :arisc initialize
[      0.772][ARISC] :arisc para ok
[SCP] :sunxi-arisc driver begin startup 2
[SCP] :arisc version: [sun8iw5_v0.03.00-244-gb750b8e]
[SCP] :sunxi-arisc driver v1.20 is starting
[      0.787][ARISC] :sunxi-arisc driver startup succeeded
axp: get node[charger0] error
[SCP ERROR] :message process error
[SCP ERROR] :message addr   : 48105080
[SCP ERROR] :message state  : 5
[SCP ERROR] :message attr   : 2
[SCP ERROR] :message type   : 80
[SCP ERROR] :message result : f3
[SCP WARING] :callback not install
[SCP ERROR] :arisc twi read pmu reg 0x3 err
probe axp806 failed
axp_probe error
[      0.821]PMU: cpux 1008 Mhz,AXI=336 Mhz
PLL6=600 Mhz,AHB1=200 Mhz, APB1=100Mhz MBus=400Mhz
run key detect
no key found
no uart input
DRAM:  1 GiB
fdt addr: 0x76e9f080
Relocation Offset is: 35ef2000
axp: get node[charger0] error
In:    serial
Out:   serial
Err:   serial
gic: sec monitor mode
[box standby] read rtc = 0x0
[box standby] start_type = 0x1
[box standby] to kernel
boot_init_gpio used
ir boot recovery not used
workmode = 0,storage type = 1
[      1.027]MMC:        0
[mmc]: mmc driver ver 2016-05-20 17:18:00-test0
[mmc]: get card2_boot_para:sdc_ex_dly_used 0
[mmc]: no mmc-hs400-1_8v!
[mmc]: no mmc-hs200-1_8v!
[mmc]: no mmc-ddr-1_8v!
[mmc]: delete max-frequency from dtb
SUNXI SD/MMC: 0
[mmc]: 50 MHz...
[mmc]: sample: 62 - 161(ps)
[mmc]: 100 MHz...
[mmc]: sample: 31 - 161(ps)
[mmc]: 200 MHz...
[mmc]: sample: 16 - 156(ps)
[mmc]: media type 0x0
[mmc]: Wrong media type 0x0
[mmc]: ************Try SD card 0************
[mmc]: host caps: 0x27
[mmc]: MID 03 PSN 4a541998
[mmc]: PNM SC32G -- 0x53-43-33-32-47
[mmc]: PRV 8.0
[mmc]: MDT m-12 y-2018
[mmc]: speed mode     : HSSDR52/SDR25
[mmc]: clock          : 50000000 Hz
[mmc]: bus_width      : 4 bit
[mmc]: user capacity  : 30436 MB
[mmc]: ************SD/MMC 0 init OK!!!************
[mmc]: erase_grp_size      : 0x1WrBlk*0x200=0x200 Byte
[mmc]: secure_feature      : 0x0
[mmc]: secure_removal_type : 0x0
[      1.235]sunxi flash init ok
[      1.251]start
drv_disp_init
tv_init:
tv_probe:000
no report hpd work,you need support the switch class!
screen 0 don't support TV!
tv_init:
fetch tv1 err.
drv_disp_init finish
hdcp is closed by sys config.
no the part:Reserve0
hpd_dev_num=2, id of def_output_dev is 0
hdmi hpd out, force open?
fdt_setprop_u32 disp.init_disp(0x20b0404) code:<no error>
fb_id=0, size=3686400, gd->ram_size=1073741824, SUNXI_DISPLAY_FRAME_BUFFER_SIZE=16777216
[      1.824]end
PowerBus = 0( 2:vBus 3:acBus other: not exist)
no battery, limit to dc
no battery exist
sunxi_bmp_logo_display
[boot disp] can not find the partition Reserve0
bmp_name=bootlogo.bmp
** Bad device size - sunxi_flash 0 **
sunxi bmp info error : unable to open logo file bootlogo.bmp
fail to find part named env
Using default environment

--------fastboot partitions--------
mbr not exist
base bootcmd=run mmcbootcmd
bootcmd set setargs_mmc
no misc partition is found
to be run cmd=run mmcbootcmd
cann't get the boot_base from the env
read item0 copy0
Item0 (Map) magic is bad
the secure storage item0 copy0 is bad
read item0 copy1
Item0 (Map) magic is bad
the secure storage item0 copy0 == copy1, the data is good
the secure storage map is empty
check user data form private
the private part isn't exist
update dtb dram start
update dtb dram  end
serial is: 24005035c120582a084c
[      1.992]inter uboot shell
Hit any key to stop autoboot:  0
Loading orangepi uEnv.txt from 40000000 ...
reading uEnv.txt
[mmc]: blkcnt should not be 0
114 bytes read in 1 ms (111.3 KiB/s)
Loading boot environment ...
reading boot.scr
** Unable to read file boot.scr **
Booting with defaults ...
Loading orangepi orangepi/OrangePiH5.dtb from 44000000 ...
reading orangepi/OrangePiH5.dtb
73231 bytes read in 5 ms (14 MiB/s)
Loading orangepi orangepi/uImage from 4007ffc0 ...
reading orangepi/uImage
12200584 bytes read in 520 ms (22.4 MiB/s)
reading initrd.img
1090786 bytes read in 49 ms (21.2 MiB/s)
Loading orangepi initrd.img from 44300000 ...
bootm kernel:4007ffc0 initrd:44300000 ...
bootm initd_size:10a4e2 fdt_addr:44000000 ...
## Booting kernel from Legacy Image at 4007ffc0 ...
   Image Name:   OrangePiH5
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    12200520 Bytes = 11.6 MiB
   Load Address: 40080000
   Entry Point:  40080000
   Verifying Checksum ... OK
   XIP Kernel Image ... OK
   reserving fdt memory region: addr=40020000 size=800
   reserving fdt memory region: addr=48000000 size=1000000
   reserving fdt memory region: addr=48100000 size=4000
   reserving fdt memory region: addr=48104000 size=1000
   reserving fdt memory region: addr=48105000 size=1000
   Loading Ramdisk to 76d85000, end 76e8f4e2 ... OK
   Using Device Tree in place at 44000000, end 44015e1f

Starting kernel ...

INFO:    BL3-1: Next image address = 0x40080000
INFO:    BL3-1: Next image spsr = 0x3c5
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.10.65+ (root@flary-VirtualBox) (gcc version 4.9.3 20150113 (prerelease) (Linaro GCC 4.9-2015.01-3) ) #1 SMP PREEMPT Sun Apr 28 22:34:08 CST 2019
[    0.000000] CPU: AArch64 Processor [410fd034] revision 4
[    0.000000] Machine: sun50iw2
[    0.000000] cma: CMA: reserved 16 MiB at 7f000000
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv0.2 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] PERCPU: Embedded 12 pages/cpu @ffffffc03ef95000 s20224 r8192 d20736 u49152
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 258560
[    0.000000] Kernel command line: console=tty0 console=ttyS0,115200n8 no_console_suspend earlycon=uart,mmio32,0x01c28000 mac_addr= root=/dev/mmcblk0p2 ro rootwait
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.000000] Memory: 1024MB = 1024MB total
[    0.000000] Memory: 985196k/985196k available, 63380k reserved
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vmalloc : 0xffffff8000000000 - 0xffffffbbffff0000   (245759 MB)
[    0.000000]     vmemmap : 0xffffffbc00e00000 - 0xffffffbc01c00000   (    14 MB)
[    0.000000]     modules : 0xffffffbffc000000 - 0xffffffc000000000   (    64 MB)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc040000000   (  1024 MB)
[    0.000000]       .init : 0xffffffc000ad0000 - 0xffffffc000b59f00   (   552 kB)
[    0.000000]       .text : 0xffffffc000080000 - 0xffffffc000acf6f4   ( 10558 kB)
[    0.000000]       .data : 0xffffffc000b5a000 - 0xffffffc000c22a48   (   803 kB)
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] NR_IRQS:64 nr_irqs:64 0
[    0.000000] Architected cp15 timer(s) running at 24.00MHz (virt).
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    4.088960] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)
[    4.088994] pid_max: default: 32768 minimum: 301
[    4.089474] Security Framework initialized
[    4.089499] SELinux:  Initializing.
[    4.089871] Mount-cache hash table entries: 256
[    4.091875] Initializing cgroup subsys debug
[    4.091898] Initializing cgroup subsys freezer
[    4.092111] ftrace: allocating 28417 entries in 112 pages
[    4.127392] CPU0: update cpu_power 1024
[    4.127427] hw perfevents: enabled with arm/armv8-pmuv3 PMU driver, 7 counters available
[    4.129166] virtual base = 0xffffff800000a000.
[    4.129193] gicd_base = 0xffffff800000c000.
[    4.129206] gicc_base = 0xffffff800000e000.
[    4.131138] CPU1: Booted secondary processor
[    4.131162] CPU1: update cpu_power 1024
[    4.132932] CPU2: Booted secondary processor
[    4.132945] CPU2: update cpu_power 1024
[    4.134699] CPU3: Booted secondary processor
[    4.134711] CPU3: update cpu_power 1024
[    4.134792] Brought up 4 CPUs
[    4.134875] SMP: Total of 4 processors activated (192.00 BogoMIPS).
[    4.136161] devtmpfs: initialized
[    4.166558] atomic64 test passed
[    4.166585] pinctrl core: initialized pinctrl subsystem
[    4.169405] NET: Registered protocol family 16
[    4.171992] dump_class_init,839, success
[    4.173221] vdso: 2 pages (1 code, 1 data) at base ffffffc000b69000
[    4.173259] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    4.174517] software IO TLB [mem 0x7d000000-0x7d400000] (4MB) mapped at [ffffffc03d000000-ffffffc03d3fffff]
[    4.175731] DMA: preallocated 256 KiB pool for atomic allocations
[    4.176400] pll_audio-set_default_rate=24576000 success!
[    4.176441] pll_video-set_default_rate=297000000 success!
[    4.176494] pll_ve-set_default_rate=420000000 success!
[    4.176615] pll_de-set_default_rate=864000000 success!
[    4.176918] ahb1-set_default_rate=200000000 success!
[    4.177776] de-set_default_source=pll_de success!
[    4.177793] de-set_default_rate=432000000 success!
[    4.177862] tcon0-set_default_source=pll_video success!
[    4.177950] tve-set_default_source=pll_de success!
[    4.178248] hdmi-set_default_source=pll_video success!
[    4.181942] sun50iw2p1-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver
[    4.184835] sun50iw2p1-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver
[    4.186904] sunxi hwspinlock vbase:0xffffff800005c000
[    4.270301] bio: create slab <bio-0> at 0
[    4.271357] pwm module init!
[    4.277551] SCSI subsystem initialized
[    4.278600] usbcore: registered new interface driver usbfs
[    4.278834] usbcore: registered new interface driver hub
[    4.280411] usbcore: registered new device driver usb
[    4.282802] Linux video capture interface: v2.00
[    4.289584] [ARISC] :sunxi-arisc driver v1.20
[    4.290487] [ARISC] :sunxi-arisc driver v1.20 startup succeeded
[    4.291171] Advanced Linux Sound Architecture Driver Initialized.
[    4.292644] Bluetooth: Core ver 2.16
[    4.292860] NET: Registered protocol family 31
[    4.292876] Bluetooth: HCI device and connection manager initialized
[    4.292919] Bluetooth: HCI socket layer initialized
[    4.292957] Bluetooth: L2CAP socket layer initialized
[    4.293029] Bluetooth: SCO socket layer initialized
[    4.293908] cfg80211: Calling CRDA to update world regulatory domain
[    4.294718] [pm]aw_pm_init!
[    4.294822] np name = /soc@01c00000/rtc@01f00000.
[    4.294839] base = ffffff800006c100, len = 4.
[    4.294855] pmu name: pmic0 .
[    4.294934] Warning: can not find np for pmic0.
[    4.294948] pmu name: pmic1 .
[    4.294978] Warning: can not find np for pmic1.
[    4.295065] add_sys_pwr_dm: get ldo name  for id: vcc-lpddr failed
[    4.295085] add_sys_pwr_dm: get ldo name  for id: vcc-pl failed
[    4.295103] add_sys_pwr_dm: axpdummy_ldo6 ldo already alwayson.
[    4.295134] add_sys_pwr_dm: vcc-pc not sys id.
[    4.295148] after inited: sys_mask config = 0x4855.
[    4.295181] Warning: can not find np for dynamic_standby_para.
[    4.295321] [pm]valid
[    4.295332] [pm]valid
[    4.295342] Notice: sun9i & sun8iw5 & sun50i not need support normal standby,                                change to super standby.
[    4.295384] [DISP]disp_module_init
[    4.296250] [DISP] disp_boot_para_parse,line:347:of_property_read disp.init_disp fail
[    4.296276] [DISP] init_disp:0x0
[    4.296292] [DISP] boot_disp:0x0
[    4.296815] [DISP] fb_base:0x0
[    4.300853] [DISP] Fb_copy_boot_fb,line:959:no boot_fb0
[    4.305788] [DISP]disp_module_init finish
[    4.306904] sunxi budget cooling probe start !
[    4.306940] CPU freq cooling register Success
[    4.306966] CPU hotplug cooling register Success
[    4.307309] CPU budget cooling register Success
[    4.309029] input: sunxi-ths as /devices/virtual/input/input0
[    4.309077] thermal thermal_zone0: failed to read out thermal zone 0
[    4.309584] Switching to clocksource arch_sys_counter
[    4.354301] FS-Cache: Loaded
[    4.354868] CacheFiles: Loaded
[    4.381903] NET: Registered protocol family 2
[    4.383419] TCP established hash table entries: 8192 (order: 5, 131072 bytes)
[    4.383600] TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
[    4.383770] TCP: Hash tables configured (established 8192 bind 8192)
[    4.384958] TCP: reno registered
[    4.384977] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    4.385018] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    4.385774] NET: Registered protocol family 1
[    4.386812] RPC: Registered named UNIX socket transport module.
[    4.386831] RPC: Registered udp transport module.
[    4.386845] RPC: Registered tcp transport module.
[    4.386859] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    4.387826] Unpacking initramfs...
[    4.434822] Freeing initrd memory: 1064K (ffffffc036d85000 - ffffffc036e8f000)
[    4.435936] lock super standby defaultly!
[    4.435966] lookup_scene_lock_name: new scene lock super_standby
[    4.435983] scene_lock_init name=super_standby
[    4.435999] scene_lock: super_standby, type 5, count 1
[    4.437252] audit: initializing netlink socket (disabled)
[    4.437347] type=2000 audit(0.330:1): initialized
[    4.442678] FS-Cache: Netfs 'nfs' registered for caching
[    4.443925] FS-Cache: Netfs 'cifs' registered for caching
[    4.444836] NTFS driver 2.1.30 [Flags: R/W].
[    4.445118] fuse init (API version 7.22)
[    4.446285] msgmni has been set to 1958
[    4.448847] io scheduler noop registered
[    4.448868] io scheduler deadline registered
[    4.448994] io scheduler cfq registered (default)
[    4.450454] sunxi_bootup_extend_probe: bootup extend state 1
[    4.450473] bootup extend probe ok
[    4.451040] failed to get easy_light_used assign
[    4.451058] failed to get standby led pin assign
[    4.451111] gpio_pin_1(362) gpio_is_valid
[    4.451419] gpio_pin_2(20) gpio_is_valid
[    4.451776] gpio name is PL10, ret = 0
[    4.452106] gpio name is PA20, ret = 0
[    4.452558] gpio_init finish with uesd
[    4.453696] uart0: ttyS0 at MMIO 0x1c28000 (irq = 32) is a SUNXI
[    4.453729] sw_console_setup()1268 - console setup baud 115200 parity n bits 8, flow n
[    5.365614] console [ttyS0] enabled
[    5.370383] uart1: ttyS1 at MMIO 0x1c28400 (irq = 33) is a SUNXI
[    5.377621] uart2: ttyS2 at MMIO 0x1c28800 (irq = 34) is a SUNXI
[    5.386206] misc dump reg init
[    5.397843] loop: module loaded
[    5.401337] Get boot type cmd line fail
[    5.408349] spi spi0: master is unqueued, this is deprecated
[    5.415289] spi spi1: master is unqueued, this is deprecated
[    5.423866] tun: Universal TUN/TAP device driver, 1.6
[    5.429398] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    5.438373] eth0: Use random mac address
[    5.442955] PPP generic driver version 2.4.2
[    5.448158] PPP BSD Compression module registered
[    5.453325] PPP Deflate Compression module registered
[    5.458864] PPP MPPE Compression module registered
[    5.464115] NET: Registered protocol family 24
[    5.469028] PPTP driver version 0.8.5
[    5.473310] hso: drivers/net/usb/hso.c: Option Wireless
[    5.479644] usbcore: registered new interface driver hso
[    5.485686] usbcore: registered new interface driver asix
[    5.491818] usbcore: registered new interface driver ax88179_178a
[    5.498681] usbcore: registered new interface driver cdc_ether
[    5.505286] usbcore: registered new interface driver net1080
[    5.511684] usbcore: registered new interface driver cdc_subset
[    5.518358] usbcore: registered new interface driver zaurus
[    5.524696] usbcore: registered new interface driver cdc_ncm
[    5.530901] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.538309] get ehci0-controller, regulator_io is no nocare
[    5.544497] [sunxi-ehci0]: probe, pdev->name: 1c1a000.ehci0-controller, sunxi_ehci: 0xffffffc000d183e0, 0x:ffffff8000b36000, irq_no:68
[    5.557808] sunxi-ehci 1c1a000.ehci0-controller: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.567742] sunxi-ehci 1c1a000.ehci0-controller: new USB bus registered, assigned bus number 1
[    5.577717] sunxi-ehci 1c1a000.ehci0-controller: irq 104, io mem 0xffffffc00047a564
[    5.598697] sunxi-ehci 1c1a000.ehci0-controller: USB 0.0 started, EHCI 1.00
[    5.606443] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    5.613885] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.621807] usb usb1: Product: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.630007] usb usb1: Manufacturer: Linux 3.10.65+ ehci_hcd
[    5.636105] usb usb1: SerialNumber: sunxi-ehci
[    5.641995] hub 1-0:1.0: USB hub found
[    5.646123] hub 1-0:1.0: 1 port detected
[    5.650857] get drv_vbus is fail, 84
[    5.654768] get ehci1-controller, regulator_io is no nocare
[    5.660936] [sunxi-ehci1]: probe, pdev->name: 1c1b000.ehci1-controller, sunxi_ehci: 0xffffffc000d18660, 0x:ffffff8000b3c000, irq_no:6a
[    5.674242] sunxi-ehci 1c1b000.ehci1-controller: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.684175] sunxi-ehci 1c1b000.ehci1-controller: new USB bus registered, assigned bus number 2
[    5.694045] sunxi-ehci 1c1b000.ehci1-controller: irq 106, io mem 0xffffffc00047a564
[    5.716774] sunxi-ehci 1c1b000.ehci1-controller: USB 0.0 started, EHCI 1.00
[    5.724503] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    5.731946] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.739862] usb usb2: Product: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.748095] usb usb2: Manufacturer: Linux 3.10.65+ ehci_hcd
[    5.754193] usb usb2: SerialNumber: sunxi-ehci
[    5.760017] hub 2-0:1.0: USB hub found
[    5.764144] hub 2-0:1.0: 1 port detected
[    5.768863] get drv_vbus is fail, 84
[    5.772773] get ehci2-controller, regulator_io is no nocare
[    5.778937] [sunxi-ehci2]: probe, pdev->name: 1c1c000.ehci2-controller, sunxi_ehci: 0xffffffc000d188e0, 0x:ffffff8000b44000, irq_no:6c
[    5.792240] sunxi-ehci 1c1c000.ehci2-controller: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.802169] sunxi-ehci 1c1c000.ehci2-controller: new USB bus registered, assigned bus number 3
[    5.812035] sunxi-ehci 1c1c000.ehci2-controller: irq 108, io mem 0xffffffc00047a564
[    5.834855] sunxi-ehci 1c1c000.ehci2-controller: USB 0.0 started, EHCI 1.00
[    5.842477] ehci_irq: highspeed device connect
[    5.847471] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    5.854914] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.862820] usb usb3: Product: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.871051] usb usb3: Manufacturer: Linux 3.10.65+ ehci_hcd
[    5.877165] usb usb3: SerialNumber: sunxi-ehci
[    5.883130] hub 3-0:1.0: USB hub found
[    5.887267] hub 3-0:1.0: 1 port detected
[    5.891973] get drv_vbus is fail, 84
[    5.895896] get ehci3-controller, regulator_io is no nocare
[    5.902049] [sunxi-ehci3]: probe, pdev->name: 1c1d000.ehci3-controller, sunxi_ehci: 0xffffffc000d18b60, 0x:ffffff8000b4c000, irq_no:6e
[    5.915357] sunxi-ehci 1c1d000.ehci3-controller: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.925288] sunxi-ehci 1c1d000.ehci3-controller: new USB bus registered, assigned bus number 4
[    5.935177] sunxi-ehci 1c1d000.ehci3-controller: irq 110, io mem 0xffffffc00047a564
[    5.962776] sunxi-ehci 1c1d000.ehci3-controller: USB 0.0 started, EHCI 1.00
[    5.970504] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002
[    5.977948] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.985905] usb usb4: Product: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.994107] usb usb4: Manufacturer: Linux 3.10.65+ ehci_hcd
[    6.000205] usb usb4: SerialNumber: sunxi-ehci
[    6.005994] hub 4-0:1.0: USB hub found
[    6.010119] hub 4-0:1.0: 1 port detected
[    6.015130] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    6.022143] get ohci0-controller, regulator_io is no nocare
[    6.028294] hci: request ohci0-controller gpio:354
[    6.033550] ohci0-controller get usb clk_usbohci12m clk failed.
[    6.040027] ohci0-controller get usb clk_hoscx2 clk failed.
[    6.046133] ohci0-controller get usb clk_hosc failed.
[    6.051669] ohci0-controller get usb clk_losc clk failed.
[    6.057577] [sunxi-ohci0]: probe, pdev->name: 1c1a000.ohci0-controller, sunxi_ohci: 0xffffffc000d179e0
[    6.067832] sunxi-ohci 1c1a000.ohci0-controller: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    6.077387] sunxi-ohci 1c1a000.ohci0-controller: new USB bus registered, assigned bus number 5
[    6.086914] sunxi-ohci 1c1a000.ohci0-controller: irq 105, io mem 0x76b076c07630720
[    6.153781] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    6.161225] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.169133] usb usb5: Product: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    6.176951] usb usb5: Manufacturer: Linux 3.10.65+ ohci_hcd
[    6.183058] usb usb5: SerialNumber: sunxi-ohci
[    6.188812] hub 5-0:1.0: USB hub found
[    6.192948] hub 5-0:1.0: 1 port detected
[    6.197640] get drv_vbus is fail, 84
[    6.198954] usb 3-1: new high-speed USB device number 2 using sunxi-ehci
[    6.208932] get ohci1-controller, regulator_io is no nocare
[    6.215083] ohci1-controller get usb clk_usbohci12m clk failed.
[    6.221576] ohci1-controller get usb clk_hoscx2 clk failed.
[    6.227680] ohci1-controller get usb clk_hosc failed.
[    6.233220] ohci1-controller get usb clk_losc clk failed.
[    6.239139] [sunxi-ohci1]: probe, pdev->name: 1c1b000.ohci1-controller, sunxi_ohci: 0xffffffc000d17c60
[    6.249391] sunxi-ohci 1c1b000.ohci1-controller: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    6.258945] sunxi-ohci 1c1b000.ohci1-controller: new USB bus registered, assigned bus number 6
[    6.268443] sunxi-ohci 1c1b000.ohci1-controller: irq 107, io mem 0x76b076c07630720
[    6.330889] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[    6.338334] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.346245] usb usb6: Product: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    6.354065] usb usb6: Manufacturer: Linux 3.10.65+ ohci_hcd
[    6.360203] usb usb6: SerialNumber: sunxi-ohci
[    6.366099] usb 3-1: New USB device found, idVendor=0bda, idProduct=8179
[    6.373450] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    6.373707] hub 6-0:1.0: USB hub found
[    6.373734] hub 6-0:1.0: 1 port detected
[    6.374135] get drv_vbus is fail, 84
[    6.374138] get ohci2-controller, regulator_io is no nocare
[    6.374192] ohci2-controller get usb clk_usbohci12m clk failed.
[    6.374196] ohci2-controller get usb clk_hoscx2 clk failed.
[    6.374199] ohci2-controller get usb clk_hosc failed.
[    6.374203] ohci2-controller get usb clk_losc clk failed.
[    6.374207] [sunxi-ohci2]: probe, pdev->name: 1c1c000.ohci2-controller, sunxi_ohci: 0xffffffc000d17ee0
[    6.374264] sunxi-ohci 1c1c000.ohci2-controller: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    6.374286] sunxi-ohci 1c1c000.ohci2-controller: new USB bus registered, assigned bus number 7
[    6.374358] sunxi-ohci 1c1c000.ohci2-controller: irq 109, io mem 0x00000000
[    6.429291] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[    6.429297] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.429302] usb usb7: Product: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    6.429306] usb usb7: Manufacturer: Linux 3.10.65+ ohci_hcd
[    6.429311] usb usb7: SerialNumber: sunxi-ohci
[    6.430175] hub 7-0:1.0: USB hub found
[    6.430210] hub 7-0:1.0: 1 port detected
[    6.430590] get drv_vbus is fail, 84
[    6.430593] get ohci3-controller, regulator_io is no nocare
[    6.430645] ohci3-controller get usb clk_usbohci12m clk failed.
[    6.430649] ohci3-controller get usb clk_hoscx2 clk failed.
[    6.430653] ohci3-controller get usb clk_hosc failed.
[    6.430656] ohci3-controller get usb clk_losc clk failed.
[    6.430660] [sunxi-ohci3]: probe, pdev->name: 1c1d000.ohci3-controller, sunxi_ohci: 0xffffffc000d18160
[    6.430716] sunxi-ohci 1c1d000.ohci3-controller: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    6.430736] sunxi-ohci 1c1d000.ohci3-controller: new USB bus registered, assigned bus number 8
[    6.430811] sunxi-ohci 1c1d000.ohci3-controller: irq 111, io mem 0x00000000
[    6.488333] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001
[    6.488339] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.488344] usb usb8: Product: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    6.488348] usb usb8: Manufacturer: Linux 3.10.65+ ohci_hcd
[    6.488353] usb usb8: SerialNumber: sunxi-ohci
[    6.489179] hub 8-0:1.0: USB hub found
[    6.489204] hub 8-0:1.0: 1 port detected
[    6.490256] usbcore: registered new interface driver usb-storage
[    6.490476] usbcore: registered new interface driver ums-alauda
[    6.490694] usbcore: registered new interface driver ums-cypress
[    6.490894] usbcore: registered new interface driver ums-datafab
[    6.491087] usbcore: registered new interface driver ums_eneub6250
[    6.491283] usbcore: registered new interface driver ums-freecom
[    6.491483] usbcore: registered new interface driver ums-isd200
[    6.491677] usbcore: registered new interface driver ums-jumpshot
[    6.491881] usbcore: registered new interface driver ums-karma
[    6.492081] usbcore: registered new interface driver ums-onetouch
[    6.492295] usbcore: registered new interface driver ums-realtek
[    6.492496] usbcore: registered new interface driver ums-sddr09
[    6.492694] usbcore: registered new interface driver ums-sddr55
[    6.492896] usbcore: registered new interface driver ums-usbat
[    6.493697] usbcore: registered new interface driver usbserial
[    6.493897] usbcore: registered new interface driver option
[    6.494083] usbserial: USB Serial support registered for GSM modem (1-port)
[    6.727770] usb 3-1: Product: 802.11n NIC
[    6.728828] mousedev: PS/2 mouse device common for all mice
[    6.729652] usbcore: registered new interface driver xpad
[    6.729866] usbcore: registered new interface driver usb_acecad
[    6.730070] usbcore: registered new interface driver aiptek
[    6.730314] usbcore: registered new interface driver gtco
[    6.730518] usbcore: registered new interface driver hanwang
[    6.730725] usbcore: registered new interface driver kbtab
[    6.730988] usbcore: registered new interface driver wacom
[    6.732475] Set vaild hardware RTC date 2019-01-01
[    6.733076] sunxi-rtc 1f00000.rtc: rtc core: registered sunxi-rtc as rtc0
[    6.733121] sunxi-rtc 1f00000.rtc: RTC enabled
[    6.733797] IR NEC protocol handler initialized
[    6.733799] IR RC5(x) protocol handler initialized
[    6.733801] IR RC6 protocol handler initialized
[    6.733803] IR JVC protocol handler initialized
[    6.733805] IR Sony protocol handler initialized
[    6.733807] IR RC5 (streamzap) protocol handler initialized
[    6.733808] IR SANYO protocol handler initialized
[    6.733810] IR MCE Keyboard/mouse protocol handler initialized
[    6.733812] sunxi cedar version 0.1
[    6.733896] [cedar]: install start!!!
[    6.733987] cedar_ve: cedar-ve the get irq is 90
[    6.734594] [cedar]: install end!!!
[    6.746865] sunxi gpu cooling probe start !
[    6.746878] CPU gpu cooling register Success
[    6.867140] usb 3-1: Manufacturer: Realtek
[    6.871651] usb 3-1: SerialNumber: 00F006000388
[    6.876626] device-mapper: uevent: version 1.0.3
[    6.882299] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com
[    6.891846] Bluetooth: HCI UART driver ver 2.2
[    6.896714] Bluetooth: HCI H4 protocol initialized
[    6.901970] Bluetooth: HCI Realtek H5 protocol initialized
[    6.907988] rtk_btcoex: rtk_uart_coex_init, version: 1.1
[    6.913798] rtk_btcoex: create workqueue
[    6.919228] cpuidle: using governor ladder
[    6.923721] cpuidle: using governor menu
[    6.930132] sunxi-mmc 1c0f000.sdmmc: SD/MMC/SDIO Host Controller Driver(v0.54 2016-05-11 21:04) Compiled in Apr 28 2019 at 22:28:15
[    6.943177] sunxi-mmc 1c0f000.sdmmc: regulator prop vmmc,str vcc-sdcv
[    6.950245] sunxi-mmc 1c0f000.sdmmc: regulator prop vqmmc,str vcc-sdcvq33
[    6.957688] sunxi-mmc 1c0f000.sdmmc: regulator prop vdmmc,str vcc-sdcvd
[    6.964942] sunxi-mmc 1c0f000.sdmmc: No vmmc regulator found
[    6.971145] sunxi-mmc 1c0f000.sdmmc: No vqmmc regulator found
[    6.977448] sunxi-mmc 1c0f000.sdmmc: No vdmmc regulator found
[    6.984299] sunxi-mmc 1c0f000.sdmmc: Got CD GPIO #166.
[    6.990367] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 0Hz bm PP pm UP vdd 21 width 1 timing LEGACY(SDR12) dt B
[    7.015655] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B
[    7.045555] sunxi-mmc 1c0f000.sdmmc: base:0xffffff8000b6c000 irq:92
[    7.047153] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B
[    7.049538] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B
[    7.054718] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vdd 16 width 1 timing LEGACY(SDR12) dt B
[    7.054760] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vdd 16 width 1 timing LEGACY(SDR12) dt B
[    7.057136] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vdd 16 width 1 timing LEGACY(SDR12) dt B
[    7.110789] hidraw: raw HID events driver (C) Jiri Kosina
[    7.124031] mmc0: host does not support reading read-only switch. assuming write-enable.
[    7.130478] usbcore: registered new interface driver usbhid
[    7.130481] usbhid: USB HID core driver
[    7.131452] zram: Created 1 device(s) ...
[    7.148563] ashmem: initialized
[    7.152361] logger: created 256K log 'log_main'
[    7.152425] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vdd 16 width 1 timing SD-HS(SDR25) dt B
[    7.152503] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 50000000Hz bm PP pm ON vdd 16 width 1 timing SD-HS(SDR25) dt B
[    7.153140] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 50000000Hz bm PP pm ON vdd 16 width 4 timing SD-HS(SDR25) dt B
[    7.153461] mmc0: new high speed SDHC card at address aaaa
[    7.198157] logger: created 256K log 'log_events'
[    7.203362] mmcblk0: mmc0:aaaa SC32G 29.7 GiB
[    7.203777] logger: created 256K log 'log_radio'
[    7.204137] logger: created 256K log 'log_system'
[    7.207449] AUDIO :get regulator name failed .
[    7.224653] sunxi-codec-machine sound.6:  sun50iw2codec <-> 1c22c00.cpudai0-controller mapping ok
[    7.228103]  mmcblk0: p1 p2
[    7.240974] sndhdmi sound.7:  sndhdmi <-> 1c22800.daudio mapping ok
[    7.250234] u32 classifier
[    7.253222]     Actions configured
[    7.256943] Netfilter messages via NETLINK v0.30.
[    7.262217] nf_conntrack version 0.5.0 (7833 buckets, 31332 max)
[    7.269279] ctnetlink v0.93: registering with nfnetlink.
[    7.277386] NF_TPROXY: Transparent proxy support initialized, version 4.1.0
[    7.285021] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.
[    7.292753] xt_time: kernel timezone is -0000
[    7.297648] ipip: IPv4 over IPv4 tunneling driver
[    7.303941] gre: GRE over IPv4 demultiplexor driver
[    7.309279] ip_gre: GRE over IPv4 tunneling driver
[    7.317073] ip_tables: (C) 2000-2006 Netfilter Core Team
[    7.323378] arp_tables: (C) 2002 David S. Miller
[    7.328554] TCP: bic registered
[    7.331999] TCP: cubic registered
[    7.335624] TCP: westwood registered
[    7.339532] TCP: htcp registered
[    7.343070] Initializing XFRM netlink socket
[    7.348116] NET: Registered protocol family 10
[    7.355824] mip6: Mobile IPv6
[    7.359156] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    7.365595] sit: IPv6 over IPv4 tunneling driver
[    7.372103] NET: Registered protocol family 17
[    7.377040] NET: Registered protocol family 15
[    7.382490] Bluetooth: RFCOMM TTY layer initialized
[    7.387875] Bluetooth: RFCOMM socket layer initialized
[    7.393510] Bluetooth: RFCOMM ver 1.11
[    7.397611] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    7.403434] Bluetooth: BNEP filters: protocol multicast
[    7.409177] Bluetooth: BNEP socket layer initialized
[    7.414617] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    7.421129] Bluetooth: HIDP socket layer initialized
[    7.427193] Registering SWP/SWPB emulation handler
[    7.434258] [DISP] boot_disp:0x0
[    7.439258] [HDMI] cec support = 1
[    7.548576] there is no tve dac(0) offset value.
[    7.553642] [DISP] boot_disp:0x0
[    7.557319] [DISP] disp_init_tv,line:641:screen 0 don't support TV!
[    8.147256] [DISP] disp_device_attached_and_enable,line:165:attched ok, mgr0<-->device0, ty
              Kernel params: console=tty0 console=ttyS0,115200n8 no_console_suspend earlycon=uart,mmio32,0x01c28000 mac_addr= root=/dev/mmcblk0p2 ro rootwait
Waiting for root system /dev/mmcblk0p2, countdown : 5
Rootfs: /dev/mmcblk0p2
mount: mounting /dev/mmcblk0p2 on /mnt/root failed: Invalid argument
umount: can't unmount /mnt/root: Invalid argument
Waiting for root system /dev/mmcblk0p2, countdown : 4
Rootfs: /dev/mmcblk0p2
[   13.400831] EXT2-fs (mmcblk0p2): error: couldn't mount because of unsupported optional features (2c0)
[   13.413704] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
[   13.429850] JBD2: Unrecognised features on journal
[   13.435111] EXT4-fs (mmcblk0p2): error loading journal
[   13.485135] UDF-fs: warning (device mmcblk0p2): udf_fill_super: No partition found (2)
mount: mounting /dev/mmcblk0p2 on /mnt/root failed: Invalid argument
umount: can't unmount /mnt/root: Invalid argument
Waiting for root system /dev/mmcblk0p2, countdown : 3
Rootfs: /dev/mmcblk0p2
[   18.464757] EXT2-fs (mmcblk0p2): error: couldn't mount because of unsupported optional features (2c0)
[   18.477646] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
[   18.493822] JBD2: Unrecognised features on journal
[   18.499090] EXT4-fs (mmcblk0p2): error loading journal
[   18.549126] UDF-fs: warning (device mmcblk0p2): udf_fill_super: No partition found (2)
mount: mounting /dev/mmcblk0p2 on /mnt/root failed: Invalid argument
umount: can't unmount /mnt/root: Invalid argument
Waiting for root system /dev/mmcblk0p2, countdown : 2
Rootfs: /dev/mmcblk0p2
[   23.528607] EXT2-fs (mmcblk0p2): error: couldn't mount because of unsupported optional features (2c0)
[   23.541498] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
[   23.557664] JBD2: Unrecognised features on journal
[   23.562909] EXT4-fs (mmcblk0p2): error loading journal
[   23.612941] UDF-fs: warning (device mmcblk0p2): udf_fill_super: No partition found (2)
mount: mounting /dev/mmcblk0p2 on /mnt/root failed: Invalid argument
umount: can't unmount /mnt/root: Invalid argument
Waiting for root system /dev/mmcblk0p2, countdown : 1
Rootfs: /dev/mmcblk0p2
[   28.593283] EXT2-fs (mmcblk0p2): error: couldn't mount because of unsupported optional features (2c0)
[   28.606158] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
[   28.622363] JBD2: Unrecognised features on journal
[   28.627663] EXT4-fs (mmcblk0p2): error loading journal
[   28.677739] UDF-fs: warning (device mmcblk0p2): udf_fill_super: No partition found (2)
mount: mounting /dev/mmcblk0p2 on /mnt/root failed: Invalid argument
umount: can't unmount /mnt/root: Invalid argument
Rootfs: /dev/mmcblk0p2
[   33.615291] EXT2-fs (mmcblk0p2): error: couldn't mount because of unsupported optional features (2c0)
[   33.628149] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
[   33.644322] JBD2: Unrecognised features on journal
[   33.649570] EXT4-fs (mmcblk0p2): error loading journal
[   33.699632] UDF-fs: warning (device mmcblk0p2): udf_fill_super: No partition found (2)
mount: mounting /dev/mmcblk0p2 on /mnt/root failed: Invalid argument
umount: can't unmount /mnt/root: Invalid argument
Dropping to a shell.

/ # ls
bin      init     mnt      root     sys
dev      linuxrc  proc     sbin     tmp
/ #

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值