Firefly开源社区

标题: Firefly Ubuntu开发入门之(6)制作Ubuntu Rootfs镜像 [打印本页]

作者: 牛头    时间: 2016-9-29 15:00
标题: Firefly Ubuntu开发入门之(6)制作Ubuntu Rootfs镜像
本帖最后由 牛头 于 2016-9-29 15:09 编辑

     很多朋友希望在拿到Firelfy发布的Ubuntu镜像后,会想自己加驱动或自己编译的内核等等,但做的过程中难免出现各种各样的问题。网上各种教程都不那么切题,讲解都不是那么细致,让人感到迷茫,又或许是无助。Firefly团队努力地在帮助开发者打破此困局,整理策划了系列教程,让开发者可以通过Firefly开源平台可以快速上手开发,并快速打造出成熟产品。
    创新 开源 分享 定制”是我们的口号,我们一直在努力。

    之前教程已经讲完如何替换kernel及boot 镜像制作,今天讲如何制作Ubuntu Rootfs镜像。本文主要讲解镜像制作的流程,Ubuntu系统本身的配置优化等不在本文范围。以前介绍的Rootfs镜像制作方法,需要用到miniroot工具在开发板上来操作,方法比较原始复杂。现在有新的方法,可以在PC主机上制作完可烧录的Rootfs镜像,比较方便,参考价值高。
    让我们上路吧。

    首先从ubuntu官方下载ubuntu core,就是ubuntu根文件系统的核心部分,没有图形界面等等,简单说就是要啥没啥的效果
cd ~/UbuntuDev/
mkdir rootfs
cd rootfs
wget http://cdimage.ubuntu.com/ubuntu-base/releases/16.04/release/ubuntu-base-16.04-core-armhf.tar.gz
    下载完后,解压到ubuntu目录:
mkdir ubuntu
sudo tar -xpf ubuntu-base-16.04-core-armhf.tar.gz -C ubuntu
    解压后,可以ls看看,这就是最小化的ubuntu根文件系统,可以直接用来生成镜像,但里面基本是要啥没啥。如何可以预置一些程序呢,如vim,openssh-server,git什么的工具。办法是有的:在PC里模拟运行这个根文件系统,运行后安装配置一些需要预置的程序,再把此根文件系统打包成固件。
    PC上模拟运行根文件系统,需要安装一个工具:
sudo apt-get install qemu-user-static

    另外,在切换到此根文件系统前,要对根文件系统做一些配置修改,copy qemu
cd ubuntu
sudo cp /usr/bin/qemu-arm-static usr/bin/
    拷贝PC主机端的dns配置,因为待会安装程序时要用网络:
sudo cp -b /etc/resolv.conf  etc/resolv.conf
    增加软件源:
sudo vim etc/apt/source.list
    加入如下两行内容,保存后退出:
deb http://ports.ubuntu.com/ubuntu-ports/ xenial main universe
deb-src http://ports.ubuntu.com/ubuntu-ports/ xenial main universe
    经过上述步骤,已经对ubuntu根文件系统做了简单的配置,现在可以用工具切换到此根文件系统了。
   
    为了简化操作过程,这里使用一个切换根文件系统的脚本,点击下载。下载后,拷贝到~/UbuntuDev/rootfs目录,并增加可执行权限。用脚本挂载切换到指定的根文件系统,命令为:
cd ~/UbuntuDev/rootfs
chmod +x ch-mount.sh
./ch-mount.sh -m ubuntu/
    可以看到执行后,终端显示的用户名发生了变化,用ls可以看到文件系统也有变化,此终端里的根文件系统已经切换到binary目录里的根文件系统。可以在终端里做安装程序等操作了,就像进入了一个新系统,所以我也叫作是模拟运行根文件系统。

    这里我们实验性的给新系统装一些常用的工具:
apt-get install vim git openssh-server
    敲完回车,泡茶静静地等待吧,软件装得越多就越慢
    程序装完后,给系统增加一个叫ubuntu的管理员帐号:
useradd -s '/bin/bash' -m -G adm,sudo ubuntu
    修改ubuntu用户密码,回车后按提示输入两次密码
passwd ubuntu
    修改root帐号的密码,回车后按提示输入两次密码
passwd root
    对新系统的修改到此为止,准备打包镜像。
    退出chroot
exit
    用脚本载缷载退出根文件系统:
./ch-mount.sh -u ubuntu/

    终于要制作镜像了,用dd工具创建镜像文件:
dd if=/dev/zero of=ubuntu.img  bs=1M count=3000
    格式化镜像文件,并加入linuxroot卷标:
sudo mkfs.ext4 -F -L linuxroot ubuntu.img
    挂载镜像并往里面拷入修改后的文件系统:
mkdir ubuntu-mount
sudo mount  ubuntu.img ubuntu-mount
sudo cp -rfp ubuntu/* ubuntu-mount
    缷载镜像:
sudo umount ubuntu-mount

    这样ubuntu.img里就已经有刚才制作的根目录内容了,但ubuntu.img文件大小却是定义的分区大小,不是文件系统的实际大小,所以还要经过一些处理才能发布。
    检查并修复ubuntu.img镜像的文件系统,不熟悉的朋友可以通过网络了解此工具:
e2fsck -p -f ubuntu.img
    减小ubuntu.img镜像文件的大小:
resize2fs -M ubuntu.img
    执行上面两命令后,ubuntu.img瘦身不少,可以用来烧录了。

    启动后,效果刚刚的,顺利启动到字符终端模式,可以通过键盘登陆ubuntu帐号。

    接下来就是各种ubuntu的配置,如网络配置、安装图形桌面等等了。
    路漫漫其修远兮,但毕竟我们已经在路上。


作者: 牛头    时间: 2016-9-29 15:00
沙发
作者: wangdongx40423p    时间: 2016-9-29 23:42
好,楼主威武。
作者: csersoft    时间: 2016-9-30 10:24
备份下 ch-mount.sh
  1. #!/bin/bash

  2. function mnt() {
  3.     echo "MOUNTING"
  4.     sudo mount -t proc /proc ${2}proc
  5.     sudo mount -t sysfs /sys ${2}sys
  6.     sudo mount -o bind /dev ${2}dev

  7.     sudo chroot ${2}
  8. }

  9. function umnt() {
  10.     echo "UNMOUNTING"
  11.     sudo umount ${2}proc
  12.     sudo umount ${2}sys
  13.     sudo umount ${2}dev

  14. }


  15. if [ "$1" == "-m" ] && [ -n "$2" ] ;
  16. then
  17.     mnt $1 $2
  18. elif [ "$1" == "-u" ] && [ -n "$2" ];
  19. then
  20.     umnt $1 $2
  21. else
  22.     echo ""
  23.     echo "Either 1'st, 2'nd or both parameters were missing"
  24.     echo ""
  25.     echo "1'st parameter can be one of these: -m(mount) OR -u(umount)"
  26.     echo "2'nd parameter is the full path of rootfs directory(with trailing '/')"
  27.     echo ""
  28.     echo "For example: ch-mount -m /media/sdcard/"
  29.     echo ""
  30.     echo 1st parameter : ${1}
  31.     echo 2nd parameter : ${2}
  32. fi


复制代码

作者: csersoft    时间: 2016-9-30 10:28
有个问题,安装配置完qemu-user-static,好像并没有使用到这个工具啊
作者: wangdongx40423p    时间: 2016-9-30 12:49
这个是国内的armhf  ubuntu的源,提供给大家参考

deb http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-updates main restricted universe multiverse
deb-src http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-updates main restricted universe multiverse

deb http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-security main restricted universe multiverse
deb-src http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-security main restricted universe multiverse

deb http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-backports main restricted universe multiverse
deb-src http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-backports main restricted universe multiverse

deb http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial main universe restricted
deb-src http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial main universe restricted

deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ xenial-updates main restricted universe multiverse
deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ xenial-updates main restricted universe multiverse

deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ xenial-security main restricted universe multiverse
deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ xenial-security main restricted universe multiverse

deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ xenial-backports main restricted universe multiverse
deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ xenial-backports main restricted universe multiverse

deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ xenial main universe restricted
deb-src http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ xenial main universe restricted
作者: 牛头    时间: 2016-9-30 16:03
csersoft 发表于 2016-9-30 10:28
有个问题,安装配置完qemu-user-static,好像并没有使用到这个工具啊


sudo cp /usr/bin/qemu-arm-static usr/bin/
这里用到啦,你可以不加这句去试试

作者: 牛头    时间: 2016-9-30 16:04
wangdongx40423p 发表于 2016-9-30 12:49
这个是国内的armhf  ubuntu的源,提供给大家参考

deb http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial ...

阔以,谢谢了
作者: wangdongx40423p    时间: 2016-9-30 17:31
老大,能不能先公布一下网络的配置方法,现在系统启动起来了,没有网络,真的蛋疼,有了网络后面都好办了。
作者: 牛头    时间: 2016-9-30 17:35
wangdongx40423p 发表于 2016-9-30 17:31
老大,能不能先公布一下网络的配置方法,现在系统启动起来了,没有网络,真的蛋疼,有了网络后面都好办了。

su root
dhclient eth0
前提是开发板有用以太网线连接到带DHCP服务的路由哦
作者: 牛头    时间: 2016-9-30 17:35
wangdongx40423p 发表于 2016-9-30 17:31
老大,能不能先公布一下网络的配置方法,现在系统启动起来了,没有网络,真的蛋疼,有了网络后面都好办了。

su root
dhclient eth0
前提是开发板有用以太网线连接到带DHCP服务的路由哦
作者: wangdongx40423p    时间: 2016-9-30 17:44
dhclient  怎么提示没有这条指令呢
作者: 牛头    时间: 2016-9-30 17:47
wangdongx40423p 发表于 2016-9-30 17:44
dhclient  怎么提示没有这条指令呢



有的,仔细确认下

作者: wangdongx40423p    时间: 2016-9-30 18:57
本帖最后由 wangdongx40423p 于 2016-9-30 19:07 编辑

问题我查到了,是没有执行安装软件那条指令
apt-get install vim git openssh-server

但是又有个奇怪的问题了,ifconfig这个条命令竟然没有,看来只能等楼主的大作了,
ping 指令竟然也没有,出鬼了。

作者: wangdongx40423p    时间: 2016-9-30 20:32
本帖最后由 wangdongx40423p 于 2016-9-30 22:25 编辑

这个是rockchip 给的制作ubuntu的方法,链接如下
http://rockchip.wikidot.com/porting-os

另外rockchip 也给出来比较简单的方法,已经制作成文件了,只要运行两条命令就可以了,给大家做个参考
https://github.com/rockchip-linux/rk-rootfs-build


但是要注意rockchip 的说明

usage  This repo contains rockchip rootfs build script. It will download linaro releases and set up enviroment for our chip based on the download releases.
apt-get install qemu-user-static to installing the build tools because we will chroot to this base rootfs.

//下面的命令是制作debian的文件系统
./mk-rootfs.sh to build rk-debian rootfs
./mk-image.sh to create the ext4 image(linaro-rootfs.img).


other spackages-rebuild./rebuild-packages.sh is the script help to rebuild rockchip supplied packages.To rebuild the packages, the environment must be set up properly.I recommend to chroot to a clean Stretch Debian.


//下面的是制作ubuntu的文件系统
build-ubuntuSince a lot of peoples want to get other distributions, such as ubuntu, so i write mk-rootfs-ubuntu.sh to help.But please notice this script is not well maintenance and the rootfs built by this script can be easily broken because the script don't use package manager to install packages, it just unpack packages.


作者: wangdongx40423p    时间: 2016-9-30 20:38
还是等楼主的大作,rockchip的并不一定合适我们这个板子
作者: wangdongx40423p    时间: 2016-10-1 13:33
本帖最后由 wangdongx40423p 于 2016-10-1 13:36 编辑


执行如下指令,即可启动eth0
root@ubuntu:~# echo auto eth0 > /etc/network/interfaces.d/eth0
root@ubuntu:~# echo iface eth0 inet dhcp >> /etc/network/interfaces.d/eth0
root@ubuntu:~# ifup eth0

root@ubuntu:~# dhclient eth0

如果想安装xubuntu,直接执行
root@ubuntu:~# apt-get update
root@ubuntu:~# apt-get install xubuntu-desktop

安装好ifconfig指令就有了

作者: 牛头    时间: 2016-10-3 12:42
wangdongx40423p 发表于 2016-10-1 13:33
执行如下指令,即可启动eth0
root@ubuntu:~# echo auto eth0 > /etc/network/interfaces.d/eth0
root@u ...

不错哦,继续前进吧
作者: wangdongx40423p    时间: 2016-10-8 11:13
@牛头,下面可不可以介绍一下在桌面系统下怎么启用GPU?
作者: dianziit    时间: 2016-10-8 14:30
这个是国内的armhf  ubuntu的源,提供给大家参考
作者: wangdongx40423p    时间: 2016-10-8 20:42
@牛头,make module 出来的东西安装好xubuntu 后怎么使用呢。
作者: 牛头    时间: 2016-10-9 14:33
wangdongx40423p 发表于 2016-10-8 20:42
@牛头,make module 出来的东西安装好xubuntu 后怎么使用呢。

例如之前WIFI功能等,会要用到。现在暂时还没有用到。
作者: orbbec-wmy    时间: 2016-11-16 14:12
hi 楼主,首先先感谢楼主大法,目前已经能正常制作16.04的文件系统了,也正常起来了,不过现在想装桌面环境,遇到了问题,能否出一个安装桌面环境的教程呢,我看16.04测试版的固件你们已经出来了,桌面安装方法过程应该ok的吧
作者: orbbec-wmy    时间: 2016-11-16 19:37
wangdongx40423p 发表于 2016-10-1 13:33
执行如下指令,即可启动eth0
root@ubuntu:~# echo auto eth0 > /etc/network/interfaces.d/eth0
root@u ...

我现在安装好xubuntu之后重启进入登录界面,输入密码后屏幕黑了一下,有到了登录界面,想请教一下是不是还要装什么跟桌面相关的软件包吗 目前就 apt-get install xubuntu-desktop
作者: talugirl    时间: 2016-11-25 10:59
烧录ubuntu.img镜像,下载镜像里的地址和名字怎么写?
作者: shitonyou    时间: 2017-1-6 16:36
版主,这个弄进去串口不能用,需要怎么改?
[    **] A start job is running for dev-ttyS2.device (34s / 1min 30s)

[ TIME ] Timed out waiting for device dev-ttyS2.device.
[DEPEND] Dependency failed for Serial Getty on ttyS2.
[  OK  ] Reached target Login Prompts.
[  OK  ] Reached target Multi-User System.
[  OK  ] Reached target Graphical Interface.
         Starting Update UTMP about System Runlevel Changes...
[  OK  ] Started Update UTMP about System Runlevel Changes.

作者: shitonyou    时间: 2017-1-13 16:16
shitonyou 发表于 2017-1-6 16:36
版主,这个弄进去串口不能用,需要怎么改?
[    **] A start job is running for dev-ttyS2.device (34s  ...

牛头不回复我,我自己搞定了。
作者: 孔雀翎    时间: 2017-2-4 20:17
shitonyou 发表于 2017-1-13 16:16
牛头不回复我,我自己搞定了。

请问你的内核是3.10的吗,我现在也是这个问题,用16.04的ubuntu就会出现这个问题,14.04的正常。我看网上是要设置CONFIG_FHANDLE=y这个配置,请问你是这么做的吗?谢谢
作者: saber    时间: 2017-2-10 09:57
孔雀翎 发表于 2017-2-4 20:17
请问你的内核是3.10的吗,我现在也是这个问题,用16.04的ubuntu就会出现这个问题,14.04的正常。我看网上 ...

好像加了也没有用,是这个串口配置文件有问题,一直在等待这个job的完成。
作者: saber    时间: 2017-2-10 10:00
楼主,不知道你现在的xubutu-desktop已经跑起来了么?你是从hdmi还是Lcd输出的,我这边从hdmi输出有问题,startx时xorg.0.log没有出错,但是显示器就是没有显示,请问 还需装什么驱动么?
作者: lixinle    时间: 2017-2-13 17:23
谢谢,正需要这样的东西,如果可以希望版主有空再搞一个busybox的文件系统
作者: 小猪    时间: 2017-3-20 17:17
希望版主有空再搞一个busybox的文件系统  最好能将一个完整功能齐全的根文件系统需要配置哪些,最好能将维基的镜像升级包中使用到的文件系统如何制作生成的 录制成视频
作者: 小猪    时间: 2017-3-23 09:04
版主 请问如何将桌面环境整到根文件系统中,能否将这个帖子往后如何将文件系统网络等一起整合成一个文件系统继续说明一下,像官网发布的升级包中解压出的根文件系统那样。我试着安装不同的桌面系统,不是找不到软件包,就是启动以后进不到登陆UI界面。
作者: 小猪    时间: 2017-3-25 10:46
版主  我根据你的帖子制作了一个根文件系统 然后生成根文件系统文件之前 在里面安装了lubuntu-desktop
但是启动以后进不到桌面环境,只有一个光标在显示器左上角不停的闪动。显示器也没有进入登录界面。串口
也没有登录界面。像firefly一样的 默认登录用户。
无法进入控制台,请问怎么配置?

DDR Version 1.00 20141007
In
Channel a: DDR3 200MHz
Bus Width=32 Col=10 Bank=8 Row=15 CS=2 Die Bus-Width=16 Size=2048MB
Channel b: DDR3 200MHz
Bus Width=32 Col=10 Bank=8 Row=15 CS=2 Die Bus-Width=16 Size=2048MB
Memory OK
Memory OK
OUT


U-Boot 2014.10-RK3288-02 (Mar 20 2017 - 14:29:00)

CPU: rk3288
CPU's clock information:
    arm pll = 600000000HZ
    periph pll = 300000000HZ
    ddr pll = 200000000HZ
    codec pll = 594000000HZ
Board:  Rockchip platform Board
DRAM:  Found dram banks:1
Adding bank:0000000000000000(0000000100000000)
128 MiB
storage init OK!
Using default environment

GetParam
check parameter success
Unknow param: MACHINE_MODEL:rk30sdk!
Unknow param: MACHINE_ID:007!
Unknow param: MANUFACTURER:RK30SDK!
Unknow param: PWR_HLD: 0,0,A,0,1!
failed to prepare fdt from boot!
power key: bank-0 pin-5
can't find dts node for ricoh619
pmic:act8846
Can't find dts node for fuel guage cw201x
SecureBootEn = 0, SecureBootLock = 0

#Boot ver: 2017-03-20#2.17
empty serial no.
checkKey
vbus = 1
no fuel gauge found
no fuel gauge found
read logo_on switch from dts [0]
no fuel gauge found
Hit any key to stop autoboot:  0
failed to load fdt from boot!
kernel   @ 0x02000000 (0x0060a860)
ramdisk  @ 0x04bf0000 (0x00275c35)
Secure Boot state: 0
bootrk: do_bootm_linux...
   Loading Device Tree to 0480c000, end 04827184 ... OK
Add bank:0000000000000000, 00000000ff000000

Starting kernel ...

<hit enter to activate fiq debugger>
[    0.000000] Booting Linux on physical CPU 0x500
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.10.0 (root@leon-ThinkPad-T460) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #2 SMP PREEMPT Mon Mar 20 17:28:27 CST 2017
[    0.000000] CPU: ARMv7 Processor [410fc0d1] revision 1 (ARMv7), cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine: Rockchip RK3288 (Flattened Device Tree), model: rockchip,rk3288
[    0.000000] hdmi init vic is -1
[    0.000000] rockchip_ion_reserve
[    0.000000] cma: CMA: reserved 16 MiB at 2e800000
[    0.000000] Memory policy: ECC disabled, Data cache writealloc
[    0.000000] PERCPU: Embedded 9 pages/cpu @c2ec0000 s14016 r8192 d14656 u36864
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1042960
[    0.000000] Kernel command line: console=tty0 console=ttyFIQ0 earlyprintk root=/dev/block/mtd/by-name/linuxroot rw rootfstype=ext4 init=/sbin/init  mtdparts=rk29xxnand:0x00008000@0x00002000(resource),0x00008000@0x0000A000(boot),0x00002000@0x00012000(misc),0x0001a000@0x00014000(backup),-@0x0002e000(linuxroot) storagemedia=emmc loader.timestamp=2017-03-20_14:29:00 hdmi.vic=-1
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Memory: 4080MB = 4080MB total
[    0.000000] Memory: 4110064k/4110064k available, 67856k reserved, 3399680K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xf0000000 - 0xff000000   ( 240 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xef800000   ( 760 MB)
[    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
[    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
[    0.000000]       .text : 0xc0008000 - 0xc0a917b0   (10790 kB)
[    0.000000]       .init : 0xc0a92000 - 0xc0ce16c0   (2366 kB)
[    0.000000]       .data : 0xc0ce2000 - 0xc0d85c88   ( 656 kB)
[    0.000000]        .bss : 0xc0d85c88 - 0xc0ea2644   (1139 kB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:16 nr_irqs:16 16
[    0.000000] rk_clk_tree_init start! cru base = 0xfed00000
[    0.000000] rk_get_uboot_display_flag: uboot_logo_on = 0
[    0.000000] rkclk_init_clks: cnt_parent = 7
[    0.000000] rkclk_init_clks: cnt_rate = 32
[    0.000000] Architected local timer running at 24.00MHz (phys).
[    0.000000] Switching to timer-based delay loop
[    0.000000] sched_clock: ARM arch timer >56 bits at 24000kHz, resolution 41ns
[    0.000000] process version: 0
[    0.000000] channel:0, lkg:0
[    0.000000] target-temp:95
[    0.000000] channel:2, lkg:0
[    0.000000] target-temp:95
[    0.000000] channel:0, lkg:0
[    0.000000] target-temp:95
[    0.000000] channel:1, lkg:0
[    0.000000] target-temp:95
[    0.000000] sched_clock: 32 bits at 100 Hz, resolution 10000000ns, wraps every 4294967286ms
[    0.000000] Console: colour dummy device 80x30
[    0.000000] console [tty0] enabled
[    1.042027] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)
[    1.042135] pid_max: default: 32768 minimum: 301
[    1.042498] Security Framework initialized
[    1.042564] SELinux:  Initializing.
[    1.042823] Mount-cache hash table entries: 512
[    1.044892] Initializing cgroup subsys debug
[    1.044968] Initializing cgroup subsys freezer
[    1.045087] CPU: Testing write buffer coherency: ok
[    1.045879] /cpus/cpu@0 missing clock-frequency property
[    1.045958] /cpus/cpu@1 missing clock-frequency property
[    1.046023] /cpus/cpu@2 missing clock-frequency property
[    1.046084] /cpus/cpu@3 missing clock-frequency property
[    1.046238] CPU0: thread -1, cpu 0, socket 5, mpidr 80000500
[    1.046379] Setting up static identity map for 0xc079e8b8 - 0xc079e910
[    1.050969] last_log: 0x2e100000 map to 0xf0004000 and copy to 0xf0086000, size 0x80000 early 0x1409 (version 3.0)
[    1.127753] CPU1: Booted secondary processor
[    1.127843] CPU1: thread -1, cpu 1, socket 5, mpidr 80000501
[    1.147487] CPU2: Booted secondary processor
[    1.147571] CPU2: thread -1, cpu 2, socket 5, mpidr 80000502
[    1.167276] CPU3: Booted secondary processor
[    1.167358] CPU3: thread -1, cpu 3, socket 5, mpidr 80000503
[    1.167727] Brought up 4 CPUs
[    1.168017] SMP: Total of 4 processors activated (192.00 BogoMIPS).
[    1.168079] CPU: All CPU(s) started in SVC mode.
[    1.170328] devtmpfs: initialized
[    1.187932] pinctrl core: initialized pinctrl subsystem
[    1.188721] regulator-dummy: no parameters
[    1.190385] NET: Registered protocol family 16
[    1.195520] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    1.196676] ion_snapshot: 0x2e230000 map to 0xf0107000 and copy to 0xc0e7dc94 (version 0.1)
[    1.197270] Registered FIQ tty driver
[    1.200785] console [ttyFIQ0] enabled
[    1.201297] Registered fiq debugger ttyFIQ0
[    1.202979] rockchip_get_bank_data:name=base start=0xff750000,end=0xff7500ff
[    1.203108] rockchip_get_bank_data:name=mux_bank0 start=0xff730084,end=0xff73008f
[    1.203229] rockchip_get_bank_data:name=pull_bank0 start=0xff730064,end=0xff73006f
[    1.203348] rockchip_get_bank_data:name=drv_bank0 start=0xff730070,end=0xff73007b
[    1.203655] rockchip_get_bank_data:name=/pinctrl@ff770000/gpio1@ff780000 start=0xff780000,end=0xff7800ff
[    1.203944] rockchip_get_bank_data:name=/pinctrl@ff770000/gpio2@ff790000 start=0xff790000,end=0xff7900ff
[    1.204233] rockchip_get_bank_data:name=/pinctrl@ff770000/gpio3@ff7a0000 start=0xff7a0000,end=0xff7a00ff
[    1.204515] rockchip_get_bank_data:name=/pinctrl@ff770000/gpio4@ff7b0000 start=0xff7b0000,end=0xff7b00ff
[    1.204796] rockchip_get_bank_data:name=/pinctrl@ff770000/gpio5@ff7c0000 start=0xff7c0000,end=0xff7c00ff
[    1.205078] rockchip_get_bank_data:name=/pinctrl@ff770000/gpio6@ff7d0000 start=0xff7d0000,end=0xff7d00ff
[    1.205362] rockchip_get_bank_data:name=/pinctrl@ff770000/gpio7@ff7e0000 start=0xff7e0000,end=0xff7e00ff
[    1.205649] rockchip_get_bank_data:name=/pinctrl@ff770000/gpio8@ff7f0000 start=0xff7f0000,end=0xff7f00ff
[    1.205961] rockchip_get_bank_data:name=/pinctrl@ff770000/gpio15@ff7f2000 start=0xff7f2000,end=0xff7f20ff
[    1.206259] rockchip_pinctrl_probe:name=RK3288-GPIO,type=3
[    1.206348] rockchip_pinctrl_probe:name=base start=0xff770000,end=0xff77013f
[    1.206438] rockchip_pinctrl_probe:name=pull start=0xff770140,end=0xff7701bf
[    1.206526] rockchip_pinctrl_probe:name=drv start=0xff7701c0,end=0xff77023f
[    1.208377] rockchip_interrupts_register:bank_num=7
[    1.214938] of_get_gpio_init_config:gpio[0] = 256, value = 0
[    1.215062] of_get_gpio_init_config:gpio[1] = 233, value = 0
[    1.215175] of_get_gpio_init_config:gpio[2] = 136, value = 0
[    1.215380] rockchip_pinctrl_probe:init ok
[    1.235471] rk_iommu ff900800.iep_mmu: (iep) Enter
[    1.235852] IOVMM: Created 0x3ffff000 B IOVMM from 0x10000000.
[    1.235942] rk_iommu ff900800.iep_mmu: (iep) Initialized
[    1.236573] rk_iommu ff950800.vip_mmu: (vip) Enter
[    1.236931] IOVMM: Created 0x3ffff000 B IOVMM from 0x10000000.
[    1.237018] rk_iommu ff950800.vip_mmu: (vip) Initialized
[    1.237615] rk_iommu ff930300.vopb_mmu: (vopb) Enter
[    1.237970] IOVMM: Created 0x3ffff000 B IOVMM from 0x10000000.
[    1.238058] rk_iommu ff930300.vopb_mmu: (vopb) Initialized
[    1.238641] rk_iommu ff940300.vopl_mmu: (vopl) Enter
[    1.238997] IOVMM: Created 0x3ffff000 B IOVMM from 0x10000000.
[    1.239082] rk_iommu ff940300.vopl_mmu: (vopl) Initialized
[    1.239682] rk_iommu ff9c0440.hevc_mmu: (hevc) Enter
[    1.240110] IOVMM: Created 0x3ffff000 B IOVMM from 0x10000000.
[    1.240198] rk_iommu ff9c0440.hevc_mmu: (hevc) Initialized
[    1.240785] rk_iommu ff9a0800.vpu_mmu: (vpu) Enter
[    1.241140] IOVMM: Created 0x3ffff000 B IOVMM from 0x10000000.
[    1.241227] rk_iommu ff9a0800.vpu_mmu: (vpu) Initialized
[    1.241874] rk_iommu ff914000.isp_mmu: (isp_mmu) Enter
[    1.242303] IOVMM: Created 0x3ffff000 B IOVMM from 0x10000000.
[    1.242392] rk_iommu ff914000.isp_mmu: (isp_mmu) Initialized
[    1.248167] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
[    1.248277] hw-breakpoint: maximum watchpoint size is 4 bytes.
[    1.248932] DDR DEBUG: version 1.00 20140603
[    1.249043] DDR DEBUG: Channel a:
[    1.249104] DDR DEBUG: DDR3 Device
[    1.249176] DDR DEBUG: Bus Width=32 Col=10 Bank=8 Row=15 CS=2 Total Capability=2048MB
[    1.249266] DDR DEBUG: Channel b:
[    1.249321] DDR DEBUG: DDR3 Device
[    1.249389] DDR DEBUG: Bus Width=32 Col=10 Bank=8 Row=15 CS=2 Total Capability=2048MB
[    1.249477] DDR DEBUG: addr=0xd8b000
[    1.249539] DDR DEBUG: stride=13, size=256, halfcap=80000000
[    1.249609] DDR DEBUG: socAddr[0]=0xd8b000, socAddr[1]=0xd8b100
[    1.249681] DDR DEBUG: chAddr[0]=0xd8b000, chAddr[1]=0xd8b000
[    1.249757] DDR DEBUG: dtar[0]=0x301b1000, dtar[1]=0x301b1000
[    1.249948] DDR DEBUG: init success!!! freq=200MHz
[    1.250013] DDR DEBUG: Channel a:
[    1.250083] DDR DEBUG: DTONE=0x3, DTERR=0x0, DTIERR=0x0, DTPASS=4,4, DGSL=1,1 extra clock, DGPS=180,180
[    1.250195] DDR DEBUG: DTONE=0x3, DTERR=0x0, DTIERR=0x0, DTPASS=4,4, DGSL=1,1 extra clock, DGPS=180,180
[    1.250305] DDR DEBUG: DTONE=0x3, DTERR=0x0, DTIERR=0x0, DTPASS=4,4, DGSL=1,1 extra clock, DGPS=180,180
[    1.250414] DDR DEBUG: DTONE=0x3, DTERR=0x0, DTIERR=0x0, DTPASS=4,4, DGSL=1,1 extra clock, DGPS=180,180
[    1.250519] DDR DEBUG: ZERR=0, ZDONE=0, ZPD=0x0, ZPU=0x0, OPD=0x0, OPU=0x0
[    1.250597] DDR DEBUG: DRV Pull-Up=0x19, DRV Pull-Dwn=0x19
[    1.250665] DDR DEBUG: ODT Pull-Up=0x2, ODT Pull-Dwn=0x2
[    1.250728] DDR DEBUG: Channel b:
[    1.250795] DDR DEBUG: DTONE=0x3, DTERR=0x0, DTIERR=0x0, DTPASS=4,4, DGSL=1,1 extra clock, DGPS=180,180
[    1.250904] DDR DEBUG: DTONE=0x3, DTERR=0x0, DTIERR=0x0, DTPASS=4,4, DGSL=1,1 extra clock, DGPS=180,180
[    1.251013] DDR DEBUG: DTONE=0x3, DTERR=0x0, DTIERR=0x0, DTPASS=4,4, DGSL=1,1 extra clock, DGPS=180,180
[    1.251122] DDR DEBUG: DTONE=0x3, DTERR=0x0, DTIERR=0x0, DTPASS=4,4, DGSL=1,1 extra clock, DGPS=180,180
[    1.251225] DDR DEBUG: ZERR=0, ZDONE=0, ZPD=0x0, ZPU=0x0, OPD=0x0, OPU=0x0
[    1.251301] DDR DEBUG: DRV Pull-Up=0x19, DRV Pull-Dwn=0x19
[    1.251368] DDR DEBUG: ODT Pull-Up=0x2, ODT Pull-Dwn=0x2
[    1.330169] bio: create slab <bio-0> at 0
[    1.332097] Enter firefly_noatx8_init
[    1.332594] firefly_noatx8_probe 51
[    1.333361] SCSI subsystem initialized
[    1.333898] usbcore: registered new interface driver usbfs
[    1.334089] usbcore: registered new interface driver hub
[    1.334399] usbcore: registered new device driver usb
[    1.337498] rockchip_i2c ff650000.i2c: i2c-0: Rockchip I2C adapter
[    1.341909] rockchip_i2c ff140000.i2c: i2c-1: Rockchip I2C adapter
[    1.343452] rockchip_i2c ff660000.i2c: i2c-2: Rockchip I2C adapter
[    1.345076] rockchip_i2c ff150000.i2c: i2c-3: Rockchip I2C adapter
[    1.345945] rockchip_i2c ff160000.i2c: i2c-4: Rockchip I2C adapter
[    1.348871] media: Linux media interface: v0.10
[    1.349044] Linux video capture interface: v2.00
[    1.349234] pps_core: LinuxPPS API ver. 1 registered
[    1.349307] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.349441] PTP clock support registered
[    1.349911] rockchip_temp_probe,line=362
[    1.350727] tsadc ff280000.tsadc: initialized
[    1.352022] rockchip_ion_parse_dt: num_heaps = 1
[    1.352113] 0:  0  3  vmalloc  0x  (null)
[    1.352894] Rockchip ion module is successfully loaded (v1.0)
[    1.353466] Advanced Linux Sound Architecture Driver Initialized.
[    1.354695] Bluetooth: Core ver 2.16
[    1.354955] NET: Registered protocol family 31
[    1.355031] Bluetooth: HCI device and connection manager initialized
[    1.355127] Bluetooth: HCI socket layer initialized
[    1.355208] Bluetooth: L2CAP socket layer initialized
[    1.355334] Bluetooth: SCO socket layer initialized
[    1.356054] cfg80211: Calling CRDA to update world regulatory domain
[    1.358450] act8846_i2c_probe,line=898
[    1.359858] act8846_parse_dt,line=746
[    1.361389] act8846_i2c_probe: act8846_pmic_hold=1
[    1.361489] act8846_i2c_probe: act8846_pmic_sleep=1
[    1.361578] act8846_i2c_probe: act8846_pmic_cpu_det_gpio=1
[    1.361668] act8846_i2c_probe: act8846_pmic_usb_hub_reset_gpio=1
[    1.364333] act_dcdc1: 1200 mV
[    1.368040] vccio: 3300 mV
[    1.370656] vdd_logic: 700 <--> 1500 mV at 1100 mV
[    1.374441] act_dcdc4: 2000 mV
[    1.376402] vccio_sd: 1800 <--> 3300 mV at 3300 mV
[    1.379307] act_ldo2: 1050 mV
[    1.382179] act_ldo3: 1800 mV
[    1.385141] act_ldo4: 3300 mV
[    1.388021] act_ldo5: 3300 mV
[    1.390946] act_ldo6: 1100 mV
[    1.393831] vcc_18: 1800 mV
[    1.396756] act_ldo8: 1850 mV
[    1.403258] vdd_arm: 712 <--> 1500 mV at 1000 mV
[    1.409679] vdd_gpu: 712 <--> 1500 mV at 1000 mV
[    1.410667] rk808_i2c_probe,line=1368
[    1.412354] The device is not rk808 -11
[    1.412642] rk808: probe of 0-001b failed with error -11
[    1.416974] Switching to clocksource arch_sys_counter
[    1.437568] usb_battery_charger_detect_synop , battery_charger_detect 1, pass DCD, dcd_state = 1
[    1.482711] rk-fb rockchip-fb: rk fb ion client create success!
[    1.482822] rk-fb rockchip-fb: rockchip framebuffer driver probe
[    1.483964] rk-screen rk_screen.9: rockchip screen probe success
[    1.484789] rk32-lvds rk32-lvds: rk32 lvds driver probe success
[    1.485516] rk32-edp ff970000.edp: screen is not edp!
[    1.485620] rk32-edp: probe of ff970000.edp failed with error -22
[    1.486861] rk3288-lcdc lcdc0: can't find power_ctr node for lcdc0
[    1.487665] graphics fb0: rockchip framebuffer registerd:fb0
[    1.488758] graphics fb1: rockchip framebuffer registerd:fb1
[    1.489360] graphics fb2: rockchip framebuffer registerd:fb2
[    1.489968] graphics fb3: rockchip framebuffer registerd:fb3
[    1.490568] graphics fb4: rockchip framebuffer registerd:fb4
[    1.492264] rk_iommu ff930300.vopb_mmu: (vopb) Enabled
[    1.492726] rk3288-lcdc lcdc0: lcdc0: dclk:148500000>>fps:60
[    1.492830] rk3288-lcdc lcdc0: wakeup from standby!
[    1.627470] alloc_buffer:ion_phy_addr=0x10000000
[    1.670847] fb0:phy:10000000>>vir:f0191000>>len:0x1800000
[    1.787273] rk3288-lcdc lcdc0: lcdc0 probe ok, iommu enabled
[    1.788465] rockchip_set_mux:warning ignore bank num 15
[    1.788979] rockchip_set_mux:warning ignore bank num 15
[    1.789408] rockchip_set_mux:warning ignore bank num 15
[    1.789862] rockchip_set_mux:warning ignore bank num 15
[    1.790288] rockchip_set_mux:warning ignore bank num 15
[    1.790709] rockchip_set_mux:warning ignore bank num 15
[    1.791636] rockchip_set_mux:warning ignore bank num 15
[    1.792168] rockchip_set_mux:warning ignore bank num 15
[    1.793027] rockchip_set_mux:warning ignore bank num 15
[    1.793551] rockchip_set_mux:warning ignore bank num 15
[    1.794432] rockchip_set_mux:warning ignore bank num 15
[    1.794987] rockchip_set_mux:warning ignore bank num 15
[    1.795823] rockchip_set_mux:warning ignore bank num 15
[    1.796355] rockchip_set_mux:warning ignore bank num 15
[    1.820080] NET: Registered protocol family 2
[    1.821674] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[    1.822212] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    1.822747] TCP: Hash tables configured (established 8192 bind 8192)
[    1.822942] TCP: reno registered
[    1.823020] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    1.823183] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    1.823866] NET: Registered protocol family 1
[    1.824494] Unpacking initramfs...
[    2.328864] Freeing initrd memory: 2516K (c4bf0000 - c4e65000)
[    2.330578] hw perfevents: enabled with ARMv7 Cortex-A12 PMU driver, 7 counters available
[    2.332064] probe device ff9a0000.vpu_service
[    2.332658] vpu_service: power on
[    2.333845] checking hw id 4831
[    2.334906] vpu_service set to auto frequency mode
[    2.335107] vcodec vpu_service: vcodec ion client create success!
[    2.336236] rk_iommu ff9a0800.vpu_mmu: (vpu) Enabled
[    2.336374] rk_iommu ff9a0800.vpu_mmu: (vpu) Disabled
[    2.336457] rk_iommu ff9a0800.vpu_mmu: rockchip_iommu_detach_device: Detached IOMMU with pgtable 0x2e27f000
[    2.336558] vpu_service: power off...
[    2.336657] done
[    2.336713] init success
[    2.336902] probe device ff9c0000.hevc_service
[    2.337561] hevc_service: power on
[    2.338707] checking hw id 6867
[    2.339556] vcodec hevc_service: vcodec ion client create success!
[    2.340485] rk_iommu ff9c0440.hevc_mmu: (hevc) Enabled
[    2.340621] rk_iommu ff9c0440.hevc_mmu: (hevc) Disabled
[    2.340702] rk_iommu ff9c0440.hevc_mmu: rockchip_iommu_detach_device: Detached IOMMU with pgtable 0x2e27d000
[    2.340803] hevc_service: power off...
[    2.340903] done
[    2.340959] init success
[    2.341336] rknandbase v1.0 2014-03-31
[    2.341979] rknand_probe clk rate = 148500000
[    2.342471] rknand_driver:ret = 0
[    2.343608] audit: initializing netlink socket (disabled)
[    2.343757] type=2000 audit(1.320:1): initialized
[    2.346500] bounce pool size: 64 pages
[    2.362191] fuse init (API version 7.22)
[    2.363496] msgmni has been set to 1424
[    2.369776] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    2.369890] io scheduler noop registered
[    2.369954] io scheduler deadline registered
[    2.370306] io scheduler cfq registered (default)
[    2.371831] Console: switching to colour frame buffer device 240x67
[    2.420921] rga ff920000.rga: rga ion client create success!
[    2.421572] rga: Driver loaded succesfully
[    2.423194] IEP Power ON
[    2.423431] iep ion client create success!
[    2.424588] rk_iommu ff900800.iep_mmu: (iep) Enabled
[    2.424882] IEP Power OFF
[    2.425039] rk_iommu ff900800.iep_mmu: (iep) Disabled
[    2.425292] rk_iommu ff900800.iep_mmu: rockchip_iommu_detach_device: Detached IOMMU with pgtable 0x2e273000
[    2.425726] IEP Driver loaded succesfully
[    2.426195] Module initialized.
[    2.428829] dma-pl330 ffb20000.pdma: Loaded driver for PL330 DMAC-2364208
[    2.429180] dma-pl330 ffb20000.pdma:         DBUFF-64x8bytes Num_Chans-5 Num_Peri-6 Num_Events-10
[    2.433889] dma-pl330 ff250000.pdma: Loaded driver for PL330 DMAC-2364208
[    2.434239] dma-pl330 ff250000.pdma:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-20 Num_Events-16
[    2.435313] pwm-voltage-regulator pwm_regulator.23: unable to request PWM, trying legacy API
[    2.435716] pwm-voltage-regulator pwm_regulator.23: unable to request legacy PWM
[    2.436052] pwm_regulator_probe:error
[    2.436277] platform pwm_regulator.23: Driver pwm-voltage-regulator requests probe deferral
[    2.437697] rk_serial.c v1.8 2014-03-04
[    2.438501] ff180000.serial: ttyS0 at MMIO 0xff180000 (irq = 87) is a rk29_serial.0
[    2.439441] serial ff180000.serial: membase 0xf0172000
[    2.449440] loop: module loaded
[    2.451515] SCSI Media Changer driver v0.25
[    2.452720] tun: Universal TUN/TAP device driver, 1.6
[    2.452982] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    2.454876] stmmac_probe_config_dt: Can not read property: pmu_regulator.
[    2.455210] stmmac_probe_config_dt: Can not read property: pmu_enable_level.
[    2.455535] stmmac_probe_config_dt: clock input or output? (input).
[    2.455824] stmmac_probe_config_dt: TX delay(0x30).
[    2.456058] stmmac_probe_config_dt: RX delay(0x10).
[    2.456373] stmmac_probe_config_dt: is rockchip,rk3288-gmac
[    2.456633] stmmc_pltfr_init:
[    2.456811] stmmc_pltfr_init: ERROR: Get power-gpio failed.
[    2.457105] stmmc_pltfr_init: ERROR: Request gmac phy reset pin failed.
[    2.457399] stmmc_pltfr_init: init for RGMII
[    2.457608] tx delay=0x30
[    2.457608] rx delay=0x10
[    2.469334] stmmac - user ID: 0x10, Synopsys ID: 0x35
[    2.479553]  Normal descriptors
[    2.489774]  Ring mode enabled
[    2.499904]  DMA HW capability register supported
[    2.500140]  RX Checksum Offload Engine supported (type 2)
[    2.520420]  TX Checksum insertion supported
[    2.530666]  Wake-Up On Lan supported
[    2.541037]  Enable RX Mitigation via HW Watchdog Timer
[    2.552619] PPP generic driver version 2.4.2
[    2.563363] PPP BSD Compression module registered
[    2.573755] PPP Deflate Compression module registered
[    2.584140] PPP MPPE Compression module registered
[    2.594372] NET: Registered protocol family 24
[    2.604655] SLIP: version 0.8.4-NET3.019-NEWTTY (dynamic channels, max=256) (6 bit encapsulation enabled).
[    2.615287] CSLIP: code copyright 1989 Regents of the University of California.
[    2.626070] Rockchip WiFi SYS interface (V1.00) ...
[    2.637106] usbcore: registered new interface driver catc
[    2.648110] usbcore: registered new interface driver kaweth
[    2.658955] pegasus: v0.9.3 (2013/04/25), Pegasus/Pegasus II USB Ethernet driver
[    2.670027] usbcore: registered new interface driver pegasus
[    2.681109] usbcore: registered new interface driver rtl8150
[    2.692109] usbcore: registered new interface driver r8152
[    2.702917] hso: drivers/net/usb/hso.c: Option Wireless
[    2.713948] usbcore: registered new interface driver hso
[    2.725038] usbcore: registered new interface driver asix
[    2.735786] usbcore: registered new interface driver ax88179_178a
[    2.746490] usbcore: registered new interface driver cdc_ether
[    2.757175] usbcore: registered new interface driver cdc_eem
[    2.767754] usbcore: registered new interface driver dm9601
[    2.778203] usbcore: registered new interface driver dm9620
[    2.788541] usbcore: registered new interface driver smsc75xx
[    2.798766] usbcore: registered new interface driver smsc95xx
[    2.808887] usbcore: registered new interface driver gl620a
[    2.818945] usbcore: registered new interface driver net1080
[    2.828916] usbcore: registered new interface driver plusb
[    2.838779] usbcore: registered new interface driver rndis_host
[    2.848568] usbcore: registered new interface driver cdc_subset
[    2.858205] usbcore: registered new interface driver zaurus
[    2.867591] usbcore: registered new interface driver MOSCHIP usb-ethernet driver
[    2.877078] usbcore: registered new interface driver int51x1
[    2.886384] usbcore: registered new interface driver kalmia
[    2.895540] usbcore: registered new interface driver ipheth
[    2.904556] usbcore: registered new interface driver sierra_net
[    2.913456] usbcore: registered new interface driver cx82310_eth
[    2.922151] usbcore: registered new interface driver cdc_ncm
[    2.930810] usbcore: registered new interface driver qmi_wwan
[    2.939319] usbcore: registered new interface driver cdc_mbim
[    2.947517] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.958946] ehci_rk_probe f1a00000 f1a00010
[    2.967034] rockchip_ehci_host ff500000.usb: Rockchip On-Chip EHCI Host Controller
[    2.975275] rockchip_ehci_host ff500000.usb: new USB bus registered, assigned bus number 1
[    2.984458] rockchip_ehci_host ff500000.usb: irq 56, io mem 0xff500000
[    3.011315] rockchip_ehci_host ff500000.usb: USB 0.0 started, EHCI 1.00
[    3.019784] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.028120] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.036400] usb usb1: Product: Rockchip On-Chip EHCI Host Controller
[    3.044772] usb usb1: Manufacturer: Linux 3.10.0 ehci_hcd
[    3.053020] usb usb1: SerialNumber: ff500000.usb
[    3.062552] hub 1-0:1.0: USB hub found
[    3.071004] hub 1-0:1.0: 1 port detected
[    3.099856] ehci_rk_probe ok
[    3.108542] usbcore: registered new interface driver cdc_acm
[    3.116928] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    3.125663] usbcore: registered new interface driver usblp
[    3.134368] usbcore: registered new interface driver cdc_wdm
[    3.143112] usbcore: registered new interface driver usb-storage
[    3.151902] usbcore: registered new interface driver ums-alauda
[    3.160497] usbcore: registered new interface driver ums-cypress
[    3.169121] usbcore: registered new interface driver ums-datafab
[    3.177551] usbcore: registered new interface driver ums_eneub6250
[    3.185942] usbcore: registered new interface driver ums-freecom
[    3.194250] usbcore: registered new interface driver ums-isd200
[    3.202480] usbcore: registered new interface driver ums-jumpshot
[    3.210650] usbcore: registered new interface driver ums-karma
[    3.218727] usbcore: registered new interface driver ums-onetouch
[    3.226654] usbcore: registered new interface driver ums-sddr09
[    3.234537] usbcore: registered new interface driver ums-sddr55
[    3.242323] usbcore: registered new interface driver ums-usbat
[    3.250163] usbcore: registered new interface driver usbserial
[    3.257777] usbcore: registered new interface driver usbserial_generic
[    3.265104] usbserial: USB Serial support registered for generic
[    3.272363] usbcore: registered new interface driver ftdi_sio
[    3.279534] usbserial: USB Serial support registered for FTDI USB Serial Device
[    3.286895] usbcore: registered new interface driver option
[    3.294222] usbserial: USB Serial support registered for GSM modem (1-port)
[    3.301745] usbcore: registered new interface driver trancevibrator
[    3.309017] usb20_otg: version 3.10a 21-DEC-2012
[    3.317358] f1a80040
[    3.324684] Core Release: 3.10a
[    3.331986] Setting default values for core params
[    3.339728] Using Buffer DMA mode
[    3.347166] Periodic Transfer Interrupt Enhancement - disabled
[    3.347189] Multiprocessor Interrupt Enhancement - disabled
[    3.347225] OTG VER PARAM: 0, OTG VER FLAG: 0
[    3.347242] ^^^^^^^^^^^^^^^^^Device Mode
[    3.347271] Dedicated Tx FIFOs mode
[    3.347310] pcd_init otg_dev = ed982800
[    3.347774] usb20_otg ff580000.usb: DWC OTG Controller
[    3.347848] usb20_otg ff580000.usb: new USB bus registered, assigned bus number 2
[    3.347927] usb20_otg ff580000.usb: irq 55, io mem 0x00000000
[    3.348090] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.348128] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.348157] usb usb2: Product: DWC OTG Controller
[    3.348184] usb usb2: Manufacturer: Linux 3.10.0 dwc_otg_hcd
[    3.348211] usb usb2: SerialNumber: ff580000.usb
[    3.349511] hub 2-0:1.0: USB hub found
[    3.349567] hub 2-0:1.0: 1 port detected
[    3.350472] usb20_host: version 3.10a 21-DEC-2012
[    3.353935] f1b00040
[    3.353964] Core Release: 3.10a
[    3.354000] Setting default values for core params
[    3.354424] Using Buffer DMA mode
[    3.354447] Periodic Transfer Interrupt Enhancement - disabled
[    3.354465] Multiprocessor Interrupt Enhancement - disabled
[    3.354486] OTG VER PARAM: 0, OTG VER FLAG: 0
[    3.354503] ^^^^^^^^^^^^^^^^^^Host Mode
[    3.354565] usb20_host ff540000.usb: DWC OTG Controller
[    3.354633] usb20_host ff540000.usb: new USB bus registered, assigned bus number 3
[    3.354710] usb20_host ff540000.usb: irq 57, io mem 0x00000000
[    3.354852] Init: Power Port (0)
[    3.355020] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    3.355058] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.355085] usb usb3: Product: DWC OTG Controller
[    3.355112] usb usb3: Manufacturer: Linux 3.10.0 dwc_otg_hcd
[    3.355139] usb usb3: SerialNumber: ff540000.usb
[    3.356556] hub 3-0:1.0: USB hub found
[    3.356611] hub 3-0:1.0: 1 port detected
[    3.358241] .. rk pwm remotectl v1.0 init
[    3.358473] remotectl probe j=0x0
[    3.358979] input: ff680000.pwm as /devices/ff680000.pwm/input/input0
[    3.359576] pwm enable val=0x646205
[    3.360485] usbcore: registered new interface driver xpad
[    3.360638] usbcore: registered new interface driver usb_acecad
[    3.360775] usbcore: registered new interface driver aiptek
[    3.360910] usbcore: registered new interface driver gtco
[    3.361046] usbcore: registered new interface driver hanwang
[    3.361180] usbcore: registered new interface driver kbtab
[    3.361346] usbcore: registered new interface driver wacom
[    3.362552] sensor_register_slave:mma8452,id=17
[    3.362579] sensor_register_slave:cm3217,id=44
[    3.362600] sensor_register_slave:cm3218,id=45
[    3.369043] rtc_hym8563 0-0051: rtc core: registered hym8563 as rtc0
[    3.369182] i2c /dev entries driver
[    3.371315] IR NEC protocol handler initialized
[    3.371338] IR RC5(x) protocol handler initialized
[    3.371356] IR RC6 protocol handler initialized
[    3.371372] IR JVC protocol handler initialized
[    3.371389] IR Sony protocol handler initialized
[    3.371406] IR RC5 (streamzap) protocol handler initialized
[    3.371422] IR SANYO protocol handler initialized
[    3.371440] IR MCE Keyboard/mouse protocol handler initialized
[    3.371676] usbcore: registered new interface driver uvcvideo
[    3.371694] USB Video Class driver (1.1.1)
[    3.371722] CamSys driver version: v0.19.0,  CamSys head file version: v0.8.0
[    3.374934] D1:camsys_platform_probe(1061): 1-gpios-cifpower: gpio=236
[    3.374984] D1:camsys_platform_probe(1064): gpios-cifpower: gpio_request
[    3.375025] D1:camsys_platform_probe(1066): 1-gpios-cifpower: gpio_request=0
[    3.375067] D1:camsys_platform_probe(1075): gpios-cifpower: 236 high
[    3.375255] D1:camsys_mipiphy_probe_cb(163): ff910000.isp mipi phy0 probe success(reg_phy: 0x0  reg_vir: 0x0  size: 0x0)
[    3.375787] D1:camsys_mipiphy_probe_cb(160): ff910000.isp mipi phy1 probe success(reg_phy: 0xff968000  reg_vir: 0xf19b0000  size: 0x4000)
[    3.377841] D1:camsys_platform_probe(1208): ff910000.isp memory:
[    3.377877] D1:camsys_platform_probe(1218):     Register memory (phy: 0xff910000 vir: 0xf19e0000 size: 0x10000)
[    3.377907] D1:camsys_platform_probe(1213):     I2c memory (phy: 0x2da4f000 vir: 0xeda4f000 size: 0x1000)
[    3.377932] D1:camsys_platform_probe(1233): Probe ff910000.isp device success
[    3.380855] device-mapper: uevent: version 1.0.3
[    3.381578] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com
[    3.382459] Bluetooth: HCI UART driver ver 2.2
[    3.382487] Bluetooth: HCI H4 protocol initialized
[    3.382507] Bluetooth: HCILL protocol initialized
[    4.173944] cpufreq version 1.0, suspend freq 1200 MHz
[    4.184642] cpuidle: using governor ladder
[    4.194661] cpuidle: using governor menu
[    4.204729] Synopsys Designware Multimedia Card Interface Driver
[    4.208794] dwmmc_rockchip ff0f0000.rksdmmc: Version ID is 270a
[    4.212858] dwmmc_rockchip ff0f0000.rksdmmc: Using internal DMA controller.
[    4.216774] 3230..dw_mci_init_slot: fmin=400000, fmax=100000000 [mmc0]
[    4.220523] Line3235..dw_mci_init_slot: The rk_sdmmc Ver 1.12 2014-07-08
[    4.224516] 1357..dw_mci_set_ios:  no card. [mmc0]
[    4.241238] 1357..dw_mci_set_ios:  no card. [mmc0]
[    4.260938] rk_sdmmc: BOOT dw_mci_setup_bus: argue clk_mmc workaround out 800000Hz for init[mmc0]
[    4.260948] dwmmc_rockchip ff0f0000.rksdmmc: DW MMC controller at irq 67, 32 bit host data width, 256 deep fifo
[    4.260957] dwmmc_rockchip ff0f0000.rksdmmc: 1 slots initialized
[    4.261184] dwmmc_rockchip ff0c0000.rksdmmc: Version ID is 270a
[    4.270868] dwmmc_rockchip ff0c0000.rksdmmc: Using internal DMA controller.
[    4.273467] 3224..dw_mci_init_slot: fmin=300000, fmax=50000000 [mmc1]
[    4.276407] 1357..dw_mci_set_ios:  no card. [mmc1]
[    4.290423] 1357..dw_mci_set_ios:  no card. [mmc1]
[    4.310232] dwmmc_rockchip ff0c0000.rksdmmc: DW MMC controller at irq 64, 32 bit host data width, 256 deep fifo
[    4.312707] dwmmc_rockchip ff0c0000.rksdmmc: 1 slots initialized
[    4.315160] mmc0: BKOPS_EN bit is not set
[    4.315429] dwmmc_rockchip ff0d0000.rksdmmc: Version ID is 270a
[    4.320146] dwmmc_rockchip ff0d0000.rksdmmc: Using internal DMA controller.
[    4.322747] 3230..dw_mci_init_slot: fmin=200000, fmax=50000000 [mmc2]
[    4.325300] 1357..dw_mci_set_ios:  no card. [mmc2]
[    4.328741] rk_sdmmc: BOOT Bus speed=0Hz,Bus width=8bits.[mmc0]
[    4.333546] mmc_host mmc0: Bus speed (slot 0) = 100000000Hz (slot req 100000000Hz, actual 100000000HZ div = 0)
[    4.336117] rk_sdmmc: BOOT dw_mci_setup_bus: argue clk_mmc workaround out normal clock [mmc0]
[    4.339628] 1357..dw_mci_set_ios:  no card. [mmc2]
[    4.353687] rk_sdmmc: BOOT
[    4.353687]  execute tuning: candidates_degree = SDMMC_SHIFT_DEGREE_0        SDMMC_SHIFT_DEGREE_90   SDMMC_SHIFT_DEGREE_180  SDMMC_SHIFT_DEGREE_INVALID[mmc0]
[    4.359039] mmc0: new HS200 MMC card at address 0001
[    4.359526] dwmmc_rockchip ff0d0000.rksdmmc: DW MMC controller at irq 65, 32 bit host data width, 256 deep fifo
[    4.359533] dwmmc_rockchip ff0d0000.rksdmmc: 1 slots initialized
[    4.359758] leds-gpio leds.31: pins are not configured from the driver
[    4.360000] hidraw: raw HID events driver (C) Jiri Kosina
[    4.361552] usbcore: registered new interface driver usbhid
[    4.361557] usbhid: USB HID core driver
[    4.361886] ashmem: initialized
[    4.362016] logger: created 256K log 'log_main'
[    4.362123] logger: created 256K log 'log_events'
[    4.362231] logger: created 256K log 'log_radio'
[    4.362350] logger: created 256K log 'log_system'
[    4.363378] input: rk29-keypad as /devices/ff100000.adc/key.34/input/input1
[    4.363984] rockchip-pinctrl ff770000.pinctrl: pin gpio6-8 already requested by ; cannot claim for 2-0010
[    4.363994] rockchip-pinctrl ff770000.pinctrl: pin-200 (2-0010) status -22
[    4.364003] rockchip-pinctrl ff770000.pinctrl: could not request pin 200 on device rockchip-pinctrl
[    4.364011] ES8323 2-0010: Error applying setting, reverse things back
[    4.409671] es8323 probe i2c recv ok
[    4.409796] mmcblk0: mmc0:0001 BGND3R 29.1 GiB
[    4.410177]   resource: 0x000400000 -- 0x001400000 (16 MB)
[    4.410185]       boot: 0x001400000 -- 0x002400000 (16 MB)
[    4.410192]       misc: 0x002400000 -- 0x002800000 (4 MB)
[    4.410198]     backup: 0x002800000 -- 0x005c00000 (52 MB)
[    4.410204]  linuxroot: 0x005c00000 -- 0x747800000 (29724 MB)
[    4.411080]  mmcblk0: p1 p2 p3 p4 p51357..dw_mci_set_ios:  no card. [mmc1]
[    4.412073] 1357..dw_mci_set_ios:  no card. [mmc2]
[    4.431896] i2c-core: driver [ES8323] using legacy suspend method
[    4.434227] i2c-core: driver [ES8323] using legacy resume method
[    4.436883] rockchip-hdmi-spdif rockchip-hdmi-spdif.27: ASoC: CPU DAI (null) not registered
[    4.439227] rockchip_hdmi_spdif_audio_probe() register card failed:-517
[    4.441542] platform rockchip-hdmi-spdif.27: Driver rockchip-hdmi-spdif requests probe deferral
[    4.444081] es8323_probe
[    4.446507] es8323_probe:register ISR (irq=194)
[    5.088900] ES8323 2-0010: ASoC: no dapm match for LINPUT1 --> NULL --> Left Line Mux
[    5.110673] ES8323 2-0010: ASoC: Failed to add route LINPUT1 -> NULL -> Left Line Mux
[    5.123377] ES8323 2-0010: ASoC: no dapm match for LINPUT2 --> NULL --> Left Line Mux
[    5.135995] ES8323 2-0010: ASoC: Failed to add route LINPUT2 -> NULL -> Left Line Mux
[    5.140679] ES8323 2-0010: ASoC: no dapm match for Left PGA Mux --> NULL --> Left Line Mux
[    5.145320] ES8323 2-0010: ASoC: Failed to add route Left PGA Mux -> NULL -> Left Line Mux
[    5.149989] ES8323 2-0010: ASoC: no dapm match for RINPUT1 --> NULL --> Right Line Mux
[    5.154613] ES8323 2-0010: ASoC: Failed to add route RINPUT1 -> NULL -> Right Line Mux
[    5.159258] ES8323 2-0010: ASoC: no dapm match for RINPUT2 --> NULL --> Right Line Mux
[    5.163855] ES8323 2-0010: ASoC: Failed to add route RINPUT2 -> NULL -> Right Line Mux
[    5.168461] ES8323 2-0010: ASoC: no dapm match for Right PGA Mux --> NULL --> Right Line Mux
[    5.173049] ES8323 2-0010: ASoC: Failed to add route Right PGA Mux -> NULL -> Right Line Mux
[    5.177705] ES8323 2-0010: ASoC: no dapm match for LINPUT1 --> LAMP --> Left PGA Mux
[    5.182237] ES8323 2-0010: ASoC: Failed to add route LINPUT1 -> LAMP -> Left PGA Mux
[    5.186749] ES8323 2-0010: ASoC: no dapm match for LINPUT2 --> LAMP --> Left PGA Mux
[    5.191251] ES8323 2-0010: ASoC: Failed to add route LINPUT2 -> LAMP -> Left PGA Mux
[    5.195794] ES8323 2-0010: ASoC: no dapm match for Differential Mux --> LAMP --> Left PGA Mux
[    5.200291] ES8323 2-0010: ASoC: Failed to add route Differential Mux -> LAMP -> Left PGA Mux
[    5.204784] ES8323 2-0010: ASoC: no dapm match for RINPUT1 --> RAMP --> Right PGA Mux
[    5.209298] ES8323 2-0010: ASoC: Failed to add route RINPUT1 -> RAMP -> Right PGA Mux
[    5.213831] ES8323 2-0010: ASoC: no dapm match for RINPUT2 --> RAMP --> Right PGA Mux
[    5.217204] ES8323 2-0010: ASoC: Failed to add route RINPUT2 -> RAMP -> Right PGA Mux
[    5.220521] ES8323 2-0010: ASoC: no dapm match for Differential Mux --> RAMP --> Right PGA Mux
[    5.223837] ES8323 2-0010: ASoC: Failed to add route Differential Mux -> RAMP -> Right PGA Mux
[    5.227173] ES8323 2-0010: ASoC: no dapm match for LINPUT1 --> LAMP --> Differential Mux
[    5.230560] ES8323 2-0010: ASoC: Failed to add route LINPUT1 -> LAMP -> Differential Mux
[    5.233925] ES8323 2-0010: ASoC: no dapm match for RINPUT1 --> RAMP --> Differential Mux
[    5.237289] ES8323 2-0010: ASoC: Failed to add route RINPUT1 -> RAMP -> Differential Mux
[    5.240627] ES8323 2-0010: ASoC: no dapm match for LINPUT2 --> LAMP --> Differential Mux
[    5.243924] ES8323 2-0010: ASoC: Failed to add route LINPUT2 -> LAMP -> Differential Mux
[    5.247205] ES8323 2-0010: ASoC: no dapm match for RINPUT2 --> RAMP --> Differential Mux
[    5.250423] ES8323 2-0010: ASoC: Failed to add route RINPUT2 -> RAMP -> Differential Mux
[    5.253655] ES8323 2-0010: ASoC: no dapm match for LINPUT1 --> LAMP --> Left Line Mux
[    5.256810] ES8323 2-0010: ASoC: Failed to add route LINPUT1 -> LAMP -> Left Line Mux
[    5.259359] ES8323 2-0010: ASoC: no dapm match for LINPUT2 --> LAMP --> Left Line Mux
[    5.261846] ES8323 2-0010: ASoC: Failed to add route LINPUT2 -> LAMP -> Left Line Mux
[    5.264315] ES8323 2-0010: ASoC: no dapm match for Left PGA Mux --> LAMP --> Left Line Mux
[    5.266807] ES8323 2-0010: ASoC: Failed to add route Left PGA Mux -> LAMP -> Left Line Mux
[    5.269270] ES8323 2-0010: ASoC: no dapm match for RINPUT1 --> RAMP --> Right Line Mux
[    5.271733] ES8323 2-0010: ASoC: Failed to add route RINPUT1 -> RAMP -> Right Line Mux
[    5.274189] ES8323 2-0010: ASoC: no dapm match for RINPUT2 --> RAMP --> Right Line Mux
[    5.276657] ES8323 2-0010: ASoC: Failed to add route RINPUT2 -> RAMP -> Right Line Mux
[    5.279131] ES8323 2-0010: ASoC: no dapm match for Right PGA Mux --> RAMP --> Right Line Mux
[    5.281636] ES8323 2-0010: ASoC: Failed to add route Right PGA Mux -> RAMP -> Right Line Mux
[    5.284423] ES8323 2-0010: ASoC: mux Right Line Mux has no paths
[    5.287001] ES8323 2-0010: ASoC: mux Left Line Mux has no paths
[    5.289515] ES8323 2-0010: ASoC: mux Right PGA Mux has no paths
[    5.291980] ES8323 2-0010: ASoC: mux Left PGA Mux has no paths
[    5.294453] ES8323 2-0010: ASoC: mux Differential Mux has no paths
[    5.299897] Enter::rk29_es8323_init----135
[    5.306448] rockchip-es8323 rockchip-es8323.29:  ES8323 HiFi <-> rockchip-i2s.0 mapping ok
[    5.309591] u32 classifier
[    5.312010]     Actions configured
[    5.314430] Netfilter messages via NETLINK v0.30.
[    5.316902] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    5.319740] ctnetlink v0.93: registering with nfnetlink.
[    5.322341] NF_TPROXY: Transparent proxy support initialized, version 4.1.0
[    5.324900] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.
[    5.327732] xt_time: kernel timezone is -0000
[    5.330482] ip_tables: (C) 2000-2006 Netfilter Core Team
[    5.333179] arp_tables: (C) 2002 David S. Miller
[    5.333463] dwc_otg_hcd_enable, enable host controller
[    5.337176] TCP: cubic registered
[    5.339115] Initializing XFRM netlink socket
[    5.341225] NET: Registered protocolLoaminy  p
as  w5it43.12] mip6: Mobile IPv6
[    5.345496] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    5.347438] sit: IPv6 over IPv4 tunneling driver
gin  L5.3ing05]seET:al drivers ... FATAL: Could not load /lib/modules/3.10.0/modules.dep: No such file or directory
egistered protocol family 15
[    5.353411] Bridge firAwaL: ngulegnot load /lib/modules/3.10.0/modules.dep: No such file or dieeetory
d
[    5.355249] Ebtables v2.0 registered
[    5.357240] Bluetooth: RFCOMM TTY layer initialized
[    5.359117] Bluetooth: RFCOMM socket layer initialized
[    5.3609FATAL: Could not  load /lib/moduleluetooths/:.1FC0/modulve. 1.1e
h: BNEP (Ethernet Emulation) ver 1.3
[    5.364622] Bluetooth: BNEP filters: protocol multicast
[    5.366460] Bluetooth: BNEP socket layer initialized
[    5.368283] BluetoothATHI:  (uld n t terd /l E/moatlen) .1r 0.2od[ es d.p: N7 such 1il] Bluetoorh:ireDP ry
et ldyee.
itialized
[    5.371939] l2tp_core: L2Teginre univeg /s2.ip
                                                 [ ini5.3re7o2]t ...tp_ppp: PPPoL2TP kernel driver, V2.0
[    5.375571] [WLAN_RFKILL]: Enter rfkill_wlan_init
[    5.377596] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[    5.379382] wlan_platdata_parse_dt: wifi_chip_type = bcmwifi
[    5.381182] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
[    5.382997] [WLAN_RFKILL]: wlan_platdata_parse_dt: disable wifi io reference voltage control.
[    5.384972] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[    5.386830] [WLAN_RFKILL]: wlan_platdata_parse_dt: get property: WIFI,poweren_gpio = 156, flags = 0.
[    5.388692] [WLAN_RFKILL]: wlan_platdane_
rse_dt: getgiro Mrtnt Wg Iooosfiwa s_ite =..58, flags = 0.
[  B g5.: 05nn] gWLsNriFKs/L]carftol ..lan_onobe
                                                 init gpio
[    5.392342] [WLAN_RFKIex]:
lo  l-5.em4un8]..WLAN_RFKILL]: Exit rfkill_wlan_pTAbe C[ ld 5ot 61ad] liT_moKulL]: /nt10 r/milulrk.dnp:
]: bluetooth_platdata_parse_dt: get propertne u
gpio = 155.0 n]  BTadFKliL]mobllet/3th0.lamoatl_p.rsp:dto gechprile oy:diT,ctwey
[    5.401968] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 157.
[    5.403893] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 154.
[    5.405762] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 159.
[    5.407677] [BT_RFKILL]: Request irq for bt wakeup host
[    5.409634] [BT_RFKILL]: ** disable irq
[    5.411567] [BT_RFKILL]: ap6335 device registered.
[    5.414110] rk3288-hdmi ff980000.hdmi: rk3288 hdmi probe sucess.
[    5.416332] VFP support v0.3: implementor 41 architecture 3 part 30 variant d rev 0
[    5.418254] rk3288_init_suspend
[    5.420143] rk3288_suspend_init enter
[    5.422164] rk3288_suspend_init: pm_ctrbits =40017
[    5.424048] gpio_get_dts_info suspend:8
[    5.425915] gpio_get_dts_info resume:8
[    5.427757] rockchip,pmic-suspend_gpios:1007c30 1007c40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
[    5.429727] rockchip,pmic-resume_gpios:2007c32 2007c42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
[    5.431798] clks_gating_suspend_init:clkgt info ok
[    5.433750] Registering SWP/SWPB emulation handler
[    5.436029] ddrfreq: verion 1.2 20140526
[    5.437933] ddrfreq: normal 456MHz video_1080p 0MHz video_4k 456MHz dualview 0MHz idle 0MHz suspend 200MHz reboot 456MHz
[    5.439968] ddrfreq: auto-freq=0
[    5.441985] ddrfreq: auto-freq-table[0] 240MHz
[    5.443933] ddrfreq: auto-freq-table[1] 324MHz
[    5.445823] ddrfreq: auto-freq-table[2] 456MHz
[    5.446632] Using Buffer DMA mode
[    5.446637] Periodic Transfer Interrupt Enhancement - disabled
[    5.446640] Multiprocessor Interrupt Enhancement - disabled
[    5.446646] OTG VER PARAM: 0, OTG VER FLAG: 0
[    5.446650] ^^^^^^^^^^^^^^^^^^Host Mode
[    5.457177] ddrfreq: auto-freq-table[3] 528MHz
[    5.461156] act_ldo3: operation not allowed
[    5.462758] vga_edid_probe: turn on ldo3 done.
[    5.464134] act_ldo4: operation not allowed
[    5.465713] vga_edid_probe: turn on ldo done.
[    5.467090] act_ldo2: operation not allowed
[    5.468671] vga_edid_probe: turn on ldo2 done.
[    5.470029] act_ldo8: operation not allowed
[    5.471611] vga_edid_probe: turn on ldo done.
[    5.490972] Init: Power Port (0)
[    5.498032] vga-ddc: read and parse vga edid success.
[    5.499380] vga-ddc: max mode 1920x1080@60[pixclock-148500 KHZ]
[    5.500769] vga-ddc: best mode 1920x1080@60[pixclock-6 KHZ]
[    5.502211] vga_edid_probe: success. 10
[    5.503674] firefly_vga_get_enable 180, 0
[    5.505049] firefly_vga_get_status 186
[  gi5. R64ni]  /seriy_s/a_cat_boablm 15. enable:1
[   ne.
ri  s/5.it78ot]ore..lator-dummy: disabling
[    5.508114] rockchip-hdmi-spdif rockchip-hdmi-spdif.27: ASoC: CPU DAI (null) not registered
[    5.508133] rockchip_hdmi_spdif_audio_probe() register card failed:-517
[    5.508142] platform rockchip-hdmi-spdif.27: Driver rockchip-hdmi-spdif requests probe deferral
[    5.508216] pcd_pullup, is_on 0
[    5.508248] file system registered
[    5.508736] android_usb gadget: Mass Storage Function, version: 2009/09/11
[    5.508740] android_usb gadget: Number of LUNs=2
[    5.508745]  lun0: LUN: removable file: (no medium)
[    5.508748]  lun1: LUN: removable file: (no medium)
[    5.508862] android_usb gadget: android_usb ready
[    5.508927] sensor_init: Probe namedoen.ors
[    5.508939] sensor-dev.c v1.4 add angle calculation support between two gsensors 2013-09-01
[    5.527345] rtc_hym8563 0-0051: setting system clock to 2017-03-24 00:48:00 UTC (1490316480)
[    5.527360] firefly_switch_fb 55
[    5.527365]
[    5.527365] rk_fb_switch_screen lcdc_id 0 type 1 enable 1
[    5.527372] fb0 win id 1 state 1
[    5.527384] rk3288-lcdc lcdc0: lcdc0: dclk:148500000>>fps:60
[    5.527400] fb1 win id 0 state 0
[    5.527403] fb2 win id 2 state 0
[    5.527406] fb3 win id 3 state 0
[    5.527409] fb4 win id 4 state 0
[    5.527412]
[    5.527412] rk_fb_switch_screen lcdc_id 0 type 1 enable 1 done
[    5.527412]
[    5.527429] VGA ENABLE
[    5.552064] usbcore: registered new interface driveSEsnnuus  auulo not  pe.5po49cy AiSA <ev/ee /lelt:ux[ ar 5t55/p75i  /p0:icK_2983 N
unused kernel memory: 2364K (c0a92000 - c0ce1000)
[    5.557806] rockchip-hdmi-spdif rockchip-hdmi-spdif.27:  rk-hdmi-spdif-hifi <-> rockchip-spdif mapping ok
[    5.582263] udevd[147]: starting version 175
[    5.668354] Indeed it is in host mode hprt0 = 00021501
[    5.845185] usb 3-1: new high-speed USB device number 2 using usb20_host
[    5.846835] Indeed it is in host mode hprt0 = 00001101
[    5.988868] EXT4-fs (mmcblk0p5): recovery complete
[    5.990676] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null)
[    6.052007] usb 3-1: New USB device found, idVendor=1a40, idProduct=0101
[    6.053484] usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    6.054906] usb 3-1: Product: USB 2.0 Hub [MTT]
[    6.056676] hub 3-1:1.0: USB hub found
[    6.058154] hub 3-1:1.0: 4 ports detected
[    6.137978] vga-ddc: read and parse vga edid success.
[    6.139482] vga-ddc: max mode 1920x1080@60[pixclock-148500 KHZ]
[    6.141192] vga-ddc: best mode 1920x1080@60[pixclock-6 KHZ]
[    6.142653] VGA Devie connected 10
[    6.144094] firefly_vga_set_mode 203
[    6.145535] firefly_vga_set_mode 219 1920 1080 60 148500000
[    6.147028] firefly_vga_enable 130 start
[    6.148473] firefly_switch_fb 55
[    6.149912]
[    6.149912] rk_fb_switch_screen lcdc_id 0 type 1 enable 1
[    6.152847] fb0 win id 1 state 1
[    6.154359] rk3288-lcdc lcdc0: lcdc0: dclk:148500000>>fps:60
[    6.155902] fb1 win id 0 state 0
[    6.157356] fb2 win id 2 state 0
[    6.158789] fb3 win id 3 state 0
[    6.160247] fb4 win id 4 state 0
[    6.161660]
[    6.161660] rk_fb_switch_screen lcdc_id 0 type 1 enable 1 done
[    6.161660]
[    6.250804] init: plymouth-upstart-bridge main process (296) terminated with status 1
[    6.252380] init: plymouth-upstart-bridge main process ended, respawning
[    6.267239] init: plymouth-upstart-bridge main process (306) terminated with status 1
[    6.268978] init: plymouth-upstart-bridge main process ended, respawning
[    6.282798] init: plymouth-upstart-bridge main process (309) terminated with status 1
[    6.284786] init: plymouth-upstart-bridge main process ended, respawning
[    6.297698] init: ureadahead main process (299) terminated with status 5
[    6.327480] usb 3-1.1: new low-speed USB device number 3 using usb20_host
[    6.366681] iep dpi mode inactivity
[    6.377469] init: mounted-proc main process (324) terminated with status 1
[    6.453996] usb 3-1.1: New USB device found, idVendor=17ef, idProduct=6018
[    6.455818] usb 3-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.457553] usb 3-1.1: Product: Lenovo USB Keyboard
[    6.459247] usb 3-1.1: Manufacturer: Lenovo
[    6.474751] input: Lenovo Lenovo USB Keyboard as /devices/ff540000.usb/usb3/3-1/3-1.1/3-1.1:1.0/input/input2
[    6.477047] hid-generic 0003:17EF:6018.0001: input,hidraw0: USB HID v1.11 Keyboard [Lenovo Lenovo USB Keyboard] on usb-ff540000.usb-1.1/input0
* Starting Mount filesystems on boot                                    [ OK ]
* Starting Signal sysvinit that the rootfs is mounted                   [ OK ]
* Starting Populate /dev filesystem                                     [ OK ]
* Starting Populate and link to /run filesystem                         [ OK ]
* Stopping Populate /dev filesystem                                     [ OK ]
* Stopping Populate and link to /run filesystem                         [ OK ]
* Starting Clean /tmp directory                                         [ OK ]
* Starting Initialize or finalize resolvconf                            [ OK ]
* Stopping Track if upstart is running in a container                   [ OK ]
* Stopping Clean /tmp directory                                         [ OK ]
* Starting Signal sysvinit that virtual filesystems are mounted         [ OK ]
* Starting Signal sysvinit that virtual filesystems are mounted         [ OK ]
* Starting Bridge udev events into upstart                              [ OK ]
* Starting Signal sysvinit that remote filesystems are mounted          [ OK ]
* Starting device node and kernel event manager                         [ OK ]
* Starting Signal sysvinit that local filesystems are mounted           [ OK ]
* Starting load modules from /etc/modules                               [ OK ]
* Starting cold plug devices                                            [ OK ]
* Starting log initial device creation                                  [ OK ]
* Stopping Mount filesystems on boot                                    [ OK ]
* Stopping load modules from /etc/modules                               [ OK ]
* Starting Enabling additional executable binary formats                [ OK ]
* Starting flush early job output to logs                               [ OK ]
* Stopping flush early job output to logs                               [ OK ]
* Starting D-Bus system message bus                                     [ OK ]
* Starting set console font                                             [ OK ]
* Stopping set console font                                             [ OK ]
* Starting userspace bootsplash                                         [ OK ]
* Starting SystemD login management service                             [ OK ]
* Starting Send an event to indicate plymouth is up                     [ OK ]
* Starting system logging daemon                                        [ OK ]
* Starting configure network device security                            [ OK ]
* Stopping userspace bootsplash                                         [ OK ]
* Stopping Send an event to indicate plymouth is up                     [ OK ]
* Starting bluetooth daemon                                             [ OK ]
* Starting mDNS/DNS-SD daemon                                           [ OK ]
* Starting Reload cups, upon starting avahi-daemon to make sure remote q[ OK ]are populated
* Stopping Reload cups, upon starting avahi-daemon to make sure remote q[ OK ]are populated
* Starting configure network device security                            [ OK ]
* Starting configure network device security                            [ OK ]
* Starting configure network device                                     [ OK ]
* Starting Mount network filesystems                                    [ OK ]
* Starting Failsafe Boot Delay                                          [ OK ]
* Stopping Mount network filesystems                                    [ OK ]
* Starting configure network device                                     [ OK ]
* Starting Bridge file events into upstart                              [ OK ]
* Starting Bridge socket events into upstart                            [ OK ]
* Stopping cold plug devices                                            [ OK ]
* Stopping log initial device creation                                  [ OK ]
* Starting configure network device security                            [ OK ]
* Starting CUPS printing spooler/server                                 [ OK ]
* Starting cups-browsed - Bonjour remote printer browsing daemon        [ OK ]
* Starting Mount network filesystems                                    [ OK ]
* Starting configure network device                                     [ OK ]
* Stopping Failsafe Boot Delay                                          [ OK ]
* Starting System V initialisation compatibility                        [ OK ]
* Starting modem connection manager                                     [ OK ]
* Starting configure network device security                            [ OK ]
* Starting configure virtual network devices                            [ OK ]
* Stopping Mount network filesystems                                    [ OK ]
* Starting network connection manager                                   [ OK ]
* Setting sensors limits                                                [ OK ]
* Setting up X socket directories...                                    [ OK ]
* Stopping System V initialisation compatibility                        [ OK ]
* Starting System V runlevel compatibility                              [ OK ]
* Starting regular background program processing daemon                 [ OK ]
* Starting anac(h)ronistic cron                                         [ OK ]
* Starting save kernel messages                                         [ OK ]
* Starting OpenSSH server                                               [ OK ]
* Stopping save kernel messages                                         [ OK ]
* Starting crash report submission daemon                               [ OK ]
* Starting NTP server ntpd                                              [ OK ]
saned disabled; edit /etc/default/saned

作者: 小猪    时间: 2017-3-25 11:02
小猪 发表于 2017-3-25 10:46
版主  我根据你的帖子制作了一个根文件系统 然后生成根文件系统文件之前 在里面安装了lubuntu-desktop
但 ...

我用的是ubuntu-base-14.04.5-base-armhf.tar.gz包构建,
另外我的parameter是:
FIRMWARE_VER:4.4.2
MACHINE_MODEL:rk30sdk
MACHINE_ID:007
MANUFACTURER:RK30SDK
MAGIC: 0x5041524B
ATAG: 0x60000800
MACHINE: 3066
CHECK_MASK: 0x80
PWR_HLD: 0,0,A,0,1
#KERNEL_IMG: 0x62008000
#FDT_NAME: rk-kernel.dtb
#RECOVER_KEY: 1,1,0,20,0
CMDLINE:console=tty0 console=ttyFIQ0 earlyprintk root=/dev/block/mtd/by-name/linuxroot rw rootfstype=ext4 init=/sbin/init initrd=0x62000000,0x00800000 mtdparts=rk29xxnand:0x00008000@0x00002000(resource),0x00008000@0x0000A000(boot),0x00002000@0x00012000(misc),0x0001a000@0x00014000(backup),-@0x0002e000(linuxroot)

作者: wod    时间: 2017-4-21 16:48
apt-get install vim git
这条命令错误,不知道怎么解决?
作者: peak9527    时间: 2017-5-16 15:10
小猪 发表于 2017-3-23 09:04
版主 请问如何将桌面环境整到根文件系统中,能否将这个帖子往后如何将文件系统网络等一起整合成一个文件系 ...

我也遇到了这个问题,没有桌面系统,你解决了吗?怎么解决的?
作者: peak9527    时间: 2017-5-16 15:11
小猪 发表于 2017-3-25 11:02
我用的是ubuntu-base-14.04.5-base-armhf.tar.gz包构建,
另外我的parameter是:
FIRMWARE_VER:4.4.2

我也遇到了这个问题,没有桌面系统,你解决了吗?怎么解决的?
作者: luoqindong    时间: 2017-6-16 17:18
shitonyou 发表于 2017-1-13 16:16
牛头不回复我,我自己搞定了。

你好,请问控制台进不了,你是怎样解决的?
作者: 可能已经注册    时间: 2017-7-21 10:55
shitonyou 发表于 2017-1-6 16:36
版主,这个弄进去串口不能用,需要怎么改?
[    **] A start job is running for dev-ttyS2.device (34s  ...

你好,我遇到了和你一模一样的问题,想问一下你是怎么搞定的?谢谢分享一下。
作者: luofeng2g    时间: 2017-8-2 10:38
本帖最后由 luofeng2g 于 2017-8-2 11:05 编辑

赞一个

作者: Ashley01    时间: 2017-10-10 15:53
a start job is running for dev-ttyFIQ0.device 显示这个怎么解决欸?
作者: Ashley01    时间: 2017-10-11 09:38
可能已经注册 发表于 2017-7-21 10:55
你好,我遇到了和你一模一样的问题,想问一下你是怎么搞定的?谢谢分享一下。

搞定了吗?我的问题和你一样
作者: 可能已经注册    时间: 2017-10-12 16:41
Ashley01 发表于 2017-10-11 09:38
搞定了吗?我的问题和你一样

没有,我最后用的ubuntu16.10
作者: Chris    时间: 2017-10-24 17:31
本帖最后由 Chris 于 2017-10-27 14:36 编辑

在主机上制作rootfs镜像时 apt-get install udev,否则会停在[  OK  ] Started Update UTMP about System Runlevel Changes.


另外,软件源的文件是:
sudo vim etc/apt/sources.list
楼主少写一个s

作者: xiaohaowen567    时间: 2018-1-26 15:48
sudo cp -rfp ubuntu/* ubuntu-mount 在这一步的时候 你们有没有碰到 /proc/kcore 太大 导致ubunut-mount 内存不够的情况
作者: xiaohaowen567    时间: 2018-1-30 18:08
wangdongx40423p 发表于 2016-9-30 20:32
这个是rockchip 给的制作ubuntu的方法,链接如下
http://rockchip.wikidot.com/porting-os

楼主 怎么做一个带桌面的ubunut文件系统呢
作者: xiaohaowen567    时间: 2018-1-30 18:09
wangdongx40423p 发表于 2016-9-30 20:32
这个是rockchip 给的制作ubuntu的方法,链接如下
http://rockchip.wikidot.com/porting-os

怎么做一个带桌面的ubunut文件系统
作者: xiaohaowen567    时间: 2018-1-30 18:09
wangdongx40423p 发表于 2016-9-30 20:32
这个是rockchip 给的制作ubuntu的方法,链接如下
http://rockchip.wikidot.com/porting-os

怎么做一个ubunut带桌面的文件系统
作者: xiaohaowen567    时间: 2018-1-30 18:10
wangdongx40423p 发表于 2016-9-30 20:32
这个是rockchip 给的制作ubuntu的方法,链接如下
http://rockchip.wikidot.com/porting-os

怎么做一个ubunut带桌面的文件系统
作者: xiaohaowen567    时间: 2018-1-30 18:12
wangdongx40423p 发表于 2016-9-30 20:32
这个是rockchip 给的制作ubuntu的方法,链接如下
http://rockchip.wikidot.com/porting-os

你好
作者: xiaohaowen567    时间: 2018-1-30 18:12
wangdongx40423p 发表于 2016-9-30 20:32
这个是rockchip 给的制作ubuntu的方法,链接如下
http://rockchip.wikidot.com/porting-os

你好
作者: xiaohaowen567    时间: 2018-2-1 15:23
wangdongx40423p 发表于 2016-9-30 20:32
这个是rockchip 给的制作ubuntu的方法,链接如下
http://rockchip.wikidot.com/porting-os

你好 这个怎么做带有ubuntu桌面的rootfs 上面的步骤好像不行
作者: 土豆十三    时间: 2018-3-13 09:54
请教下,这个方法是否适用于把我自己当前带有桌面的ubuntu系统做成镜像文件,烧录其他设备上呢?
作者: picker    时间: 2018-5-23 11:32
对了,那个rootfs镜像生成好了之后,怎么烧录呢,我参考你那个开发入门二,直接把临时的initrd替换掉之后生成的boot编译下载后一直处于重启状态,所以说这个rootfs镜像该怎么用呢
作者: picker    时间: 2018-5-23 11:33
对了,那个rootfs镜像生成好了之后,怎么烧录呢,我参考你那个开发入门二,直接把临时的initrd替换掉之后生成的boot编译下载后一直处于重启状态,所以说这个rootfs镜像该怎么用呢
作者: picker    时间: 2018-5-23 11:33

作者: picker    时间: 2018-5-23 11:33
对了,那个rootfs镜像生成好了之后,怎么烧录呢,我参考你那个开发入门二,直接把临时的initrd替换掉之后生成的boot编译下载后一直处于重启状态,所以说这个rootfs镜像该怎么用呢
作者: a13684942360    时间: 2018-6-20 15:06
shitonyou 发表于 2017-1-13 16:16
牛头不回复我,我自己搞定了。

怎么解决的呀?
作者: fzuzwl    时间: 2018-6-22 14:01
出现了MOUNTING
FATAL: kernel too old

作者: 雾都大帝    时间: 2018-7-18 14:56
shitonyou 发表于 2017-1-13 16:16
牛头不回复我,我自己搞定了。

大神什么解决的呢?我现在也是这个问题
作者: cnrobot    时间: 2018-7-24 16:32
你好,能讲解一下自制rootfs中的wifi配置吗?
作者: 雾都大帝    时间: 2018-8-8 10:53
牛头 发表于 2016-9-29 15:00
沙发

博主,我用这种方法制作3288Ubuntu14.04根文件镜像,启动时终端打印
FATAL: Could not load /lib/modules/3.10.0/modules.dep: No such file or directory
FATAL: Could not load /lib/modules/3.10.0/modules.dep: No such file or directory
done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
ext4
Begin: Running /scripts/local-premount ... FATAL: Could not load /lib/modules/3.10.0/modules.dep: No such file or directory
done.
FATAL: Could not load /lib/modules/3.10.0/modules.dep: No such file or directory
Begin: Running /scripts/local-bottom ... done.
done.
Begin: Running /scripts/init-bottom ... done.
Target filesystem doesn't have requested /sbin/init.
/bin/sh: 0: can't access tty; job control turned off
# [    8.863204] [otg id chg] last id -1 current id 1

这个是什么原因呢?
作者: isuman    时间: 2018-9-20 11:45
感謝
作者: Zac    时间: 2018-10-12 11:27
学习学习
作者: williamzhang    时间: 2018-10-22 21:02
这简直是屠龙刀啊
作者: zhaoxuji    时间: 2019-2-19 18:22
ubuntu 15.4 如何升级到16.4呢?
作者: wshzz001    时间: 2019-3-12 19:26
楼主,按方法做了,能顺利起来,但是调试串口端无法登陆,
卡住了
[ TIME ] Timed out waiting for device dev-ttyS2.device.
[DEPEND] Dependency failed for Serial Getty on ttyS2.
[  OK  ] Reached target Login Prompts.
[  OK  ] Reached target Multi-User System.
[  OK  ] Reached target Graphical Interface.
         Starting Update UTMP about System Runlevel Changes...
[  OK  ] Started Update UTMP about System Runlevel Changes.

作者: RedKeyset    时间: 2019-7-5 17:04
按帖子生成img ,烧录到rootfs ,但是没有启动起来。一直是卡在开机logo,不知那些问题?
作者: 1198969153@qq.c    时间: 2019-9-7 09:12
shitonyou 发表于 2017-1-13 16:16
牛头不回复我,我自己搞定了。

请问一下  Ubuntu启动经过 1MIN30S  但是会出现一个问题就是。但是安装cdev这个软件之后, 开机就无限重启
作者: 1198969153@qq.c    时间: 2019-9-7 09:16
Chris 发表于 2017-10-24 17:31
在主机上制作rootfs镜像时 apt-get install udev,否则会停在[  OK  ] Started Update UTMP about System R ...

兄弟  按你这样照做之后 ,Ubuntu会进入无限的重启状态   。兄弟知道是什么原因么
作者: edisondeng    时间: 2019-12-25 01:22
这样ubuntu.img里就已经有刚才制作的根目录内容了,但ubuntu.img文件大小却是定义的分区大小,不是文件系统的实际大小,所以还要经过一些处理才能发布。

请教一下,这里说要经过处理是怎么处理?我现在遇到的问题就是这个,分区大小跟img文件大小一样,导致根分区剩余空间很小。
作者: 阿庆    时间: 2020-5-14 11:11
saber 发表于 2017-2-10 09:57
好像加了也没有用,是这个串口配置文件有问题,一直在等待这个job的完成。

这个是文件系统配置的串口有问题,修改一下就好了,vim /lib/systemed/system/serail-getty\@.service,修改BindsTo=dev-%i.device为BindsTo=dev-%i就行了
作者: 阿庆    时间: 2020-5-14 11:23
wod 发表于 2017-4-21 16:48
apt-get install vim git
这条命令错误,不知道怎么解决?

我们制作的文件系统属于mini版,很多指令需要自己手动安装,在只做文件系统的时候,安装进去吧!
作者: 阿庆    时间: 2020-5-14 11:26
Ashley01 发表于 2017-10-10 15:53
a start job is running for dev-ttyFIQ0.device 显示这个怎么解决欸?

这个是文件系统配置的串口有问题,修改一下就好了,vim /lib/systemed/system/serail-getty\@.service,修改BindsTo=dev-%i.device为BindsTo=dev-%i就行了
作者: 阿庆    时间: 2020-5-21 15:43
wangdongx40423p 发表于 2016-9-30 18:57
问题我查到了,是没有执行安装软件那条指令
apt-get install vim git openssh-server

要自己安装
作者: ww88061122    时间: 2020-7-15 13:50
太感谢版主了
作者: SJL    时间: 2020-7-28 16:45
牛头 发表于 2016-9-30 17:35
su root
dhclient eth0
前提是开发板有用以太网线连接到带DHCP服务的路由哦

大神,现在在Ubuntu 16.04 上编译Ubuntu固件,使用RK3288.
http://wiki.t-firefly.com/zh_CN/Firefly-RK3288/linux_compile.html
根据官网例程编译通过,内核启动不成功,请问什么原因。
ERROR: Failed to allocate 0x119a600 bytes below 0x119a600.
Sysmem Error: Failed to alloc "UNCOMPRESS-KERNEL" at 0x00000000 - 0x0119a600
## Booting Android Image at 0x02007800 ...
Kernel load addr 0x02008000 size 8112 KiB
RAM disk load addr 0x0a200000 size 7740 KiB
## Flattened Device Tree blob at 08300000
   Booting using the fdt blob at 0x8300000
   XIP Kernel Image ... OK
  'reserved-memory' dma-unusable@fe000000: addr=fe000000 size=1000000
  'reserved-memory' ramoops@00000000: addr=8000000 size=f0000
   Loading Ramdisk to 0f871000, end 0ffffd6a ... OK
   Loading Device Tree to 0f85a000, end 0f870136 ... OK
Adding bank: 0x00000000 - 0x08400000 (size: 0x08400000)
Adding bank: 0x09300000 - 0x80000000 (size: 0x76d00000)
Total: 4156.196 ms
作者: dzc    时间: 2021-1-7 18:05
我制作的镜像烧写到rk3288板子了,也能正常启动,但到用户登录时,总是提示:Login incorrect,是什么原因呢?
我已按第一页的步骤创建过ubuntu用户,并且用passwd命令改好ubuntu和root用户的密码了,但还是不能登录成功。
作者: 吴晓振    时间: 2021-4-25 17:09
我修改了etc/apt/source.list,切换到文件系统之后,还是无法执行apt-get install,
提示Unable to locate package upgrate,请问知道这个是啥原因吗
作者: dlinli    时间: 2021-10-29 23:00
吴晓振 发表于 2021-4-25 17:09
我修改了etc/apt/source.list,切换到文件系统之后,还是无法执行apt-get install,
提示Unable to locate ...

etc/apt/source.list
要改成
etc/apt/sources.list
前面有个同学说了
我这边的问题就是按照上面方法制作的img镜像文件无法用AndriodTool2.7.1加载,提示加载失败,还在寻求解决办法
作者: Y.立.强    时间: 2021-11-25 16:59
执行./ch-mount.sh -m ubuntu/遇到chroot: failed to run command ‘/bin/bash’: No such file or directory   这个问题知道是什么原因吗
作者: xuliyu    时间: 2021-11-30 15:12
请问新制作的rootfs没有检测到adb设备,是需要装什么驱动吗
作者: xuliyu    时间: 2021-12-1 18:05
cnrobot 发表于 2018-7-24 16:32
你好,能讲解一下自制rootfs中的wifi配置吗?

跪求,自制rootfs中的wifi配置如何配置,我打开wlan0失败,这种情况请问如何解决
                  
[root@rk3288:/media/usb0]# ifconfig wlan0 up
ifconfig: SIOCSIFFLAGS: Operation not permitted
作者: KualaShaker    时间: 2021-12-22 15:50
请教一下,我的文件系统制作成功了,但是可用空间只有8G,但是我的EMMC是256的,请教怎么才能占满整个空间呢,我查看了wiki的教程说是使用resize2fs /dev/mtd/by-name/linuxroot命令,但是在/dev、目录下没有mtd目录




欢迎光临 Firefly开源社区 (https://dev.t-firefly.com/) Powered by Discuz! X3.1