Installing Ubuntu Rootfs on NXP i.MX6 boards

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Installing Ubuntu Rootfs on NXP i.MX6 boards

Installing Ubuntu Rootfs on NXP i.MX6 boards

This post describes the setup detail for installing Ubuntu based distro in any i.Mx6x NXP Boards. Details are described on:

1. Select your board, Setting the host, Download and compile uboot , dtb and and the Kernel version on your board.

2. Installing the Ubuntu core, Lubuntu graphics desktop version and/or Build your own Ubuntu rootfs with debootstrap.

3. Modify rootfs and Installing needed packages

4. Setting with SD image.

5. Setting Ubuntu on target

6. Adding GPU acceleration

1: Select your board, Setting the host, Download and compile uboot , dtb and and the Kernel version on your board.

Supported NXP HW boards:

  • i.MX 6QuadPlus SABRE-SD Board and Platform
  • i.MX 6Quad SABRE-SD Board and Platform
  • i.MX 6DualLite SABRE-SD Board
  • i.MX 6Quad SABRE-AI Board
  • i.MX 6DualLite SABRE-AI Board
  • i.MX 6SoloX SABRE-SD Board
  • i.MX 6SoloX SABRE-AI Board

Install host dependences (version tested 14.04):

$ sudo apt-get install gparted git build-essential libncurses5 wget u-boot-tools zlib1g-dev ncurses-dev \

cmake libc-dev-armhf-cross pkg-config-arm-linux-gnueabihf build-essential checkinstall cmake \

pkg-config lzop libc6 libstdc++6 debootstrap qemu-user-static binfmt-support

Download the compiler toolchain and extract it:

$ cd ~/

$ wget -c https://releases.linaro.org/14.09/components/toolchain/binaries/gcc-linaro-arm-linux-gnueabihf-4.9-2...

$ tar xf gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux.tar.xz

Create general variable environments:

$ export target=mx6q (e.g. processor: mx6sx, mx6d, mx6dl,etc)

$ export board=sabresd (e.g. sabresd, sabreauto)

$ export ARCH=arm

$ export CROSS_COMPILE=../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf-

$ unset LDFLAGS

Download u-boot

At the release of this document, latest uboot version was imx_3.14.52, it should work with other version as well, so please check the proper version for your board:

$ cd ~/

$ wget –c http://git.freescale.com/git/cgit.cgi/imx/uboot-imx.git/snapshot/uboot-imx-rel_imx_3.14.52_1.1.0_ga....

$ tar -xf uboot-imx-rel_imx_3.14.52_1.1.0_ga.tar.gz

$ cd uboot-imx-rel_imx_3.14.52_1.1.0_ga

$ make $targetboard_config    # e.g. mx6qsabresd_config

$ make

Linux Kernel, Firmware, headers, modules and DTS files

$ cd ~/

$ wget –c http://git.freescale.com/git/cgit.cgi/imx/linux-2.6-imx.git/snapshot/linux-2.6-imx-rel_imx_3.14.52_1...

$ tar xf linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga.tar.gz

$ cd linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga

$ make imx_v7_defconfig

$ make menuconfig

$ make -j4 zImage modules dtbs

$ cd ~/

move your image to binary folder:

$ sudo cp –v uboot-imx-rel_imx_3.14.52_1.1.0_ga/u-boot.imx binary/

$ sudo cp –v linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga/arch/arm/boot/zImage binary/

$ sudo cp –v linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga/arch/arm/boot/dts/i$target-$board.dtb binary/

Now you have the bootloader, device tree and kernel image of your board ready, let’s create the rootfs.

2: Installing the Ubuntu core, Lubuntu graphics desktop version and/or Build your own Ubuntu rootfs with debootstrap.

Installing ubuntu core:

$ cd ~/

$ sudo mkdir –p core /media/rootfs /media/kernel

$ wget –c http://cdimage.ubuntu.com/ubuntu-core/releases/14.04/release/ubuntu-core-14.04.4-core-armhf.tar.gz

$ sudo tar –xf ubuntu-core-14.04.4-core-armhf.tar.gz –C core

$ sudo cp -vr core/* /media/rootfs

$ cd linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga

$ sudo make modules_install firmware_install INSTALL_MOD_PATH=/media/rootfs/ ARCH=arm CROSS_COMPILE=../../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf-

$ sudo make ARCH=arm CROSS_COMPILE=../../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf- headers_install INSTALL_HDR_PATH=/media/rootfs/usr

Now you should have your ubuntu rootfs on /media/rootfs folder. and you can pass to part 3 of this post.

Installing ubuntu Linaro LXDE:

$ cd ~/

$ sudo mkdir –p core /media/rootfs /media/kernel

$ wget https://releases.linaro.org/14.10/ubuntu/trusty-images/alip/linaro-trusty-alip-20141024-684.tar.gz

$ sudo tar -xf linaro-trusty-alip-20141024-684.tar.gz –C core

$ sudo mv core/binary/* core/

$ sudo rm –rf core/binary

$ sudo cp -vr core/* /media/rootfs

$ cd linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga

$ sudo make modules_install firmware_install INSTALL_MOD_PATH=/media/rootfs/ ARCH=arm CROSS_COMPILE=../../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf-

$ sudo make ARCH=arm CROSS_COMPILE=../../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf- headers_install INSTALL_HDR_PATH=/media/rootfs/usr

Now you should have your ubuntu rootfs on /media/rootfs folder. and you can pass to part 3 of this post.

Installing with debootstrap

$ cd ~/

$ target=rootfs

$ distro=trusty

$ sudo debootstrap --arch=armhf --foreign --include=ubuntu-keyring,apt-transport-https,ca-certificates,openssl $distro "$target" http://ports.ubuntu.com

$ sudo cp /usr/bin/qemu-arm-static $target/usr/bin

$ sudo cp /etc/resolv.conf $target/etc

Now have a minimal Ubuntu rootfs - chroot to it and perform the 2nd stage install:

$ sudo chroot $target  //Now we are in chroot

# distro=trusty

# export LC_ALL=C LANGUAGE=C LANG=C

# /debootstrap/debootstrap --second-stage

Edit the sources.list repositories

# cat <<EOT > /etc/apt/sources.list

deb http://ports.ubuntu.com/ubuntu-ports/ $distro main restricted universe multiverse

deb http://ports.ubuntu.com/ubuntu-ports/ $distro-updates main restricted universe multiverse

deb http://ports.ubuntu.com/ubuntu-ports/ $distro-security main restricted universe multiverse

EOT

# apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 40976EAF437D05B5

# apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 3B4FE6ACC0B21F32

# apt-get update

# apt -y -f install

# apt-get upgrade

# apt-get install nano

Now you should be able to login without password, then use passwd command to set one. If you like to add custom users:

# passwd root

# adduser <myuser>

# usermod -a -G tty myuser

# usermod -a -G dialout, adm, sudo, dip, plugdev myuser

# visudo

Under the line that looks like:

root ALL=(ALL:ALL) ALL

add the following (change user with your actual username)

<myuser> ALL=(ALL) ALL

your rootfs is ready, exit chroot

# exit

$ sudo rm $target/etc/resolv.conf

$ sudo rm $target/usr/bin/qemu-arm-static

$ sudo mv rootfs/* /media/rootfs

$ cd linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga

$ sudo make modules_install firmware_install INSTALL_MOD_PATH=/media/rootfs/ ARCH=arm CROSS_COMPILE=../../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf-

$ sudo make ARCH=arm CROSS_COMPILE=../../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf- headers_install INSTALL_HDR_PATH=/media/rootfs/usr

Now you should have your ubuntu rootfs on /media/root.

3: Modify Rootfs and Install needed packages

Edit and verify the sources.list repositories

$ cd /media/rootfs

$ sudo cat <<EOT > etc/apt/sources.list

deb http://ports.ubuntu.com/ubuntu-ports/ trusty main restricted universe multiverse

deb http://ports.ubuntu.com/ubuntu-ports/ trusty-updates main restricted universe multiverse

deb http://ports.ubuntu.com/ubuntu-ports/ trusty-security main restricted universe multiverse

EOT

Edit networks interfaces and append in the existing file:

$ sudo nano etc/network/interfaces

auto lo

iface lo inet loopback

auto eth0

iface eth0 inet dhcp

If you require Serial Console, remove and include an additional line at the end of the file for  ttymxc0 output as below,

$ sudo nano etc/init/tty1.conf

exec /sbin/getty -8 38400 tty1

exec /sbin/getty -L 115200 ttymxc0

If you like to change the localhostname:

$ sudo nano etc/hostname

and change to “your name” e.g. imx6Q.

Set the date and time clock and update

$ sudo nano /etc/rc.local 

Add this:

if [ `date +"%Y"` -eq "1970" ]; then

                    date --set="2016-04-01"

fi

exit 0

(optional for Linaro rootfs)

Edit passwd and remove the x in root and linaro lines

$ sudo nano etc/passwd

root:x:0:0:root:/root:/bin/bash

linaro:x:0:0..

and change like this:                                  

root::0:0:root:/root:/bin/bash

linaro:::0:..

Now you are ready to program your sd image.

4: Setup microSD/SD card

For these instructions, we are assuming: DISK=/dev/sdg on your HOST, cat /proc/partitions is very useful for determining the device id.

$ cd ~/

$ export DISK=/dev/sdg

Erase microSD/SD card:

$ sudo dd if=/dev/zero of=${DISK} bs=1M count=10

Install Bootloader

$ cd binary/

$ sudo dd if=u-boot.imx of=${DISK} bs=512 seek=2

$ sync

Create Partition layout:

$ cd ~/

$ sudo fdisk ${DISK}

steps:       

  • d ///delete all partitions currently on sd
  • n // create new partition
  • p // Primary partition
  • 1 // partition number 1
  • 2048 //default
  • +1G //
  • n // created 2d parition
  • p
  • 2
  • default
  • default
  • 1 // firts
  • B // to be fat32
  • W // write partiotions

$ sudo mkfs.vfat ${DISK}1

$ sudo mkfs.ext3  ${DISK}2

Mount ext3 SD partition to /media/rootfs:

$ sudo mount ${DISK1} /media/kernel_target

$ sudo mount ${DISK}2 /media/rootfs_target

Copy Files on the SD.

$ cd ~/

$ sudo cp –v binary/ i$target-$board.dtb /media/kernel_target

$ sudo cp –v binary/zImage /media/kernel_target

$ sudo mv /media/rootfs/* /media/rootfs_target

Remove SD:

$ sync

$ sudo umount /media/kernel_target

$ sudo umount /media/rootfs_target

Boot the target, in console you should be login as root.

root@imx6QSabreSD:~#

5: Setting Ubuntu on target

Note: If you have issues with sudo on user UID, need to logout and log as root:

imx6Q login: root

Welcome to Ubuntu 14.04.4 LTS (GNU/Linux 3.14.52 armv7l)

root@imx6Q:~# chown root:root /usr/bin/sudo

root@imx6Q:~# chmod 4755 /usr/bin/sudo

root@imx6Q:~# exit

Login with <user $> or root #

# apt-get update

# apt-get –f install

# apt-get install locales dialog wget

# dpkg-reconfigure locales

# apt-get upgrade

Optional – install some useful packages:

# apt-get install openssh-server can-utils usbutils build-essential automake autoconf libtool

Get and Install the BSP packages (EULA required)

# cd /home/user

# mkdir –p vpu_pack

# cd vpu_pack

# wget http://www.nxp.com/lgfiles/NMG/MAD/YOCTO//firmware-imx-5.3.bin

# wget http://www.nxp.com/lgfiles/NMG/MAD/YOCTO//imx-vpu-5.4.32.bin

# wget http://www.nxp.com/lgfiles/NMG/MAD/YOCTO//libfslcodec-4.0.8.bin

# wget http://www.nxp.com/lgfiles/NMG/MAD/YOCTO//imx-lib-5.1.tar.gz

# chmod +x *

# ./firmware-imx-5.3.bin --auto-accept --force

# mkdir –p /lib/firmware/vpu

# cp -ravf firmware-imx-5.3/firmware/* /lib/firmware/

# ./imx-vpu-5.4.32.bin --auto-accept --force

# cd imx-vpu-*

# make PLATFORM=IMX6Q all

# make install

# tar -xf imx-lib-5.1.tar.gz

# cd  imx-lib-5.1/

# make -j1 PLATFORM="IMX6Q"

# make PLATFORM="IMX6Q" install

# cd ..

# ./libfslcodec-4.0.8 --auto-accept –force

# cd libfslcodec-*

# ./autogent.sh --prefix=/usr --enable-fhw --enable-vpu

# make

# make install

# mv /usr/lib/imx-mm/video-codec/* /usr/lib

# mv /usr/lib/imx-mm/audio-codec/* /usr/lib

# rm –rf /usr/lib/imx-mm/

# cd ..

# mkdir –p gpu_pack

# cd gpu_pack

# wget http://www.nxp.com/lgfiles/NMG/MAD/YOCTO//imx-gpu-viv-5.0.11.p7.4-hfp.bin

# wget http://www.nxp.com/lgfiles/NMG/MAD/YOCTO//xserver-xorg-video-imx-viv-5.0.11.p7.4.tar.gz

# chmod +x *

# ./imx-gpu-viv-5.0.11.p7.4-hfp –-auto-accept -–force

# cd imx-gpu*

# cp g2d/usr/include/* /usr/include/

# cp -d g2d/usr/lib/* /usr/lib/

# cp -Pr gpu-core/usr/* /usr

# optional: install demos

# cp -r gpu-demos/opt /

# optional: install gpu tools

# cp -axr gpu-tools/gmem-info/usr/bin/* /usr/bin/

# cd ..

Installing gstreamer-imx, IPU, VPU and GPU support:

Install build deps, gstreamer1.x, this step could take some time (~350MB):

# apt-get install python pkg-config git gstreamer1.0-x gstreamer1.0-tools gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-alsa libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-good1.0-dev g++-multilib

# git clone git://github.com/Freescale/gstreamer-imx.git

# cd gstreamer-imx

# ln –s /usr/lib/arm-linux-gnueabihf/gstreamer-1.0/ /usr/lib/gstreamer-1.0

# ./waf configure --prefix=/usr --kernel-headers=/include

# ./waf

# ./waf install

# cd ../../

(optional) Install libimxvpuapi library: This library provides a community based open-source API to the NXP imx-vpu library (the low-level IMX6 VPU interface).

# git clone git://github.com/Freescale/libimxvpuapi.git

# cd libimxvpu*

# ./waf configure –-prefix=/usr

# ./waf

# ./waf install

# cd ..

  • note './waf install' installs artifacts to its prefix + /lib/gstreamer-1.0 but they need to be installed to /usr/lib/arm-linux-gnueabihf/gstreamer-1.0 which is why we created a symlink above before installing
  • note g2d lib required to build G2D
  • note that x11 library is required to build EGL sink with Vivante direct textures (only needed for X11 support)
  • note that libfslaudiocodec is required to build audio plugins

Now you are ready to test gstreamer

6: Add GPU HW Acceleration for X11

NOTE: The original version of these build instructions can be found in the Gateworks wiki . Many thanks to them for writing this!

IMX6 IPU, VPU, and GPU support via GStreamer and Gstreamer-imx plugins. Many of the pieces needed (firmware and source-code) are from NXP and not freely redistributable thus must be downloaded from their mirror and extracted from a shell script that forces you to read and agree to their End User License Agreement (EULA).

The following instructions can be used on top of the debootstrap and should work on other sources of Ubuntu or other Linux distributions root filesystems as well

You can easily add X11 support to a base image created with the debootstrap instructions above by adding a few package groups. You will need the following:

  • X11 server - ie Xorg
  • Display Manager - this controls the login to the X session
  • Window Manager - manages window position, re-sizing, decorations, etc for X clients

If in any case you have installed the Linaro LXDE rootfs, it includes the Xorg X11 server, the lxdm Display Manager, the openbox Window Manager, and others useful user applications including the Chromium browser, if you do not install linaro lxde and want to install it please do:

this step could take some time (~650MB)

  # apt-get install xinit lxde lxterminal lxappearance lxrandr lxshortcut lxinput xinit  xserver-xorg-dev mesa-utils mesa-utils-extra

Notes:

  • you will need to add a non-root user with adduser for Chromium browser to work. You may choose to set up auto-login for that user by editing /etc/lxdm/default.conf and setting the autologin property in the base section at the beginning of the config file. /etc/xdg/lubuntu/lxdm/lxdm.conf
  • This document takes as based kernel version 3.14.52v, vivante 5.0.11p7.4 correspond to the kernel version used. you should check the BSP release notes in order to know which xserver and Vivante GPU files need to be downloaded from the NXP repos.

$ sudo nano /etc/lxdm/default.conf

   [base]

   autologin=user

To add hardware GPU acceleration to X11 you need to add some libraries and drivers provided by Freescale from the imx-gpu-viv package. This requires signing Freescales End User License Agreement (EULA). This package provides the following:

  • libg2d - a documented low-level API to the GPU (used by things like libimxvpuapi for gstreamer-imx and the gpu-core drivers)
  • gpu-core - provides all the various OpenGL libs (libGL, libGLESv1_CM, libGLESv1_CL, libGLESv2, libGLSLC, libCLC, libEGL, libGAL, libOpenCL, ls
  • libOpenVG) typically provided by the mesa project. Note that several versions of libEGL/libGAL/libGLESv2/libVIVANTE are provided for different backend rendering systems: dfb, fb, wl, x11.

# cd gpu_pack

#cd imx-gpu-*

# cp gpu-core/usr/lib/dri/vivante_dri.so /usr/lib/xorg/modules/drivers/

# chmod 644 /usr/lib/xorg/modules/drivers/vivante_dri.so

# rm /usr/lib/arm-linux-gnueabihf/mesa/libGL.so*

# rm /usr/lib/arm-linux-gnueabihf/mesa-egl/libEGL.so*

# rm /usr/lib/arm-linux-gnueabihf/mesa-egl/libGLESv2.so*

# rm /usr/lib/arm-linux-gnueabihf/mesa-egl/libOpenVG.so*

# cd ../../

# cd gpu-pack

# wget http://www.nxp.com/lgfiles/NMG/MAD/YOCTO//xserver-xorg-video-imx-viv-5.0.11.p7.4.tar.gz

# tar –xf xserver*

# cd xserver-org-video-imx*

#looks lik have to made #git init

# ./fastbuild.sh  BUILD_HARD_VFP=1 XSERVER_GREATER_THAN_13=1

# cd..

# cd kernel-modu*

# make

Switch to gpu-core x11 backend:

# backend=x11

# ln -sf libEGL-${backend}.so /usr/lib/libEGL.so

# ln -sf libEGL-${backend}.so /usr/lib/libEGL.so.1

# ln -sf libEGL-${backend}.so /usr/lib/libEGL.so.1.0

# ln -sf libGAL-${backend}.so /usr/lib/libGAL.so

# ln -sf libGLESv2-${backend}.so /usr/lib/libGLESv2.so

# ln -sf libGLESv2-${backend}.so /usr/lib/libGLESv2.so.2

# ln -sf libGLESv2-${backend}.so /usr/lib/libGLESv2.so.2.0.0

# ln -sf libVIVANTE-${backend}.so /usr/lib/libVIVANTE.so

# ln -sf libGAL_egl.dri.so /usr/lib/libGAL_egl.so

# for i in egl glesv1_cm glesv2 vg; do

        cp /usr/lib/pkgconfig/${i}_${backend}.pc/usr/lib/pkgconfig/${i}.pc

    done

#rm /usr/lib/*-dfb.so /usr/lib/*-fb.so /usr/lib/*-wl.so

(Optional in case you deploy your kernel version with GPU as module) make vivante kernel module (GPU kernel driver) load on boot:

# echo vivante >> /etc/modules

# nano /etc/udev/rules.d/10-imx.rules

KERNEL=="galcore",  MODE="0660", GROUP="video"

KERNEL=="mxc_asrc",  MODE="0666"

Create an xorg.conf configured for the Vivante fbdev driver:

# nano /etc/X11/xorg.conf

Section "Device"

    Identifier "i.MX Accelerated Framebuffer Device"

    Driver "vivante"

    Option "fbdev" "/dev/fb0"

    Option "vivante_fbdev" "/dev/fb0"

    Option "HWcursor" "false"

EndSection

Section "ServerFlags"

    Option "BlankTime"  "0"

    Option "StandbyTime"  "0"

    Option "SuspendTime"  "0"

    Option "OffTime"  "0"

EndSection

# cd ..

Make sure the files copied into the correct places.

If all compiled and copied, you should now see a bunch of new libraries in /usr/lib! Congratulations! After you finish you can reboot your system and start playing.

Testing Gstreamer examples:

  • show gstreamer-imx plugins:

# gst-inspect-1.0 | grep imx

imxvpu:  imxvpuenc_mjpeg: Freescale VPU motion JPEG video encoder

imxvpu:  imxvpuenc_mpeg4: Freescale VPU MPEG-4 video encoder

imxvpu:  imxvpuenc_h264: Freescale VPU h.264 video encoder

imxvpu:  imxvpuenc_h263: Freescale VPU h.263 video encoder

imxvpu:  imxvpudec: Freescale VPU video decoder

imxv4l2videosrc:  imxv4l2videosrc: V4L2 CSI Video Source

imxg2d:  imxg2dcompositor: Freescale G2D video compositor

imxg2d:  imxg2dvideotransform: Freescale G2D video transform

imxg2d:  imxg2dvideosink: Freescale G2D video sink

imxipu:  imxipucompositor: Freescale IPU video compositor

imxipu:  imxipuvideosink: Freescale IPU video sink

imxipu:  imxipuvideotransform: Freescale IPU video transform

imxpxp:  imxpxpvideotransform: Freescale PxP video transform

imxpxp:  imxpxpvideosink: Freescale PxP video sink

  • imxipuvideosink:

# gst-launch-1.0 videotestsrc ! imxipuvideosink

imxg2dvideosink:

# gst-launch-1.0 videotestsrc ! imxg2dvideosink

The imxeglvivsink allows hardware accelerated display to a window on the X11 host

# export DISPLAY=:0.0

# gst-launch-1.0 videotestsrc ! imxeglvivsink

To test if you have graphics support you can run any glmark2 and/or mesa-utils or can run example of the next route:

# cd /opt/viv_samples/vdk/

# ./tutorial1                                                                      //any example

root@imx6Q:~# glxgears -info

GL_RENDERER   = Vivante GC2000

GL_VERSION    = 2.1 2.0.1

GL_VENDOR     = Vivante Corporation

GL_EXTENSIONS = WGL_ARB_extensions_string WGL_EXT_extensions_string WGL_EXT_swap_control GL_EXT_texture_env_add GL_ARB_multitexture GL_ARB_multisample GL_ARB_texture_env_add GL_ARB_texture_compression GL_ARB_texture_env_combine GL_ARB_depth_texture GL_ARB_window_pos ….

1606 frames in 5.0 seconds = 321.130 FPS

1650 frames in 5.0 seconds = 329.834 FPS

L_RENDERER   = Vivante GC2000

GL_VERSION    = 2.1 2.0.1

GL_VENDOR     = Vivante Corporation1629 frames in 5.0 seconds = 325.644 FPS

1621 frames in 5.0 seconds = 324.072 FPS

1650 frames in 5.0 seconds = 329.806 FPS

1651 frames in 5.0 seconds = 330.079 FPS

Comments

hi Jaffin,

                I met the same login problem. Following this post, only use 'root' autologin can pass the login GUI while booting.

Use my normal user account cannot use autologin or pass login GUI..any idea for non-root user login?

Hi 
in section "Download u-boot"
I excuted the "make" instruction and seens like it doesnt work, show as below
what's wrong with it?how can i fixed it?

Thanks..

../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf-gcc: 1: ../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf-gcc: Syntax error: "(" unexpected
../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf-gcc: 1: ../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf-gcc: Syntax error: "(" unexpected
dirname: missing operand
Try 'dirname --help' for more information.
scripts/kconfig/conf --silentoldconfig Kconfig
CHK include/config.h
GEN include/autoconf.mk
../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf-gcc: 1: ../gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf-gcc: Syntax error: "(" unexpected
scripts/Makefile.autoconf:71: recipe for target 'include/autoconf.mk' failed
make[1]: *** [include/autoconf.mk] Error 1
make: *** No rule to make target 'include/config/auto.conf', needed by 'include/config/uboot.release'. Stop.

Hello,

Can same instrctions can be used with imx.8?

Thanks

Hi Bio_TICFSL,

Thank for your excellent doc.

I'm working on imx6q sabreauto.

successfully flashed uboot,zimage,*dtb and rootfs in sdcard and tried to bootup the board.but it stucks at one point

my debug log is below. how can i fix it?

U-Boot 2015.04-gb8837c4-dirty (Aug 13 2019 - 17:05:21)

CPU: Freescale i.MX6Q rev1.2 at 792 MHz
CPU: Temperature 41 C
Reset cause: POR
Board: MX6Q-Sabreauto revA
I2C: ready
DRAM: 2 GiB
PMIC: PFUZE100 ID=0x10
NAND: 0 MiB
MMC: FSL_SDHC: 0, FSL_SDHC: 1
No panel detected: default to HDMI
Display: HDMI (640x480)
In: serial
Out: serial
Err: serial
switch to partitions #0, OK
mmc1 is current device
Net: FEC [PRIME]
Error: FEC address not set.

Normal Boot
Hit any key to stop autoboot: 0
switch to partitions #0, OK
mmc1 is current device
reading boot.scr
** Unable to read file boot.scr **
reading zImage
6022032 bytes read in 293 ms (19.6 MiB/s)
Booting from mmc ...
reading imx6q-sabreauto.dtb
41594 bytes read in 19 ms (2.1 MiB/s)
Kernel image @ 0x12000000 [ 0x000000 - 0x5be390 ]
## Flattened Device Tree blob at 18000000
Booting using the fdt blob at 0x18000000
Using Device Tree in place at 18000000, end 1800d279

Starting kernel ...

Booting Linux on physical CPU 0x0
Linux version 3.14.52-g0e08af9-dirty (BspDeveloper2@BspDeveloper2) (gcc version 4.8.5 (Linaro GCC 4.8-2015.06) ) #9 SMP PREEMPT Tue Aug 13 16:58:40 IST 2019
CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d
CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
Machine model: Freescale i.MX6 Quad SABRE Automotive Board
cma: CMA: reserved 320 MiB at 6a000000
Memory policy: Data cache writealloc
PERCPU: Embedded 8 pages/cpu @ee71e000 s8320 r8192 d16256 u32768
Built 1 zonelists in Zone order, mobility grouping on. Total pages: 520720
Kernel command line: console=ttymxc3,115200 root=/dev/mmcblk2p2 rootwait rw
PID hash table entries: 4096 (order: 2, 16384 bytes)
Dentry cache hash table entries: 262144 (order: 8, 1048576 bytes)
Inode-cache hash table entries: 131072 (order: 7, 524288 bytes)
Memory: 1739236K/2097152K available (7452K kernel code, 460K rwdata, 2596K rodata, 392K init, 433K bss, 357916K reserved, 270336K highmem)
Virtual kernel memory layout:
vector : 0xffff0000 - 0xffff1000 ( 4 kB)
fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB)
vmalloc : 0xf0000000 - 0xff000000 ( 240 MB)
lowmem : 0x80000000 - 0xef800000 (1784 MB)
pkmap : 0x7fe00000 - 0x80000000 ( 2 MB)
modules : 0x7f000000 - 0x7fe00000 ( 14 MB)
.text : 0x80008000 - 0x809d828c (10049 kB)
.init : 0x809d9000 - 0x80a3b080 ( 393 kB)
.data : 0x80a3c000 - 0x80aaf340 ( 461 kB)
.bss : 0x80aaf34c - 0x80b1b99c ( 434 kB)
SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Preemptible hierarchical RCU implementation.
NR_IRQS:16 nr_irqs:16 16
L310 cache controller enabled
l2x0: 16 ways, CACHE_ID 0x410000c7, AUX_CTRL 0x32070000, Cache size: 1024 kB
Switching to timer-based delay loop
sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 1431655765682ns
Console: colour dummy device 80x30
Calibrating delay loop (skipped), value calculated using timer frequency.. 6.00 BogoMIPS (lpj=30000)
pid_max: default: 32768 minimum: 301
Mount-cache hash table entries: 4096 (order: 2, 16384 bytes)
Mountpoint-cache hash table entries: 4096 (order: 2, 16384 bytes)
CPU: Testing write buffer coherency: ok
CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
Setting up static identity map for 0x10717d60 - 0x10717db8
CPU1: Booted secondary processor
CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
CPU2: Booted secondary processor
CPU2: thread -1, cpu 2, socket 0, mpidr 80000002
CPU3: Booted secondary processor
CPU3: thread -1, cpu 3, socket 0, mpidr 80000003
Brought up 4 CPUs
SMP: Total of 4 processors activated (24.00 BogoMIPS).
CPU: All CPU(s) started in SVC mode.
devtmpfs: initialized
VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4
pinctrl core: initialized pinctrl subsystem
regulator-dummy: no parameters
NET: Registered protocol family 16
DMA: preallocated 256 KiB pool for atomic coherent allocations
cpuidle: using governor ladder
cpuidle: using governor menu
CPU identified as i.MX6Q, silicon rev 1.2
Use WDOG1 as reset source
syscon 20c8000.anatop: regmap [mem 0x020c8000-0x020c8fff] registered
vdd1p1: 800 <--> 1375 mV at 1100 mV
vdd3p0: 2625 <--> 3400 mV at 3000 mV
vdd2p5: 2000 <--> 2750 mV at 2400 mV
vddarm: 725 <--> 1450 mV at 1150 mV
vddpu: 725 <--> 1450 mV
vddsoc: 725 <--> 1450 mV at 1175 mV
syscon 20e0000.iomuxc-gpr: regmap [mem 0x020e0000-0x020e0037] registered
syscon 21bc000.ocotp-ctrl: regmap [mem 0x021bc000-0x021bffff] registered
hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.
hw-breakpoint: maximum watchpoint size is 4 bytes.
imx6q-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver
bio: create slab <bio-0> at 0
mxs-dma 110000.dma-apbh: initialized
cs42888_supply: 3300 mV
3P3V: 3300 mV
vio1: 3300 mV
vio2: 3300 mV
vd: 3300 mV
va: 5000 mV
platform usb_h1_vbus.29: Driver reg-fixed-voltage requests probe deferral
platform usb_otg_vbus.30: Driver reg-fixed-voltage requests probe deferral
i2c-core: driver [max17135] using legacy suspend method
i2c-core: driver [max17135] using legacy resume method
SCSI subsystem initialized
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
usbphy_nop1.12 supply vcc not found, using dummy regulator
usbphy_nop2.13 supply vcc not found, using dummy regulator
i2c i2c-1: IMX I2C adapter registered
pca953x 2-0032: failed reading register
pca953x: probe of 2-0032 failed with error -5
i2c i2c-2: IMX I2C adapter registered
Linux video capture interface: v2.00
pps_core: LinuxPPS API ver. 1 registered
pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
PTP clock support registered
imx-ipuv3 2400000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)
imx-ipuv3 2800000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)
MIPI CSI2 driver module loaded
Advanced Linux Sound Architecture Driver Initialized.
Bluetooth: Core ver 2.18
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
Bluetooth: L2CAP socket layer initialized
Bluetooth: SCO socket layer initialized
cfg80211: Calling CRDA to update world regulatory domain
Switched to clocksource mxc_timer1
NET: Registered protocol family 2
TCP established hash table entries: 16384 (order: 4, 65536 bytes)
TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
TCP: Hash tables configured (established 16384 bind 16384)
TCP: reno registered
UDP hash table entries: 1024 (order: 3, 32768 bytes)
UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
NET: Registered protocol family 1
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
hw perfevents: enabled with ARMv7 Cortex-A9 PMU driver, 7 counters available
imx rpmsg driver is registered.
imx_busfreq busfreq.16: DDR medium rate not supported.
Bus freq driver module loaded
futex hash table entries: 1024 (order: 4, 65536 bytes)
bounce pool size: 64 pages
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
NFS: Registering the id_resolver key type
Key type id_resolver registered
Key type id_legacy registered
jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
fuse init (API version 7.22)
msgmni has been set to 3508
io scheduler noop registered
io scheduler deadline registered
io scheduler cfq registered (default)
imx-weim 21b8000.weim: Driver registered.
backlight.17 supply power not found, using dummy regulator
MIPI DSI driver module loaded
MIPI DSI driver module loaded
mxc_sdc_fb fb.22: registered mxc display driver ldb
imx-ipuv3 2800000.ipu: IPU DMFC DP HIGH RESOLUTION: 1(0,1), 5B(2~5), 5F(6,7)
Console: switching to colour frame buffer device 128x48
mxc_hdmi 20e0000.hdmi_video: Detected HDMI controller 0x13:0xa:0xa0:0xc1
fbcvt: 1920x1080@60: CVT Name - 2.073M9
mxc_sdc_fb fb.23: registered mxc display driver hdmi
mxc_sdc_fb fb.24: NO mxc display driver found!
mxc_sdc_fb fb.25: registered mxc display driver ldb
imx-sdma 20ec000.sdma: no iram assigned, using external mem
imx-sdma 20ec000.sdma: no event needs to be remapped
imx-sdma 20ec000.sdma: loaded firmware 3.2
imx-sdma 20ec000.sdma: initialized
pfuze100-regulator 1-0008: Full layer: 2, Metal layer: 1
pfuze100-regulator 1-0008: FAB: 0, FIN: 0
pfuze100-regulator 1-0008: pfuze100 found.
SW1AB: 300 <--> 1875 mV at 1375 mV
SW1C: 300 <--> 1875 mV at 1375 mV
SW2: 800 <--> 3300 mV at 3000 mV
SW3A: 400 <--> 1975 mV at 1500 mV
SW3B: 400 <--> 1975 mV at 1500 mV
SW4: 800 <--> 1975 mV at 1800 mV
SWBST: 5000 <--> 5150 mV at 5000 mV
VSNVS: 1000 <--> 3000 mV at 3000 mV
VREFDDR: 750 mV
VGEN1: 800 <--> 1550 mV at 800 mV
VGEN2: 800 <--> 1550 mV at 1500 mV
VGEN3: 1800 <--> 3300 mV at 1800 mV
VGEN4: 1800 <--> 3300 mV at 1800 mV
VGEN5: 1800 <--> 3300 mV at 2500 mV
VGEN6: 1800 <--> 3300 mV at 2800 mV
Serial: IMX driver
21ec000.serial: ttymxc2 at MMIO 0x21ec000 (irq = 60, base_baud = 5000000) is a IMX
21f0000.serial: ttymxc3 at MMIO 0x21f0000 (irq = 61, base_baud = 5000000) is a IMX
console [ttymxc3] enabled
serial: Freescale lpuart driver
imx sema4 driver is registered.
[drm] Initialized drm 1.1.0 20060810
[drm] Initialized vivante 1.0.0 20120216 on minor 0
brd: module loaded
loop: module loaded
si476x-core 1-0063: Using default platform data.
si476x-core 1-0063: No IRQ number specified, will use polling
si476x-core 1-0063: Error while sending command 0x11
si476x-core 1-0063: The device in inconsistent power state
ahci-imx 2200000.sata: fsl,transmit-level-mV not specified, using 00000024
ahci-imx 2200000.sata: fsl,transmit-boost-mdB not specified, using 00000480
ahci-imx 2200000.sata: fsl,transmit-atten-16ths not specified, using 00002000
ahci-imx 2200000.sata: fsl,receive-eq-mdB not specified, using 05000000
ahci-imx 2200000.sata: failed to reset phy: -110
ahci-imx: probe of 2200000.sata failed with error -110
CAN device driver interface
2094000.can supply xceiver not found, using dummy regulator
flexcan 2094000.can: device registered (reg_base=f01f0000, irq=143)
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci-mxc: Freescale On-Chip EHCI Host driver
usbcore: registered new interface driver usb-storage
usbcore: registered new interface driver usb_ehset_test
2184800.usbmisc supply vbus-wakeup not found, using dummy regulator
imx_usb 2184000.usb: Can't register ci_hdrc platform device, err=-517
platform 2184000.usb: Driver imx_usb requests probe deferral
imx_usb 2184200.usb: Can't register ci_hdrc platform device, err=-517
platform 2184200.usb: Driver imx_usb requests probe deferral
mousedev: PS/2 mouse device common for all mice
egalax_ts 1-0004: Failed to read firmware version
egalax_ts: probe of 1-0004 failed with error -5
2-0044 supply vdd not found, using dummy regulator
i2c-core: driver [isl29023] using legacy suspend method
i2c-core: driver [isl29023] using legacy resume method
snvs_rtc 20cc034.snvs-rtc-lp: can't get snvs-rtc clock
snvs_rtc 20cc034.snvs-rtc-lp: rtc core: registered 20cc034.snvs-rtc-lp as rtc0
i2c /dev entries driver
IR NEC protocol handler initialized
IR RC5(x) protocol handler initialized
IR RC6 protocol handler initialized
IR JVC protocol handler initialized
IR Sony protocol handler initialized
IR RC5 (streamzap) protocol handler initialized
IR SANYO protocol handler initialized
IR MCE Keyboard/mouse protocol handler initialized
mxc_v4l2_output v4l2_out.33: V4L2 device registered as video16
mxc_v4l2_output v4l2_out.33: V4L2 device registered as video17
mxc_v4l2_output v4l2_out.33: V4L2 device registered as video18
mxc_v4l2_output v4l2_out.33: V4L2 device registered as video19
mxc_v4l2_output v4l2_out.33: V4L2 device registered as video20
2-000e supply vdd not found, using dummy regulator
2-000e supply vddio not found, using dummy regulator
mag3110 2-000e: check mag3110 chip ID
mag3110 2-000e: read chip ID 0xfffffffb is not equal to 0xc4!
mag3110: probe of 2-000e failed with error -22
i2c-core: driver [mag3110] using legacy suspend method
i2c-core: driver [mag3110] using legacy resume method
2-001c supply vdd not found, using dummy regulator
2-001c supply vddio not found, using dummy regulator
mma8451 2-001c: read chip ID 0x1 is not equal to 0x1a or 0x2a!
mma8451: probe of 2-001c failed with error -22
imx2-wdt 20bc000.wdog: IMX2+ Watchdog Timer enabled. timeout=60s (nowayout=0)
Bluetooth: HCI UART driver ver 2.2
Bluetooth: HCI H4 protocol initialized
Bluetooth: HCI BCSP protocol initialized
Bluetooth: HCIATH3K protocol initialized
usbcore: registered new interface driver bcm203x
usbcore: registered new interface driver btusb
usbcore: registered new interface driver ath3k
sdhci: Secure Digital Host Controller Interface driver
sdhci: Copyright(c) Pierre Ossman
sdhci-pltfm: SDHCI platform and OF driver helper
mmc1: no vqmmc regulator found
mmc1: no vmmc regulator found
mmc1: SDHCI controller on 2194000.usdhc [2194000.usdhc] using ADMA
mmc2: no vqmmc regulator found
mmc2: no vmmc regulator found
mmc2: SDHCI controller on 2198000.usdhc [2198000.usdhc] using ADMA
Galcore version 5.0.11.33433
mmc1: new high speed DDR MMC card at address 0001
mmcblk1: mmc1:0001 VM010B 14.5 GiB
mmcblk1boot0: mmc1:0001 VM010B partition 1 512 KiB
mmcblk1boot1: mmc1:0001 VM010B partition 2 512 KiB
mmcblk1rpmb: mmc1:0001 VM010B partition 3 512 KiB
Alternate GPT is invalid, using primary GPT.
mmcblk1: p1 p2 p3 p4 p5 p6 p7
mmcblk1boot1: unknown partition table
mmcblk1boot0: unknown partition table
mmc2: host does not support reading read-only switch. assuming write-enable.
mmc2: new high speed SDHC card at address e624
mmcblk2: mmc2:e624 SS16G 14.8 GiB
mmcblk2: p1 p2
mxc_vdoa 21e4000.vdoa: i.MX Video Data Order Adapter(VDOA) driver probed
mxc_vpu 2040000.vpu: VPU initialized
caam 2100000.caam: Instantiated RNG4 SH0
caam 2100000.caam: Instantiated RNG4 SH1
caam 2100000.caam: device ID = 0x0a160100 (Era 4)
caam 2100000.caam: job rings = 2, qi = 0
caam algorithms registered in /proc/crypto
caam_jr 2101000.jr0: registering rng-caam
platform caam_sm: blkkey_ex: 4 keystore units available
platform caam_sm: 64-bit clear key:
platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
platform caam_sm: 64-bit black key:
platform caam_sm: [0000] 17 d4 14 e3 cd 14 99 3c
platform caam_sm: [0008] 28 ac 13 da 4f 13 86 b9
platform caam_sm: 128-bit clear key:
platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f
platform caam_sm: 128-bit black key:
platform caam_sm: [0000] 47 20 d5 8a 08 2e c9 76
platform caam_sm: [0008] 21 a3 ab 86 72 eb e0 d7
platform caam_sm: 192-bit clear key:
platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f
platform caam_sm: [0016] 10 11 12 13 14 15 16 17
platform caam_sm: 192-bit black key:
platform caam_sm: [0000] a0 ab 18 b1 c0 86 52 c3
platform caam_sm: [0008] 26 02 62 70 a8 78 4c f2
platform caam_sm: [0016] 4e 6c e5 31 7e 6c d1 25
platform caam_sm: [0024] 48 62 78 86 93 70 62 ff
platform caam_sm: 256-bit clear key:
platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f
platform caam_sm: [0016] 10 11 12 13 14 15 16 17
platform caam_sm: [0024] 18 19 1a 1b 1c 1d 1e 1f
platform caam_sm: 256-bit black key:
platform caam_sm: [0000] 61 42 d7 cf 79 ad 81 5c
platform caam_sm: [0008] cc 1b 9e 5c a0 20 0e 54
platform caam_sm: [0016] ed fa 74 03 08 e1 96 e2
platform caam_sm: [0024] 5c 85 e0 cc ab f4 9e 3b
platform caam_sm: 64-bit unwritten blob:
platform caam_sm: [0000] 00 00 00 00 00 00 00 00
platform caam_sm: [0008] 00 00 00 00 00 00 00 00
platform caam_sm: [0016] 00 00 00 00 00 00 00 00
platform caam_sm: [0024] 00 00 00 00 00 00 00 00
platform caam_sm: [0032] 00 00 00 00 00 00 00 00
platform caam_sm: [0040] 00 00 00 00 00 00 00 00
platform caam_sm: [0048] 00 00 00 00 00 00 00 00
platform caam_sm: [0056] 00 00 00 00 00 00 00 00
platform caam_sm: [0064] 00 00 00 00 00 00 00 00
platform caam_sm: [0072] 00 00 00 00 00 00 00 00
platform caam_sm: [0080] 00 00 00 00 00 00 00 00
platform caam_sm: [0088] 00 00 00 00 00 00 00 00
platform caam_sm: 128-bit unwritten blob:
platform caam_sm: [0000] 00 00 00 00 00 00 00 00
platform caam_sm: [0008] 00 00 00 00 00 00 00 00
platform caam_sm: [0016] 00 00 00 00 00 00 00 00
platform caam_sm: [0024] 00 00 00 00 00 00 00 00
platform caam_sm: [0032] 00 00 00 00 00 00 00 00
platform caam_sm: [0040] 00 00 00 00 00 00 00 00
platform caam_sm: [0048] 00 00 00 00 00 00 00 00
platform caam_sm: [0056] 00 00 00 00 00 00 00 00
platform caam_sm: [0064] 00 00 00 00 00 00 00 00
platform caam_sm: [0072] 00 00 00 00 00 00 00 00
platform caam_sm: [0080] 00 00 00 00 00 00 00 00
platform caam_sm: [0088] 00 00 00 00 00 00 00 00
platform caam_sm: 196-bit unwritten blob:
platform caam_sm: [0000] 00 00 00 00 00 00 00 00
platform caam_sm: [0008] 00 00 00 00 00 00 00 00
platform caam_sm: [0016] 00 00 00 00 00 00 00 00
platform caam_sm: [0024] 00 00 00 00 00 00 00 00
platform caam_sm: [0032] 00 00 00 00 00 00 00 00
platform caam_sm: [0040] 00 00 00 00 00 00 00 00
platform caam_sm: [0048] 00 00 00 00 00 00 00 00
platform caam_sm: [0056] 00 00 00 00 00 00 00 00
platform caam_sm: [0064] 00 00 00 00 00 00 00 00
platform caam_sm: [0072] 00 00 00 00 00 00 00 00
platform caam_sm: [0080] 00 00 00 00 00 00 00 00
platform caam_sm: [0088] 00 00 00 00 00 00 00 00
platform caam_sm: 256-bit unwritten blob:
platform caam_sm: [0000] 00 00 00 00 00 00 00 00
platform caam_sm: [0008] 00 00 00 00 00 00 00 00
platform caam_sm: [0016] 00 00 00 00 00 00 00 00
platform caam_sm: [0024] 00 00 00 00 00 00 00 00
platform caam_sm: [0032] 00 00 00 00 00 00 00 00
platform caam_sm: [0040] 00 00 00 00 00 00 00 00
platform caam_sm: [0048] 00 00 00 00 00 00 00 00
platform caam_sm: [0056] 00 00 00 00 00 00 00 00
platform caam_sm: [0064] 00 00 00 00 00 00 00 00
platform caam_sm: [0072] 00 00 00 00 00 00 00 00
platform caam_sm: [0080] 00 00 00 00 00 00 00 00
platform caam_sm: [0088] 00 00 00 00 00 00 00 00
platform caam_sm: 64-bit black key in blob:
platform caam_sm: [0000] fc e1 2d 2c 81 75 5e 99
platform caam_sm: [0008] 2d 93 9b b0 a6 5a 3d 49
platform caam_sm: [0016] 98 96 9d 0c 39 36 da 72
platform caam_sm: [0024] f9 1d 66 0c 78 24 20 9a
platform caam_sm: [0032] 85 3c 92 1e a4 55 d2 4b
platform caam_sm: [0040] e4 7a ed 19 af 70 2e f6
platform caam_sm: [0048] cf c9 07 0e 82 19 47 7f
platform caam_sm: [0056] 00 00 00 00 00 00 00 00
platform caam_sm: [0064] 00 00 00 00 00 00 00 00
platform caam_sm: [0072] 00 00 00 00 00 00 00 00
platform caam_sm: [0080] 00 00 00 00 00 00 00 00
platform caam_sm: [0088] 00 00 00 00 00 00 00 00
platform caam_sm: 128-bit black key in blob:
platform caam_sm: [0000] c6 ae 04 56 f6 5e c2 1b
platform caam_sm: [0008] d9 6c 07 89 9d 1e 20 0f
platform caam_sm: [0016] 72 4c 63 e1 ed d2 fd 68
platform caam_sm: [0024] 99 81 17 32 33 39 2a 1c
platform caam_sm: [0032] fb e4 bb db 0c 07 c0 f2
platform caam_sm: [0040] eb 23 cf 79 64 2a ca f3
platform caam_sm: [0048] d9 84 ac 22 0b 49 79 e9
platform caam_sm: [0056] 7d 8b 97 09 6a d4 72 0b
platform caam_sm: [0064] 00 00 00 00 00 00 00 00
platform caam_sm: [0072] 00 00 00 00 00 00 00 00
platform caam_sm: [0080] 00 00 00 00 00 00 00 00
platform caam_sm: [0088] 00 00 00 00 00 00 00 00
platform caam_sm: 192-bit black key in blob:
platform caam_sm: [0000] 9c ec 58 09 50 20 80 1d
platform caam_sm: [0008] 21 b6 e3 64 41 ed 14 12
platform caam_sm: [0016] 16 e1 c7 d3 fe 54 40 ed
platform caam_sm: [0024] bc 92 e0 0c 6b 0a ec 02
platform caam_sm: [0032] 3b 60 6f 18 20 26 e4 04
platform caam_sm: [0040] c2 94 5e 2f 1e e4 99 b1
platform caam_sm: [0048] 9c 05 65 95 9b 8d db 72
platform caam_sm: [0056] a8 50 b0 50 9d f8 67 66
platform caam_sm: [0064] 33 ae 46 e9 42 6c fb ab
platform caam_sm: [0072] 00 00 00 00 00 00 00 00
platform caam_sm: [0080] 00 00 00 00 00 00 00 00
platform caam_sm: [0088] 00 00 00 00 00 00 00 00
platform caam_sm: 256-bit black key in blob:
platform caam_sm: [0000] 9b 50 6d 78 93 a8 08 84
platform caam_sm: [0008] e5 3b 26 18 1d 6a 42 80
platform caam_sm: [0016] 3f c9 7f 4d dd 1a b6 a3
platform caam_sm: [0024] 02 6a 4d 64 a6 cc c3 61
platform caam_sm: [0032] 15 9e c8 1f 75 72 01 af
platform caam_sm: [0040] f5 87 b3 78 b0 78 3f 34
platform caam_sm: [0048] bf 19 80 05 72 32 c2 82
platform caam_sm: [0056] d1 fd 4c f7 c6 c9 98 85
platform caam_sm: [0064] 9d 02 55 75 35 d5 ef ca
platform caam_sm: [0072] 80 f5 21 87 ef 6c cd 96
platform caam_sm: [0080] 00 00 00 00 00 00 00 00
platform caam_sm: [0088] 00 00 00 00 00 00 00 00
platform caam_sm: restored 64-bit black key:
platform caam_sm: [0000] 47 9d fa 49 f0 cf c5 1c
platform caam_sm: [0008] 90 4d 0a e3 a1 ee 72 5c
platform caam_sm: restored 128-bit black key:
platform caam_sm: [0000] 47 20 d5 8a 08 2e c9 76
platform caam_sm: [0008] 21 a3 ab 86 72 eb e0 d7
platform caam_sm: restored 192-bit black key:
platform caam_sm: [0000] a0 ab 18 b1 c0 86 52 c3
platform caam_sm: [0008] 26 02 62 70 a8 78 4c f2
platform caam_sm: [0016] 8d 0d bc 2d 2c 90 67 0c
platform caam_sm: [0024] 93 91 ea 59 81 df 52 df
platform caam_sm: restored 256-bit black key:
platform caam_sm: [0000] 61 42 d7 cf 79 ad 81 5c
platform caam_sm: [0008] cc 1b 9e 5c a0 20 0e 54
platform caam_sm: [0016] ed fa 74 03 08 e1 96 e2
platform caam_sm: [0024] 5c 85 e0 cc ab f4 9e 3b
snvs-secvio 20cc000.caam-snvs: can't get snvs clock
snvs-secvio 20cc000.caam-snvs: violation handlers armed - non-secure state
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
cs42xx8 1-0048: found device, revision 4
fsl-asrc 2034000.asrc: driver registered
snd-soc-dummy snd-soc-dummy: ASoC: Failed to create platform debugfs directory
imx-cs42888 sound-cs42888.26: cs42888 <-> 2024000.esai mapping ok
imx-cs42888 sound-cs42888.26: snd-soc-dummy-dai <-> 2034000.asrc mapping ok
imx-cs42888 sound-cs42888.26: cs42888 <-> 2024000.esai mapping ok
imx-spdif sound-spdif.19: snd-soc-dummy-dai <-> 2004000.spdif mapping ok
imx-audio-hdmi sound-hdmi.20: hdmi-hifi <-> hdmi_audio.3 mapping ok
imx-tuner-si476x sound-fm.31: failed to find FM platform device
imx-tuner-si476x: probe of sound-fm.31 failed with error -22
NET: Registered protocol family 26
TCP: cubic registered
NET: Registered protocol family 10
sit: IPv6 over IPv4 tunneling driver
NET: Registered protocol family 17
can: controller area network core (rev 20120528 abi 9)
NET: Registered protocol family 29
can: raw protocol (rev 20120528)
can: broadcast manager protocol (rev 20120528 t)
can: netlink gateway (rev 20130117) max_hops=1
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM ver 1.11
Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Bluetooth: BNEP filters: protocol multicast
Bluetooth: BNEP socket layer initialized
Bluetooth: HIDP (Human Interface Emulation) ver 1.2
Bluetooth: HIDP socket layer initialized
8021q: 802.1Q VLAN Support v1.8
Key type dns_resolver registered
VGEN2: disabling
SWBST: disabling
SW4: disabling
regulator-dummy: disabling
imx mcc test is registered.
platform usb_h1_vbus.29: Driver reg-fixed-voltage requests probe deferral
usb_otg_vbus: 5000 mV
imx_usb 2184200.usb: Can't register ci_hdrc platform device, err=-517
platform 2184200.usb: Driver imx_usb requests probe deferral
platform usb_h1_vbus.29: Driver reg-fixed-voltage requests probe deferral
snvs_rtc 20cc034.snvs-rtc-lp: setting system clock to 1970-01-01 00:00:02 UTC (2)
imx_usb 2184200.usb: Can't register ci_hdrc platform device, err=-517
ALSA device list:
#0: cs42888-audio
#1: imx-spdif
#2: imx-hdmi-soc
p�� �platform usb_h1_vbus.29: Driver reg-fixed-voltage requests probe deferral
kjournald starting. Commit interval 5 seconds
EXT3-fs (mmcblk2p2): using internal journal
EXT3-fs (mmcblk2p2): recovery complete
EXT3-fs (mmcblk2p2): mounted filesystem with ordered data mode
VFS: Mounted root (ext3 filesystem) on device 179:34.
devtmpfs: error mounting -2
Freeing unused kernel memory: 392K (809d9000 - 80a3b000)
Kernel panic - not syncing: No working init found. Try passing init= option to kernel. See Linux Documentation/init.txt for guidance.
CPU2: stopping
CPU: 2 PID: 0 Comm: swapper/2 Not tainted 3.14.52-g0e08af9-dirty #9
[<80014764>] (unwind_backtrace) from [<80011488>] (show_stack+0x10/0x14)
[<80011488>] (show_stack) from [<807119b4>] (dump_stack+0x7c/0xbc)
[<807119b4>] (dump_stack) from [<80013718>] (handle_IPI+0x144/0x158)
[<80013718>] (handle_IPI) from [<800085b0>] (gic_handle_irq+0x58/0x5c)
[<800085b0>] (gic_handle_irq) from [<80011f80>] (__irq_svc+0x40/0x70)
Exception stack(0xd80adf50 to 0xd80adf98)
df40: d80adf98 3b9aca00 e9b5de9d 00000000
df60: e882c038 00000000 ee72f0d0 80a4a814 00000001 ee72f0d4 d80ac000 d80ac000
df80: a6aaaaab d80adf98 00000009 804b64bc 60000113 ffffffff
[<80011f80>] (__irq_svc) from [<804b64bc>] (cpuidle_enter_state+0x50/0xe0)
[<804b64bc>] (cpuidle_enter_state) from [<804b6648>] (cpuidle_idle_call+0xfc/0x150)
[<804b6648>] (cpuidle_idle_call) from [<8000edf0>] (arch_cpu_idle+0x8/0x44)
[<8000edf0>] (arch_cpu_idle) from [<8006b140>] (cpu_startup_entry+0x104/0x150)
[<8006b140>] (cpu_startup_entry) from [<10008644>] (0x10008644)
CPU0: stopping
CPU: 0 PID: 0 Comm: swapper/0 Not tainted 3.14.52-g0e08af9-dirty #9
[<80014764>] (unwind_backtrace) from [<80011488>] (show_stack+0x10/0x14)
[<80011488>] (show_stack) from [<807119b4>] (dump_stack+0x7c/0xbc)
[<807119b4>] (dump_stack) from [<80013718>] (handle_IPI+0x144/0x158)
[<80013718>] (handle_IPI) from [<800085b0>] (gic_handle_irq+0x58/0x5c)
[<800085b0>] (gic_handle_irq) from [<80011f80>] (__irq_svc+0x40/0x70)
Exception stack(0x80a3df18 to 0x80a3df60)
df00: 80a3df60 3b9aca00
df20: e9b5de9d 00000000 e883714d 00000000 ee71f0d0 80a4a814 00000001 ee71f0d4
df40: 80a3c000 80a3c000 a6aaaaab 80a3df60 00000009 804b64bc 60000113 ffffffff
[<80011f80>] (__irq_svc) from [<804b64bc>] (cpuidle_enter_state+0x50/0xe0)
[<804b64bc>] (cpuidle_enter_state) from [<804b6648>] (cpuidle_idle_call+0xfc/0x150)
[<804b6648>] (cpuidle_idle_call) from [<8000edf0>] (arch_cpu_idle+0x8/0x44)
[<8000edf0>] (arch_cpu_idle) from [<8006b140>] (cpu_startup_entry+0x104/0x150)
[<8006b140>] (cpu_startup_entry) from [<809d9af0>] (start_kernel+0x350/0x35c)
CPU3: stopping
CPU: 3 PID: 0 Comm: swapper/3 Not tainted 3.14.52-g0e08af9-dirty #9
[<80014764>] (unwind_backtrace) from [<80011488>] (show_stack+0x10/0x14)
[<80011488>] (show_stack) from [<807119b4>] (dump_stack+0x7c/0xbc)
[<807119b4>] (dump_stack) from [<80013718>] (handle_IPI+0x144/0x158)
[<80013718>] (handle_IPI) from [<800085b0>] (gic_handle_irq+0x58/0x5c)
[<800085b0>] (gic_handle_irq) from [<80011f80>] (__irq_svc+0x40/0x70)
Exception stack(0xd80aff50 to 0xd80aff98)
ff40: d80aff98 3b9aca00 e9b5de9d 00000000
ff60: e882c2d3 00000000 ee7370d0 80a4a814 00000001 ee7370d4 d80ae000 d80ae000
ff80: a6aaaaab d80aff98 00000009 804b64bc 60000113 ffffffff
[<80011f80>] (__irq_svc) from [<804b64bc>] (cpuidle_enter_state+0x50/0xe0)
[<804b64bc>] (cpuidle_enter_state) from [<804b6648>] (cpuidle_idle_call+0xfc/0x150)
[<804b6648>] (cpuidle_idle_call) from [<8000edf0>] (arch_cpu_idle+0x8/0x44)
[<8000edf0>] (arch_cpu_idle) from [<8006b140>] (cpu_startup_entry+0x104/0x150)
[<8006b140>] (cpu_startup_entry) from [<10008644>] (0x10008644)

%3CLINGO-SUB%20id%3D%22lingo-sub-1108497%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3EInstalling%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108497%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3EThis%20post%20describes%20the%20setup%20detail%20for%20installing%20Ubuntu%20based%20distro%20in%20any%20i.Mx6x%20NXP%20Boards.%20Details%20are%20described%20on%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%22%3E1.%20Select%20your%20board%2C%20Setting%20the%20host%2C%20Download%20and%20compile%20uboot%20%2C%20dtb%20and%20and%20the%20Kernel%20version%20on%20your%20board.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%22%3E2.%20Installing%20the%20Ubuntu%20core%2C%20Lubuntu%20graphics%20desktop%20version%20and%2For%20Build%20your%20own%20Ubuntu%20rootfs%20with%20debootstrap.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%22%3E3.%20Modify%20rootfs%20and%20Installing%20needed%20packages%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%22%3E4.%20Setting%20with%20SD%20image.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%22%3E5.%20Setting%20Ubuntu%20on%20target%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%22%3E6.%20Adding%20GPU%20acceleration%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%20class%3D%22Subtitulo%22%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2014pt%3B%20color%3A%20%23e23d39%3B%22%3E1%3A%20Select%20your%20board%2C%20Setting%20the%20host%2C%20Download%20and%20compile%20uboot%20%2C%20dtb%20and%20and%20the%20Kernel%20version%20on%20your%20board.%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22margin-left%3A%200.25in%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3ESupported%20NXP%20HW%20boards%3A%3C%2FSPAN%3E%3C%2FP%3E%3CUL%3E%3CLI%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Ei.MX%206QuadPlus%20SABRE-SD%20Board%20and%20Platform%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Ei.MX%206Quad%20SABRE-SD%20Board%20and%20Platform%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Ei.MX%206DualLite%20SABRE-SD%20Board%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Ei.MX%206Quad%20SABRE-AI%20Board%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Ei.MX%206DualLite%20SABRE-AI%20Board%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Ei.MX%206SoloX%20SABRE-SD%20Board%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Ei.MX%206SoloX%20SABRE-AI%20Board%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FUL%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3EInstall%20host%20dependences%20(version%20tested%2014.04)%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22python%22%20__jive_macro_name%3D%22code%22%20class%3D%22_jivemacro_uid_14594434795498978%20jive_macro_code%20jive_text_macro%22%20data-renderedposition%3D%22565_50.000003814697266_1158_47%22%20jivemacro_uid%3D%22_14594434795498978%22%3E%3CP%20style%3D%22text-align%3A%20justify%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20sudo%20apt-get%20install%20gparted%20git%20build-essential%20libncurses5%20wget%20u-boot-tools%20zlib1g-dev%20ncurses-dev%20%5C%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22text-align%3A%20justify%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%22%3Ecmake%20libc-dev-armhf-cross%20pkg-config-arm-linux-gnueabihf%20build-essential%20checkinstall%20cmake%20%5C%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22text-align%3A%20justify%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%22%3Epkg-config%20lzop%20libc6%20libstdc%2B%2B6%20debootstrap%20qemu-user-static%20binfmt-support%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%20color%3A%20%23606060%3B%20line-height%3A%2026px%3B%22%3EDownload%20the%20compiler%20toolchain%20and%20extract%20it%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22java%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20jive_text_macro%20_jivemacro_uid_14594434795251957%22%20data-renderedposition%3D%22662.77783203125_50.000003814697266_1158_156%22%20jivemacro_uid%3D%22_14594434795251957%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20cd%20~%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%3E%24%20wget%20-c%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Freleases.linaro.org%2F14.09%2Fcomponents%2Ftoolchain%2Fbinaries%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux.tar.xz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Freleases.linaro.org%2F14.09%2Fcomponents%2Ftoolchain%2Fbinaries%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux.tar.xz%3C%2FA%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20tar%20xf%20gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux.tar.xz%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%22%3ECreate%20general%20variable%20environments%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20export%20target%3Dmx6q%20(e.g.%20processor%3A%20mx6sx%2C%20mx6d%2C%20mx6dl%2Cetc)%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20export%20board%3Dsabresd%20(e.g.%20sabresd%2C%20sabreauto)%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20export%20ARCH%3Darm%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20export%20CROSS_COMPILE%3D..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%3E%24%20unset%3C%2FSPAN%3E%3CSPAN%20lang%3D%22ES-MX%22%3E%20LDFLAGS%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3EDownload%20u-boot%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3EAt%20the%20release%20of%20this%20document%2C%20latest%20uboot%20version%20was%20imx_3.14.52%2C%20it%20should%20work%20with%20other%20version%20as%20well%2C%20so%20please%20check%20the%20proper%20version%20for%20your%20board%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22java%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594434795058554%20jive_text_macro%22%20data-renderedposition%3D%22895.0000610351562_50.000003814697266_1158_109%22%20jivemacro_uid%3D%22_14594434795058554%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20cd%20~%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%3E%24%20wget%20%E2%80%93c%20%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Fgit.freescale.com%2Fgit%2Fcgit.cgi%2Fimx%2Fuboot-imx.git%2Fsnapshot%2Fuboot-imx-rel_imx_3.14.52_1.1.0_ga.tar.gz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fgit.freescale.com%2Fgit%2Fcgit.cgi%2Fimx%2Fuboot-imx.git%2Fsnapshot%2Fuboot-imx-rel_imx_3.14.52_1.1.0_ga.tar.gz%3C%2FA%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20tar%20-xf%20uboot-imx-rel_imx_3.14.52_1.1.0_ga.tar.gz%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20cd%20uboot-imx-rel_imx_3.14.52_1.1.0_ga%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20make%20%24targetboard_config%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%23%20e.g.%20mx6qsabresd_config%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20make%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%22%3ELinux%20Kernel%2C%20Firmware%2C%20headers%2C%20modules%20and%20DTS%20files%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22java%22%20__jive_macro_name%3D%22code%22%20class%3D%22_jivemacro_uid_14594434794835555%20jive_macro_code%20jive_text_macro%22%20data-renderedposition%3D%221029.4444580078125_50.000003814697266_1158_141%22%20jivemacro_uid%3D%22_14594434794835555%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%3C%2FSPAN%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%20cd%20~%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%3E%24%20wget%20%E2%80%93c%20%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Fgit.freescale.com%2Fgit%2Fcgit.cgi%2Fimx%2Flinux-2.6-imx.git%2Fsnapshot%2Flinux-2.6-imx-rel_imx_3.14.52_1.1.0_ga.tar.gz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fgit.freescale.com%2Fgit%2Fcgit.cgi%2Fimx%2Flinux-2.6-imx.git%2Fsnapshot%2Flinux-2.6-imx-rel_imx_3.14.52_1.1.0_ga.tar.gz%3C%2FA%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20tar%20xf%20linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga.tar.gz%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20cd%20linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20make%20imx_v7_defconfig%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20make%20menuconfig%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20make%20-j4%20zImage%20modules%20dtbs%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3E%24%20cd%20~%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Emove%20your%20image%20to%20binary%20folder%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22java%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594434794499495%20jive_text_macro%22%20data-renderedposition%3D%221196.1112060546875_50.000003814697266_1158_62%22%20jivemacro_uid%3D%22_14594434794499495%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20cp%20%E2%80%93v%20uboot-imx-rel_imx_3.14.52_1.1.0_ga%2Fu-boot.imx%20binary%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20cp%20%E2%80%93v%20linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga%2Farch%2Farm%2Fboot%2FzImage%20binary%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20cp%20%E2%80%93v%20linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga%2Farch%2Farm%2Fboot%2Fdts%2Fi%24target-%24board.dtb%20binary%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3ENow%20you%20have%20the%20bootloader%2C%20device%20tree%20and%20kernel%20image%20of%20your%20board%20ready%2C%20let%E2%80%99s%20create%20the%20rootfs.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%20style%3D%22padding%3A%200%200%201.0pt%200%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2014pt%3B%20color%3A%20%23e23d39%3B%22%3E2%3A%20Installing%20the%20Ubuntu%20core%2C%20Lubuntu%20graphics%20desktop%20version%20and%2For%20Build%20your%20own%20Ubuntu%20rootfs%20with%20debootstrap.%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22padding%3A%200%200%201.0pt%200%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2012.0pt%3B%22%3EInstalling%20ubuntu%20core%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22java%22%20__jive_macro_name%3D%22code%22%20class%3D%22_jivemacro_uid_14594435070879416%20jive_macro_code%20jive_text_macro%22%20data-renderedposition%3D%221363.1944580078125_50.000003814697266_1158_234%22%20jivemacro_uid%3D%22_14594435070879416%22%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2010pt%3B%22%3Ecd%20~%2F%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20mkdir%20%E2%80%93p%20core%20%2Fmedia%2Frootfs%20%2Fmedia%2Fkernel%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2010pt%3B%22%3E%24%20wget%20%E2%80%93c%20%3CA%20href%3D%22http%3A%2F%2Fcdimage.ubuntu.com%2Fubuntu-core%2Freleases%2F14.04%2Frelease%2Fubuntu-core-14.04.4-core-armhf.tar.gz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fcdimage.ubuntu.com%2Fubuntu-core%2Freleases%2F14.04%2Frelease%2Fubuntu-core-14.04.4-core-armhf.tar.gz%3C%2FA%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20tar%20%E2%80%93xf%20ubuntu-core-14.04.4-core-armhf.tar.gz%20%E2%80%93C%20core%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20cp%20-vr%20core%2F*%20%2Fmedia%2Frootfs%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20cd%20linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20make%20modules_install%20firmware_install%20INSTALL_MOD_PATH%3D%2Fmedia%2Frootfs%2F%20ARCH%3Darm%20CROSS_COMPILE%3D..%2F..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20make%20ARCH%3Darm%20CROSS_COMPILE%3D..%2F..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-%20headers_install%20INSTALL_HDR_PATH%3D%2Fmedia%2Frootfs%2Fusr%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22margin-left%3A%2045pt%3B%20text-indent%3A%20-45pt%3B%20background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%22%3ENow%20you%20should%20have%20your%20ubuntu%20rootfs%20on%20%2Fmedia%2Frootfs%20folder.%20and%20you%20%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%22%3Ecan%20pass%20to%20part%203%20of%20this%20post.%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%20style%3D%22padding%3A%200%200%201.0pt%200%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2012.0pt%3B%22%3EInstalling%20ubuntu%20Linaro%20LXDE%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22java%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594435070643311%20jive_text_macro%22%20data-renderedposition%3D%221675.6251220703125_50.000003814697266_1158_218%22%20jivemacro_uid%3D%22_14594435070643311%22%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20cd%20~%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20mkdir%20%E2%80%93p%20core%20%2Fmedia%2Frootfs%20%2Fmedia%2Fkernel%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20wget%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Freleases.linaro.org%2F14.10%2Fubuntu%2Ftrusty-images%2Falip%2Flinaro-trusty-alip-20141024-684.tar.gz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%3C%2FSPAN%3E%3C%2FA%3E%3CA%20href%3D%22https%3A%2F%2Freleases.linaro.org%2F14.10%2Fubuntu%2Ftrusty-images%2Falip%2Flinaro-trusty-alip-20141024-684.tar.gz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttps%3A%2F%2Freleases.linaro.org%2F14.10%2Fubuntu%2Ftrusty-images%2Falip%2Flinaro-trusty-alip-20141024-684.tar.gz%3C%2FA%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20tar%20-xf%20linaro-trusty-alip-20141024-684.tar.gz%20%E2%80%93C%20core%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20mv%20core%2Fbinary%2F*%20core%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20rm%20%E2%80%93rf%20core%2Fbinary%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20cp%20-vr%20core%2F*%20%2Fmedia%2Frootfs%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20cd%20linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20make%20modules_install%20firmware_install%20INSTALL_MOD_PATH%3D%2Fmedia%2Frootfs%2F%20ARCH%3Darm%20CROSS_COMPILE%3D..%2F..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20make%20ARCH%3Darm%20CROSS_COMPILE%3D..%2F..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-%20headers_install%20INSTALL_HDR_PATH%3D%2Fmedia%2Frootfs%2Fusr%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22white-space%3A%20pre%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%22%3ENow%20you%20should%20have%20your%20ubuntu%20rootfs%20on%20%2Fmedia%2Frootfs%20folder.%20and%20you%20%3C%2FSPAN%3E%3CSPAN%20style%3D%22white-space%3A%20pre%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%22%3Ecan%20pass%20to%20part%203%20of%20this%20post.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%20style%3D%22padding%3A%200%200%201.0pt%200%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2012.0pt%3B%22%3EInstalling%20with%20debootstrap%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22java%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20jive_text_macro%20_jivemacro_uid_14594435070387076%22%20data-renderedposition%3D%221971.3890380859375_50.000003814697266_1158_124%22%20jivemacro_uid%3D%22_14594435070387076%22%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2026pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20cd%20~%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2026pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20target%3Drootfs%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2026pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20distro%3Dtrusty%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2026pt%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2010pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%3E%24%20sudo%20debootstrap%20--arch%3Darmhf%20--foreign%20--include%3Dubuntu-keyring%2Capt-transport-https%2Cca-certificates%2Copenssl%20%24distro%20%22%24target%22%20%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Fports.ubuntu.com%2F%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fports.ubuntu.com%3C%2FA%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2026pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20cp%20%2Fusr%2Fbin%2Fqemu-arm-static%20%24target%2Fusr%2Fbin%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2026pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20cp%20%2Fetc%2Fresolv.conf%20%24target%2Fetc%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20black%3B%20background%3A%20white%3B%22%3ENow%20have%20a%20minimal%20Ubuntu%20rootfs%20-%20chroot%20to%20it%20and%20perform%20the%202nd%20stage%20install%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22java%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594435069697394%20jive_text_macro%22%20data-renderedposition%3D%222121.388916015625_50.000003814697266_1158_707%22%20jivemacro_uid%3D%22_14594435069697394%22%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%24%20sudo%20chroot%20%24target%26nbsp%3B%20%2F%2F%3C%2FSPAN%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3ENow%20we%20are%20in%20chroot%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20distro%3Dtrusty%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20export%20LC_ALL%3DC%20LANGUAGE%3DC%20LANG%3DC%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20%2Fdebootstrap%2Fdebootstrap%20--second-stage%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3EEdit%20the%20sources.list%20repositories%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20cat%20%26lt%3B%3CEOT%3E%20%2Fetc%2Fapt%2Fsources.list%3C%2FEOT%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%3CSPAN%3Edeb%20%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fexternal-link.jspa%3Furl%3Dhttp%253A%252F%252Fports.ubuntu.com%252Fubuntu-ports%252F%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fports.ubuntu.com%2Fubuntu-ports%2F%3C%2FA%3E%3CSPAN%3E%20%24distro%20main%20restricted%20universe%20multiverse%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%3CSPAN%3Edeb%20%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fexternal-link.jspa%3Furl%3Dhttp%253A%252F%252Fports.ubuntu.com%252Fubuntu-ports%252F%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fports.ubuntu.com%2Fubuntu-ports%2F%3C%2FA%3E%3CSPAN%3E%20%24distro-updates%20main%20restricted%20universe%20multiverse%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%3CSPAN%3Edeb%20%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fexternal-link.jspa%3Furl%3Dhttp%253A%252F%252Fports.ubuntu.com%252Fubuntu-ports%252F%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fports.ubuntu.com%2Fubuntu-ports%2F%3C%2FA%3E%3CSPAN%3E%20%24distro-security%20main%20restricted%20universe%20multiverse%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3EEOT%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20apt-key%20adv%20--recv-keys%20--keyserver%20keyserver.ubuntu.com%2040976EAF437D05B5%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20apt-key%20adv%20--recv-keys%20--keyserver%20keyserver.ubuntu.com%203B4FE6ACC0B21F32%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20apt-get%20update%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20apt%20-y%20-f%20install%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20apt-get%20upgrade%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20apt-get%20install%20nano%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3ENow%20you%20should%20be%20able%20to%20login%20without%20password%2C%20then%20use%20passwd%20command%20to%20set%20one.%20If%20you%20like%20to%20add%20custom%20users%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20passwd%20root%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20adduser%20%3CMYUSER%3E%3C%2FMYUSER%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%3C%2FSPAN%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%20usermod%20-a%20-G%20tty%20myuser%20%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20usermod%20-a%20-G%20dialout%2C%20adm%2C%20sudo%2C%20dip%2C%20plugdev%20myuser%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20visudo%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3EUnder%20the%20line%20that%20looks%20like%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eroot%20ALL%3D(ALL%3AALL)%20ALL%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eadd%20the%20following%20(change%20user%20with%20your%20actual%20username)%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%3CMYUSER%3E%20ALL%3D(ALL)%20ALL%3C%2FMYUSER%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eyour%20rootfs%20is%20ready%2C%20exit%20chroot%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20exit%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%24%20sudo%20rm%20%24target%2Fetc%2Fresolv.conf%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%24%20sudo%20rm%20%24target%2Fusr%2Fbin%2Fqemu-arm-static%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%24%20sudo%20mv%20rootfs%2F*%20%2Fmedia%2Frootfs%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%24%20cd%20linux-2.6-imx-rel_imx_3.14.52_1.1.0_ga%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%24%20sudo%20make%20modules_install%20firmware_install%20INSTALL_MOD_PATH%3D%2Fmedia%2Frootfs%2F%20ARCH%3Darm%20CROSS_COMPILE%3D..%2F..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%24%20sudo%20make%20ARCH%3Darm%20CROSS_COMPILE%3D..%2F..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-%20headers_install%20INSTALL_HDR_PATH%3D%2Fmedia%2Frootfs%2Fusr%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding-left%3A%2011pt%3B%22%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3ENow%20you%20should%20have%20your%20ubuntu%20rootfs%20on%20%2Fmedia%2Froot%3C%2FSPAN%3E%3CSPAN%20style%3D%22color%3A%20%23e23d39%3B%20font-size%3A%2018.6667px%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E.%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23e23d39%3B%20font-size%3A%2018.6667px%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E3%3A%20Modify%20Rootfs%20and%20Install%20needed%20packages%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3EEdit%20and%20verify%20the%20sources.list%20repositories%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20jive_text_macro%20_jivemacro_uid_14594435642761323%22%20data-renderedposition%3D%222931.388916015625_50.000003814697266_1158_98%22%20jivemacro_uid%3D%22_14594435642761323%22%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20cd%20%2Fmedia%2Frootfs%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20cat%20%26lt%3B%3CEOT%3E%20etc%2Fapt%2Fsources.list%3C%2FEOT%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2010pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20windowtext%3B%22%3Edeb%20%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Fports.ubuntu.com%2Fubuntu-ports%2F%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fports.ubuntu.com%2Fubuntu-ports%2F%3C%2FA%3E%3CSPAN%20style%3D%22color%3A%20windowtext%3B%22%3E%20trusty%20main%20restricted%20universe%20multiverse%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20windowtext%3B%22%3E%3CSPAN%3Edeb%20%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fexternal-link.jspa%3Furl%3Dhttp%253A%252F%252Fports.ubuntu.com%252Fubuntu-ports%252F%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fports.ubuntu.com%2Fubuntu-ports%2F%3C%2FA%3E%3CSPAN%3E%20trusty-updates%20main%20restricted%20universe%20multiverse%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20windowtext%3B%22%3E%3CSPAN%3Edeb%20%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fexternal-link.jspa%3Furl%3Dhttp%253A%252F%252Fports.ubuntu.com%252Fubuntu-ports%252F%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fports.ubuntu.com%2Fubuntu-ports%2F%3C%2FA%3E%3CSPAN%3E%20trusty-security%20main%20restricted%20universe%20multiverse%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20windowtext%3B%22%3EEOT%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3EEdit%20networks%20interfaces%20and%20append%20in%20the%20existing%20file%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20jive_text_macro%20_jivemacro_uid_14594435642499160%22%20data-renderedposition%3D%223054.722412109375_50.000003814697266_1158_78%22%20jivemacro_uid%3D%22_14594435642499160%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20nano%20etc%2Fnetwork%2Finterfaces%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eauto%20lo%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eiface%20lo%20inet%20loopback%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eauto%20eth0%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eiface%20eth0%20inet%20dhcp%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20%23303030%3B%22%3EIf%20you%20require%20Serial%20Console%2C%20%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22background%3A%20white%3B%22%3Eremove%20and%20include%20an%20additional%20line%20at%20the%20end%20of%20the%20file%20for%26nbsp%3B%20ttymxc0%20output%20as%20below%2C%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_1459443564220284%20jive_text_macro%22%20data-renderedposition%3D%223158.0556640625_50.000003814697266_1158_16%22%20jivemacro_uid%3D%22_1459443564220284%22%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3C%2FPRE%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594435641951566%20jive_text_macro%22%20data-renderedposition%3D%223173.611328125_50.000003814697266_1158_47%22%20jivemacro_uid%3D%22_14594435641951566%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20nano%20etc%2Finit%2Ftty1.conf%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22text-decoration%3A%20line-through%3B%20font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eexec%20%2Fsbin%2Fgetty%20-8%2038400%20tty1%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eexec%20%2Fsbin%2Fgetty%20-L%20115200%20ttymxc0%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23303030%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3EIf%20you%20like%20to%20change%20the%20localhostname%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22_jivemacro_uid_14594435641679774%20jive_macro_code%20jive_text_macro%22%20data-renderedposition%3D%223245.83349609375_50.000003814697266_1158_31%22%20jivemacro_uid%3D%22_14594435641679774%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20nano%20etc%2Fhostname%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eand%20change%20to%20%E2%80%9Cyour%20name%E2%80%9D%20e.g.%20imx6Q.%20%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23303030%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3ESet%20the%20date%20and%20time%20clock%20and%20update%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20jive_text_macro%20_jivemacro_uid_1459443564136564%22%20data-renderedposition%3D%223302.500244140625_50.000003814697266_1158_109%22%20jivemacro_uid%3D%22_1459443564136564%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20nano%20%2Fetc%2Frc.local%26nbsp%3B%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EAdd%20this%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eif%20%5B%20%60date%20%2B%22%25Y%22%60%20-eq%20%221970%22%20%5D%3B%20then%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20date%20--set%3D%222016-04-01%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Efi%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eexit%200%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3C%2FPRE%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594435641048700%20jive_text_macro%22%20data-renderedposition%3D%223411.38916015625_50.000003814697266_1158_124%22%20jivemacro_uid%3D%22_14594435641048700%22%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E(optional%20for%20Linaro%20rootfs)%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EEdit%20passwd%20and%20remove%20the%20x%20in%20root%20and%20linaro%20lines%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20nano%20etc%2Fpasswd%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eroot%3Ax%3A0%3A0%3Aroot%3A%2Froot%3A%2Fbin%2Fbash%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Elinaro%3Ax%3A0%3A0..%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eand%20change%20like%20this%3A%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eroot%3A%3A0%3A0%3Aroot%3A%2Froot%3A%2Fbin%2Fbash%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Elinaro%3A%3A%3A0%3A..%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20%23303030%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22background%3A%20white%3B%22%3ENow%20you%20are%20ready%20to%20program%20your%20sd%20image.%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23e23d39%3B%20background%3A%20white%3B%20font-size%3A%2018.6667px%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E4%3A%20Setup%20microSD%2FSD%20card%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23303030%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3EFor%20these%20instructions%2C%20we%20are%20assuming%3A%20DISK%3D%2Fdev%2Fsdg%20on%20your%20HOST%2C%20cat%20%2Fproc%2Fpartitions%20is%20very%20useful%20for%20determining%20the%20device%20id.%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20jive_text_macro%20_jivemacro_uid_14594435807757639%22%20data-renderedposition%3D%223638.0556640625_50.000003814697266_1158_31%22%20jivemacro_uid%3D%22_14594435807757639%22%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20cd%20~%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20export%20DISK%3D%2Fdev%2Fsdg%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23303030%3B%20background%3A%20white%3B%20font-size%3A%2010.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%22%3EErase%20microSD%2FSD%20card%3C%2FSPAN%3E%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594435807475109%20jive_text_macro%22%20data-renderedposition%3D%223695.83349609375_50.000003814697266_1158_16%22%20jivemacro_uid%3D%22_14594435807475109%22%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20dd%20if%3D%2Fdev%2Fzero%20of%3D%24%7BDISK%7D%20bs%3D1M%20count%3D10%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23303030%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3EInstall%20Bootloader%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20jive_text_macro%20_jivemacro_uid_14594435807202965%22%20data-renderedposition%3D%223736.944580078125_50.000003814697266_1158_47%22%20jivemacro_uid%3D%22_14594435807202965%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20cd%20binary%2F%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20dd%20if%3Du-boot.imx%20of%3D%24%7BDISK%7D%20bs%3D512%20seek%3D2%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sync%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23303030%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3ECreate%20Partition%20layout%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22_jivemacro_uid_14594435806876462%20jive_macro_code%20jive_text_macro%22%20data-renderedposition%3D%223809.166748046875_50.000003814697266_1158_379%22%20jivemacro_uid%3D%22_14594435806876462%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20cd%20~%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20fdisk%20%24%7BDISK%7D%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2010pt%3B%22%3Esteps%3A%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CUL%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Ed%20%2F%2F%2Fdelete%20all%20partitions%20currently%20on%20sd%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3En%20%2F%2F%20create%20new%20partition%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Ep%20%2F%2F%20Primary%20partition%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E1%20%2F%2F%20partition%20number%201%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E2048%20%2F%2Fdefault%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%2B1G%20%2F%2F%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3En%20%2F%2F%20created%202d%20parition%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Ep%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E2%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Edefault%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Edefault%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E1%20%2F%2F%20firts%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3EB%20%2F%2F%20to%20be%20fat32%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3EW%20%2F%2F%20write%20partiotions%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FUL%3E%3CP%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20mkfs.vfat%20%24%7BDISK%7D1%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%24%20sudo%20mkfs.ext3%26nbsp%3B%20%24%7BDISK%7D2%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23303030%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3EMount%20ext3%20SD%20partition%20to%20%2Fmedia%2Frootfs%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22_jivemacro_uid_14594435806522942%20jive_macro_code%20jive_text_macro%22%20data-renderedposition%3D%224238.4375_50.000003814697266_1158_31%22%20jivemacro_uid%3D%22_14594435806522942%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20mount%20%24%7BDISK1%7D%20%2Fmedia%2Fkernel_target%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20mount%20%24%7BDISK%7D2%20%2Fmedia%2Frootfs_target%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23303030%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3ECopy%20Files%20on%20the%20SD.%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594435806243344%20jive_text_macro%22%20data-renderedposition%3D%224295.1044921875_50.000003814697266_1158_62%22%20jivemacro_uid%3D%22_14594435806243344%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20cd%20~%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20cp%20%E2%80%93v%20binary%2F%20i%24target-%24board.dtb%20%2Fmedia%2Fkernel_target%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20cp%20%E2%80%93v%20binary%2FzImage%20%2Fmedia%2Fkernel_target%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20mv%20%2Fmedia%2Frootfs%2F*%20%2Fmedia%2Frootfs_target%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23303030%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3ERemove%20SD%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594435805956657%20jive_text_macro%22%20data-renderedposition%3D%224382.88232421875_50.000003814697266_1158_47%22%20jivemacro_uid%3D%22_14594435805956657%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sync%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20umount%20%2Fmedia%2Fkernel_target%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20umount%20%2Fmedia%2Frootfs_target%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22padding%3A%200%200%200%2011.0pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%23303030%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3EBoot%20the%20target%2C%20in%20console%20you%20should%20be%20login%20as%20root.%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594435805666148%20jive_text_macro%22%20data-renderedposition%3D%224455.1044921875_50.000003814697266_1158_16%22%20jivemacro_uid%3D%22_14594435805666148%22%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2010pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eroot%40imx6QSabreSD%3A~%23%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%23e23d39%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%20font-size%3A%2018.6667px%3B%22%3E5%3A%20Setting%20Ubuntu%20on%20target%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%22%3ENote%3A%20If%20you%20have%20issues%20with%20sudo%20on%20user%20UID%2C%20need%20to%20logout%20and%20log%20as%20root%3A%20%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20jive_text_macro%20_jivemacro_uid_14594437023562434%22%20data-renderedposition%3D%224547.32666015625_50.000003814697266_1158_78%22%20jivemacro_uid%3D%22_14594437023562434%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eimx6Q%20login%3A%20root%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EWelcome%20to%20Ubuntu%2014.04.4%20LTS%20(GNU%2FLinux%203.14.52%20armv7l)%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eroot%40imx6Q%3A~%23%20chown%20root%3Aroot%20%2Fusr%2Fbin%2Fsudo%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eroot%40imx6Q%3A~%23%20chmod%204755%20%2Fusr%2Fbin%2Fsudo%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eroot%40imx6Q%3A~%23%20exit%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%22%3ELogin%20with%20%3CUSER%3E%20or%20root%20%23%3C%2FUSER%3E%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22_jivemacro_uid_1459443738624799%20jive_macro_code%20jive_text_macro%22%20data-renderedposition%3D%224650.66015625_50.000003814697266_1158_109%22%20jivemacro_uid%3D%22_1459443738624799%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20apt-get%20update%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20apt-get%20%E2%80%93f%20install%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20apt-get%20install%20locales%20dialog%20wget%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20dpkg-reconfigure%20locales%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20apt-get%20upgrade%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EOptional%20%E2%80%93%20install%20some%20useful%20packages%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20apt-get%20install%20openssh-server%20can-utils%20usbutils%20build-essential%20automake%20autoconf%20libtool%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%20color%3A%20black%3B%20background%3A%20white%3B%22%3EGet%20and%20Install%20the%20BSP%20packages%20(EULA%20required)%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22_jivemacro_uid_14594437778399621%20jive_macro_code%20jive_text_macro%22%20data-renderedposition%3D%224785.1044921875_50.000003814697266_1158_809%22%20jivemacro_uid%3D%22_14594437778399621%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20%2Fhome%2Fuser%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20mkdir%20%E2%80%93p%20vpu_pack%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20vpu_pack%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20wget%20%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2Ffirmware-imx-5.3.bin%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%3C%2FSPAN%3E%3C%2FA%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Ffirmware-imx-5.3.bin%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttp%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Ffirmware-imx-5.3.bin%3C%2FA%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20wget%20%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2Fimx-vpu-5.4.32.bin%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%3C%2FSPAN%3E%3C%2FA%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Fimx-vpu-5.4.32.bin%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttp%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Fimx-vpu-5.4.32.bin%3C%2FA%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20wget%20%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2Flibfslcodec-4.0.8.bin%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%3C%2FSPAN%3E%3C%2FA%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Flibfslcodec-4.0.8.bin%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttp%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Flibfslcodec-4.0.8.bin%3C%2FA%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20wget%20%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2Fimx-lib-5.1.tar.gz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%3C%2FSPAN%3E%3C%2FA%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Fimx-lib-5.1.tar.gz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttp%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Fimx-lib-5.1.tar.gz%3C%2FA%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20chmod%20%2Bx%20*%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20.%2Ffirmware-imx-5.3.bin%20--auto-accept%20--force%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20mkdir%20%E2%80%93p%20%2Flib%2Ffirmware%2Fvpu%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20cp%20-ravf%20firmware-imx-5.3%2Ffirmware%2F*%20%2Flib%2Ffirmware%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20.%2Fimx-vpu-5.4.32.bin%20--auto-accept%20--force%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20cd%20imx-vpu-*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20make%20PLATFORM%3DIMX6Q%20all%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20make%20install%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20tar%20-xf%20imx-lib-5.1.tar.gz%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20cd%26nbsp%3B%20imx-lib-5.1%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20make%20-j1%20PLATFORM%3D%22IMX6Q%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20make%20PLATFORM%3D%22IMX6Q%22%20install%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20cd%20..%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20.%2Flibfslcodec-4.0.8%20--auto-accept%20%E2%80%93force%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20libfslcodec-*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20.%2Fautogent.sh%20--prefix%3D%2Fusr%20--enable-fhw%20--enable-vpu%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20make%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20make%20install%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20mv%20%2Fusr%2Flib%2Fimx-mm%2Fvideo-codec%2F*%20%2Fusr%2Flib%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20mv%20%2Fusr%2Flib%2Fimx-mm%2Faudio-codec%2F*%20%2Fusr%2Flib%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20rm%20%E2%80%93rf%20%2Fusr%2Flib%2Fimx-mm%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20..%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20mkdir%20%E2%80%93p%20gpu_pack%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20gpu_pack%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20wget%20%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2Fimx-gpu-viv-5.0.11.p7.4-hfp.bin%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%3C%2FSPAN%3E%3C%2FA%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Fimx-gpu-viv-5.0.11.p7.4-hfp.bin%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttp%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Fimx-gpu-viv-5.0.11.p7.4-hfp.bin%3C%2FA%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20wget%20%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2Fxserver-xorg-video-imx-viv-5.0.11.p7.4.tar.gz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%3C%2FSPAN%3E%3C%2FA%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Fxserver-xorg-video-imx-viv-5.0.11.p7.4.tar.gz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttp%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Fxserver-xorg-video-imx-viv-5.0.11.p7.4.tar.gz%3C%2FA%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20chmod%20%2Bx%20*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20.%2Fimx-gpu-viv-5.0.11.p7.4-hfp%20%E2%80%93-auto-accept%20-%E2%80%93force%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20imx-gpu*%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cp%20g2d%2Fusr%2Finclude%2F*%20%2Fusr%2Finclude%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cp%20-d%20g2d%2Fusr%2Flib%2F*%20%2Fusr%2Flib%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cp%20-Pr%20gpu-core%2Fusr%2F*%20%2Fusr%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20class%3D%22c%22%20style%3D%22color%3A%20%23999988%3B%20font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%3CEM%3E%23%20optional%3A%20install%20demos%3C%2FEM%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cp%20-r%20gpu-demos%2Fopt%20%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20class%3D%22c%22%20style%3D%22color%3A%20%23999988%3B%20font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%3CEM%3E%23%20optional%3A%20install%20gpu%20tools%3C%2FEM%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cp%20-axr%20gpu-tools%2Fgmem-info%2Fusr%2Fbin%2F*%20%2Fusr%2Fbin%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20..%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EInstalling%20gstreamer-imx%2C%20IPU%2C%20VPU%20and%20GPU%20support%3A%20%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594438185374207%20jive_text_macro%22%20data-renderedposition%3D%225619.548828125_50.000003814697266_1158_140%22%20jivemacro_uid%3D%22_14594438185374207%22%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EInstall%20build%20deps%2C%20gstreamer1.x%2C%20this%20step%20could%20take%20some%20time%20(~350MB)%3A%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20apt-get%20install%20python%20pkg-config%20git%20gstreamer1.0-x%20gstreamer1.0-tools%20gstreamer1.0-plugins-good%20gstreamer1.0-plugins-bad%20gstreamer1.0-alsa%20libgstreamer1.0-dev%20libgstreamer-plugins-base1.0-dev%20libgstreamer-plugins-good1.0-dev%20%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eg%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%2B%2B-%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Emultilib%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20git%20clone%20git%3A%2F%2Fgithub.com%2FFreescale%2Fgstreamer-imx.git%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20gstreamer-imx%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20ln%20%E2%80%93s%20%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2F%20%2Fusr%2Flib%2Fgstreamer-1.0%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20.%2Fwaf%20configure%20--prefix%3D%2Fusr%20--kernel-headers%3D%2Finclude%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20.%2Fwaf%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20.%2Fwaf%20install%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20..%2F..%2F%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%20class%3D%22Code%22%20style%3D%22background-position%3A%20initial%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E(optional)%20Install%20libimxvpuapi%20library%3A%20%3C%2FSPAN%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%20color%3A%20black%3B%20background%3A%20white%3B%22%3EThis%20library%20provides%20a%20community%20based%20open-source%20API%20to%20the%20NXP%20imx-vpu%20library%20(the%20low-level%20IMX6%20VPU%20interface).%20%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22_jivemacro_uid_14594438636081123%20jive_macro_code%20jive_text_macro%22%20data-renderedposition%3D%225785.1044921875_50.000003814697266_1158_93%22%20jivemacro_uid%3D%22_14594438636081123%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20git%20clone%20git%3A%2F%2Fgithub.com%2FFreescale%2Flibimxvpuapi.git%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20libimxvpu*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20.%2Fwaf%20configure%20%E2%80%93-prefix%3D%2Fusr%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20.%2Fwaf%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20.%2Fwaf%20install%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20..%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CUL%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Enote%20'.%2Fwaf%20install'%20installs%20artifacts%20to%20its%20prefix%20%2B%20%2Flib%2Fgstreamer-1.0%20but%20they%20need%20to%20be%20installed%20to%20%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%20which%20is%20why%20we%20created%20a%20symlink%20above%20before%20installing%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Enote%20g2d%20lib%20required%20to%20build%20G2D%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Enote%20that%20x11%20library%20is%20required%20to%20build%20EGL%20sink%20with%20Vivante%20direct%20textures%20(only%20needed%20for%20X11%20support)%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3Enote%20that%20libfslaudiocodec%20is%20required%20to%20build%20audio%20plugins%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FUL%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20Calibri%2C%20sans-serif%3B%22%3ENow%20you%20are%20ready%20to%20test%20gstreamer%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%23e23d39%3B%20background%3A%20white%3B%20font-size%3A%2018.6667px%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E6%3A%20Add%20GPU%20HW%20Acceleration%20for%20X11%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22color%3A%20%23333333%3B%20background%3A%20white%3B%22%3ENOTE%3A%20The%20original%20version%20of%20these%20build%20instructions%20can%20be%20found%20in%20the%20%3C%2FSPAN%3E%3CSPAN%20lang%3D%22ES-MX%22%3E%3CA%20href%3D%22http%3A%2F%2Ftrac.gateworks.com%2Fwiki%2Fventana%2Fubuntu%23HardwareGPUAccelerationforX11%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3EGateworks%20wiki%3C%2FA%3E%20%3CSPAN%20style%3D%22color%3A%20%23333333%3B%20background%3A%20white%3B%22%3E.%20Many%20thanks%20to%20them%20for%20writing%20this!%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20black%3B%20background%3A%20white%3B%22%3EIMX6%20IPU%2C%20VPU%2C%20and%20GPU%20support%20via%20GStreamer%20and%20Gstreamer-imx%20plugins.%20Many%20of%20the%20pieces%20needed%20(firmware%20and%20source-code)%20are%20from%20NXP%20and%20not%20freely%20redistributable%20thus%20must%20be%20downloaded%20from%20their%20mirror%20and%20extracted%20from%20a%20shell%20script%20that%20forces%20you%20to%20read%20and%20agree%20to%20their%20End%20User%20License%20Agreement%20(EULA).%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20black%3B%20background%3A%20white%3B%22%3EThe%20following%20instructions%20can%20be%20used%20on%20top%20of%20the%20debootstrap%20%3CSPAN%20class%3D%22apple-converted-space%22%3Eand%20s%3C%2FSPAN%3Ehould%20work%20on%20other%20sources%20of%20Ubuntu%20or%20other%20Linux%20distributions%20root%20filesystems%20as%20well%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20black%3B%22%3EYou%20can%20easily%20add%20X11%20support%20to%20a%20base%20image%20created%20with%20the%20debootstrap%20instructions%20above%20by%20adding%20a%20few%20package%20groups.%20You%20will%20need%20the%20following%3A%3C%2FSPAN%3E%3C%2FP%3E%3CUL%3E%3CLI%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3EX11%20server%20-%20ie%20Xorg%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3EDisplay%20Manager%20-%20this%20controls%20the%20login%20to%20the%20X%20session%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3EWindow%20Manager%20-%20manages%20window%20position%2C%20re-sizing%2C%20decorations%2C%20etc%20for%20X%20clients%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FUL%3E%3CP%20style%3D%22background%3A%20white%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20black%3B%22%3EIf%20in%20any%20case%20you%20have%20installed%20the%20Linaro%20LXDE%20rootfs%2C%20it%20includes%20the%20Xorg%20X11%20server%2C%20the%20lxdm%20Display%20Manager%2C%20the%20openbox%20Window%20Manager%2C%20and%20others%20useful%20user%20applications%20including%20the%20Chromium%20browser%2C%20if%20you%20do%20not%20install%20linaro%20lxde%20and%20want%20to%20install%20it%20please%20do%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_1459444118777927%20jive_text_macro%22%20data-renderedposition%3D%226365.31298828125_50.000003814697266_1158_32%22%20jivemacro_uid%3D%22_1459444118777927%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Ethis%20step%20could%20take%20some%20time%20(~650MB)%20%3C%2FSPAN%3E%3C%2FP%3E%26nbsp%3B%20%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2011.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20apt-get%20install%20xinit%20lxde%20lxterminal%20lxappearance%20lxrandr%20lxshortcut%20lxinput%20xinit%26nbsp%3B%20xserver-xorg-dev%20%3C%2FSPAN%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2011.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Emesa-utils%20mesa-utils-extra%20%3C%2FSPAN%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%22%3ENotes%3A%3C%2FSPAN%3E%3C%2FP%3E%3CUL%3E%3CLI%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%3Eyou%20will%20need%20to%20add%20a%20non-root%20user%20with%20%3C%2FSPAN%3E%3CTT%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22color%3A%20%23660000%3B%20background%3A%20%23fafafa%3B%22%3Eadduser%3C%2FSPAN%3E%3C%2FTT%3E%20%3CSPAN%20lang%3D%22ES-MX%22%3Efor%20Chromium%20browser%20to%20work.%20You%20may%20choose%20to%20set%20up%20auto-login%20for%20that%20user%20by%20editing%20%2Fetc%2Flxdm%2Fdefault.conf%20and%20setting%20the%20%3C%2FSPAN%3E%3CTT%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22color%3A%20%23660000%3B%20background%3A%20%23fafafa%3B%22%3Eautologin%3C%2FSPAN%3E%3C%2FTT%3E%20%3CSPAN%20lang%3D%22ES-MX%22%3Eproperty%20in%20the%20%3C%2FSPAN%3E%3CTT%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22color%3A%20%23660000%3B%20background%3A%20%23fafafa%3B%22%3Ebase%3C%2FSPAN%3E%3C%2FTT%3E%20%3CSPAN%20lang%3D%22ES-MX%22%3Esection%20at%20the%20beginning%20of%20the%20config%20file.%20%2Fetc%2Fxdg%2Flubuntu%2Flxdm%2Flxdm.conf%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20windowtext%3B%22%3EThis%20document%20takes%20as%20based%20kernel%20version%203.14.52v%2C%20vivante%205.0.11p7.4%20correspond%20to%20the%20kernel%20version%20used.%20you%20should%20check%20the%20BSP%20release%20notes%20in%20order%20to%20know%20which%20xserver%20and%20Vivante%20GPU%20files%20need%20to%20be%20downloaded%20from%20the%20NXP%20repos.%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FUL%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594441892347696%20jive_text_macro%22%20data-renderedposition%3D%226534.27099609375_50.000003814697266_1158_47%22%20jivemacro_uid%3D%22_14594441892347696%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%24%20sudo%20nano%20%2Fetc%2Flxdm%2Fdefault.conf%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%20%5Bbase%5D%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%20autologin%3Duser%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%20font-size%3A%2012pt%3B%20background-color%3A%20white%3B%22%3ETo%20add%20hardware%20GPU%20acceleration%20to%20X11%20you%20need%20to%20add%20some%20libraries%20and%20drivers%20provided%20by%20Freescale%20from%20the%20imx-gpu-viv%20package.%20This%20requires%20signing%20Freescales%20End%20User%20License%20Agreement%20(EULA).%20This%20package%20provides%20the%20following%3A%3C%2FSPAN%3E%3C%2FP%3E%3CUL%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Elibg2d%20-%20a%20documented%20low-level%20API%20to%20the%20GPU%20(used%20by%20things%20like%20libimxvpuapi%20for%20gstreamer-imx%20and%20the%20gpu-core%20drivers)%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Egpu-core%20-%20provides%20all%20the%20various%20OpenGL%20libs%20(libGL%2C%20libGLESv1_CM%2C%20libGLESv1_CL%2C%20libGLESv2%2C%20libGLSLC%2C%20libCLC%2C%20libEGL%2C%20libGAL%2C%20libOpenCL%2C%20ls%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3ElibOpenVG)%20typically%20provided%20by%20the%20mesa%20project.%20Note%20that%20several%20versions%20of%20libEGL%2FlibGAL%2FlibGLESv2%2FlibVIVANTE%20are%20provided%20for%20different%20backend%20rendering%20systems%3A%20dfb%2C%20fb%2C%20wl%2C%20x11.%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FUL%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22_jivemacro_uid_14594442717887539%20jive_macro_code%20jive_text_macro%22%20data-renderedposition%3D%226746.2158203125_50.000003814697266_1158_576%22%20jivemacro_uid%3D%22_14594442717887539%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20gpu_pack%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22color%3A%20windowtext%3B%20font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23cd%20imx-gpu-*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cp%20gpu-core%2Fusr%2Flib%2Fdri%2Fvivante_dri.so%20%2Fusr%2Flib%2Fxorg%2Fmodules%2Fdrivers%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20chmod%20644%20%2Fusr%2Flib%2Fxorg%2Fmodules%2Fdrivers%2Fvivante_dri.so%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20rm%20%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fmesa%2FlibGL.so*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20rm%20%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fmesa-egl%2FlibEGL.so*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20rm%20%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fmesa-egl%2FlibGLESv2.so*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22color%3A%20%23999988%3B%20font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Erm%20%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fmesa-egl%2FlibOpenVG.so*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20..%2F..%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20gpu-pack%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20wget%20%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2Fxserver-xorg-video-imx-viv-5.0.11.p7.4.tar.gz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%3C%2FSPAN%3E%3C%2FA%3E%3CA%20href%3D%22http%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Fxserver-xorg-video-imx-viv-5.0.11.p7.4.tar.gz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttp%3A%2F%2Fwww.nxp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2F%2Fxserver-xorg-video-imx-viv-5.0.11.p7.4.tar.gz%3C%2FA%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20tar%20%E2%80%93xf%20xserver*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20xserver-org-video-imx*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23looks%20lik%20have%20to%20made%20%23git%20init%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20.%2Ffastbuild.sh%26nbsp%3B%20BUILD_HARD_VFP%3D1%20XSERVER_GREATER_THAN_13%3D1%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd..%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20kernel-modu*%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20make%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22margin-top%3A%20auto%3B%20margin-bottom%3A%20auto%3B%20background%3A%20white%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20black%3B%22%3ESwitch%20to%20gpu-core%20x11%20backend%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20backend%3Dx11%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20ln%20-sf%20libEGL-%24%7Bbackend%7D.so%20%2Fusr%2Flib%2FlibEGL.so%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20ln%20-sf%20libEGL-%24%7Bbackend%7D.so%20%2Fusr%2Flib%2FlibEGL.so.1%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20ln%20-sf%20libEGL-%24%7Bbackend%7D.so%20%2Fusr%2Flib%2FlibEGL.so.1.0%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20ln%20-sf%20libGAL-%24%7Bbackend%7D.so%20%2Fusr%2Flib%2FlibGAL.so%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20ln%20-sf%20libGLESv2-%24%7Bbackend%7D.so%20%2Fusr%2Flib%2FlibGLESv2.so%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20ln%20-sf%20libGLESv2-%24%7Bbackend%7D.so%20%2Fusr%2Flib%2FlibGLESv2.so.2%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20ln%20-sf%20libGLESv2-%24%7Bbackend%7D.so%20%2Fusr%2Flib%2FlibGLESv2.so.2.0.0%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20ln%20-sf%20libVIVANTE-%24%7Bbackend%7D.so%20%2Fusr%2Flib%2FlibVIVANTE.so%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20ln%20-sf%20libGAL_egl.dri.so%20%2Fusr%2Flib%2FlibGAL_egl.so%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20for%20%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Ei%20in%20egl%20glesv1_cm%20glesv2%20vg%3B%20do%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20cp%20%2Fusr%2Flib%2Fpkgconfig%2F%24%7Bi%7D_%24%7Bbackend%7D.pc%2Fusr%2Flib%2Fpkgconfig%2F%24%7Bi%7D.pc%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20done%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23rm%20%2Fusr%2Flib%2F*-dfb.so%20%2Fusr%2Flib%2F*-fb.so%20%2Fusr%2Flib%2F*-wl.so%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%20color%3A%20black%3B%22%3E(Optional%20in%20case%20you%20deploy%20your%20kernel%20version%20with%20GPU%20as%20module)%20make%20vivante%20kernel%20module%20(GPU%20kernel%20driver)%20load%20on%20boot%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594443264249544%20jive_text_macro%22%20data-renderedposition%3D%227347.32666015625_50.000003814697266_1158_62%22%20jivemacro_uid%3D%22_14594443264249544%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20echo%20vivante%20%26gt%3B%26gt%3B%20%2Fetc%2Fmodules%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20nano%20%2Fetc%2Fudev%2Frules.d%2F10-imx.rules%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3EKERNEL%3D%3D%22galcore%22%2C%26nbsp%3B%20MODE%3D%220660%22%2C%20GROUP%3D%22video%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3EKERNEL%3D%3D%22mxc_asrc%22%2C%26nbsp%3B%20MODE%3D%220666%22%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background%3A%20white%3B%20font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3ECreate%20an%20xorg.conf%20configured%20for%20the%20Vivante%20fbdev%20driver%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22_jivemacro_uid_14594443585909304%20jive_macro_code%20jive_text_macro%22%20data-renderedposition%3D%227435.1044921875_50.000003814697266_1158_249%22%20jivemacro_uid%3D%22_14594443585909304%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20nano%20%2Fetc%2FX11%2Fxorg.conf%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3ESection%20%22Device%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Identifier%20%22i.MX%20Accelerated%20Framebuffer%20Device%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Driver%20%22vivante%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Option%20%22fbdev%22%20%22%2Fdev%2Ffb0%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Option%20%22vivante_fbdev%22%20%22%2Fdev%2Ffb0%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Option%20%22HWcursor%22%20%22false%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EEndSection%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3ESection%20%22ServerFlags%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Option%20%22BlankTime%22%26nbsp%3B%20%220%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Option%20%22StandbyTime%22%26nbsp%3B%20%220%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Option%20%22SuspendTime%22%26nbsp%3B%20%220%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EOption%20%22OffTime%22%26nbsp%3B%20%220%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EEndSection%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20cd%20..%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3EMake%20sure%20the%20files%20copied%20into%20the%20correct%20places.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3EIf%20all%20compiled%20and%20copied%2C%20you%20should%20now%20see%20a%20bunch%20of%20new%20libraries%20in%20%2Fusr%2Flib!%20%3C%2FSPAN%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3ECongratulations!%20%3CSPAN%20style%3D%22background%3A%20white%3B%22%3EAfter%20you%20finish%20you%20can%20reboot%20your%20system%20and%20start%20playing.%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3ETesting%20%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3EGstreamer%20examples%3A%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CUL%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eshow%20gstreamer-imx%20plugins%3A%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FUL%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20jive_text_macro%20_jivemacro_uid_14594443991277636%22%20data-renderedposition%3D%227792.18798828125_50.000003814697266_1158_383%22%20jivemacro_uid%3D%22_14594443991277636%22%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20gst-inspect-1.0%20%7C%20grep%20imx%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxvpu%3A%26nbsp%3B%20imxvpuenc_mjpeg%3A%20Freescale%20VPU%20motion%20JPEG%20video%20encoder%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxvpu%3A%26nbsp%3B%20imxvpuenc_mpeg4%3A%20Freescale%20VPU%20MPEG-4%20video%20encoder%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxvpu%3A%26nbsp%3B%20imxvpuenc_h264%3A%20Freescale%20VPU%20h.264%20video%20encoder%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxvpu%3A%26nbsp%3B%20imxvpuenc_h263%3A%20Freescale%20VPU%20h.263%20video%20encoder%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxvpu%3A%26nbsp%3B%20imxvpudec%3A%20Freescale%20VPU%20video%20decoder%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxv4l2videosrc%3A%26nbsp%3B%20imxv4l2videosrc%3A%20V4L2%20CSI%20Video%20Source%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxg2d%3A%26nbsp%3B%20imxg2dcompositor%3A%20Freescale%20G2D%20video%20compositor%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxg2d%3A%26nbsp%3B%20imxg2dvideotransform%3A%20Freescale%20G2D%20video%20transform%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxg2d%3A%26nbsp%3B%20imxg2dvideosink%3A%20Freescale%20G2D%20video%20sink%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxipu%3A%26nbsp%3B%20imxipucompositor%3A%20Freescale%20IPU%20video%20compositor%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxipu%3A%26nbsp%3B%20imxipuvideosink%3A%20Freescale%20IPU%20video%20sink%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxipu%3A%26nbsp%3B%20imxipuvideotransform%3A%20Freescale%20IPU%20video%20transform%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxpxp%3A%26nbsp%3B%20imxpxpvideotransform%3A%20Freescale%20PxP%20video%20transform%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxpxp%3A%26nbsp%3B%20imxpxpvideosink%3A%20Freescale%20PxP%20video%20sink%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3C%2FP%3E%3CUL%3E%3CLI%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxipuvideosink%3A%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FUL%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594444707294011%20jive_text_macro%22%20data-renderedposition%3D%228232.6044921875_50.000003814697266_1158_16%22%20jivemacro_uid%3D%22_14594444707294011%22%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%209pt%3B%20line-height%3A%2012pt%3B%22%3E%23%20%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Egst-launch-1.0%20videotestsrc%20!%20imxipuvideosink%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2012pt%3B%20font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eimxg2dvideosink%3A%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20jive_text_macro%20_jivemacro_uid_14594445554421995%22%20data-renderedposition%3D%228273.7158203125_50.000003814697266_1158_16%22%20jivemacro_uid%3D%22_14594445554421995%22%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20gst-launch-1.0%20videotestsrc%20!%20imxg2dvideosink%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20black%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3EThe%20%3C%2FSPAN%3E%3CTT%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%20background%3A%20%23fafafa%3B%22%3Eimxeglvivsink%3C%2FSPAN%3E%3C%2FTT%3E%20%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-size%3A%2010pt%3B%22%3Eallows%20hardware%20accelerated%20display%20to%20a%20window%20on%20the%20X11%20host%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594445991565696%20jive_text_macro%22%20data-renderedposition%3D%228315.9375_50.000003814697266_1158_31%22%20jivemacro_uid%3D%22_14594445991565696%22%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22color%3A%20windowtext%3B%20font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%23%20export%20DISPLAY%3C%2FSPAN%3E%3CSPAN%20class%3D%22o%22%20style%3D%22color%3A%20windowtext%3B%20font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E%3CSTRONG%3E%3D%3C%2FSTRONG%3E%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%3A0.0%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%20color%3A%20windowtext%3B%22%3E%23%20gst-launch-1.0%20videotestsrc%20!%20imxeglvivsink%3C%2FSPAN%3E%3C%2FP%3E%3C%2FPRE%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20calibri%2C%20verdana%2C%20arial%2C%20sans-serif%3B%20color%3A%20black%3B%20font-size%3A%2012pt%3B%22%3E%3CSPAN%20lang%3D%22ES-MX%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3ETo%20test%20if%20you%20have%20graphics%20support%20you%20can%20run%20any%20%3C%2FSPAN%3E%3CSPAN%20lang%3D%22ES-MX%22%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%20color%3A%20%23222222%3B%20background%3A%20white%3B%22%3Eglmark2%20and%2For%20mesa-utils%3C%2FSPAN%3E%20%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3Eor%20can%20run%20example%20of%20the%20next%20route%3A%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22plain%22%20__jive_macro_name%3D%22code%22%20class%3D%22jive_macro_code%20_jivemacro_uid_14594446314181983%20jive_text_macro%22%20data-renderedposition%3D%228372.6044921875_50.000003814697266_1158_294%22%20jivemacro_uid%3D%22_14594446314181983%22%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20cd%20%2Fopt%2Fviv_samples%2Fvdk%2F%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'Calibri%20Light'%2C%20sans-serif%3B%22%3E%23%20.%2Ftutorial1%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%2F%2Fany%20example%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%20style%3D%22color%3A%20%23606060%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20font-size%3A%2015px%3B%20line-height%3A%2026px%3B%20white-space%3A%20normal%3B%22%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%209.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3Eroot%40imx6Q%3A~%23%20glxgears%20-info%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EGL_RENDERER%26nbsp%3B%26nbsp%3B%20%3D%20Vivante%20GC2000%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EGL_VERSION%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3D%202.1%202.0.1%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EGL_VENDOR%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3D%20Vivante%20Corporation%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EGL_EXTENSIONS%20%3D%20WGL_ARB_extensions_string%20WGL_EXT_extensions_string%20WGL_EXT_swap_control%20GL_EXT_texture_env_add%20GL_ARB_multitexture%20GL_ARB_multisample%20GL_ARB_texture_env_add%20GL_ARB_texture_compression%20GL_ARB_texture_env_combine%20GL_ARB_depth_texture%20GL_ARB_window_pos%20%E2%80%A6.%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E1606%20frames%20in%205.0%20seconds%20%3D%20321.130%20FPS%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E1650%20frames%20in%205.0%20seconds%20%3D%20329.834%20FPS%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EL_RENDERER%26nbsp%3B%26nbsp%3B%20%3D%20Vivante%20GC2000%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EGL_VERSION%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3D%202.1%202.0.1%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3EGL_VENDOR%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3D%20Vivante%20Corporation1629%20frames%20in%205.0%20seconds%20%3D%20325.644%20FPS%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E1621%20frames%20in%205.0%20seconds%20%3D%20324.072%20FPS%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E1650%20frames%20in%205.0%20seconds%20%3D%20329.806%20FPS%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Calibri%20Light'%2C'sans-serif'%3B%22%3E1651%20frames%20in%205.0%20seconds%20%3D%20330.079%20FPS%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22Code%22%3E%3C%2FP%3E%3C%2FPRE%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108551%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108551%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20%3CA%20class%3D%22jx-jive-macro-user%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fpeople%2FBio_TICFSL%22%20target%3D%22_blank%22%3EBio_TICFSL%3C%2FA%3E%2C%3C%2FP%3E%3CP%3EThank%20for%20your%20excellent%20doc.%3C%2FP%3E%3CP%3EI'm%20working%20on%20imx6q%20sabreauto.%3C%2FP%3E%3CP%3Esuccessfully%20flashed%20uboot%2Czimage%2C*dtb%20and%20rootfs%20in%20sdcard%20and%20tried%20to%20bootup%20the%20board.but%20it%20stucks%20at%20one%20point%3C%2FP%3E%3CP%3Emy%20debug%20log%20is%20below.%20how%20can%20i%20fix%20it%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EU-Boot%202015.04-gb8837c4-dirty%20(Aug%2013%202019%20-%2017%3A05%3A21)%3C%2FP%3E%3CP%3ECPU%3A%20Freescale%20i.MX6Q%20rev1.2%20at%20792%20MHz%3CBR%20%2F%3ECPU%3A%20Temperature%2041%20C%3CBR%20%2F%3EReset%20cause%3A%20POR%3CBR%20%2F%3EBoard%3A%20MX6Q-Sabreauto%20revA%3CBR%20%2F%3EI2C%3A%20ready%3CBR%20%2F%3EDRAM%3A%202%20GiB%3CBR%20%2F%3EPMIC%3A%20PFUZE100%20ID%3D0x10%3CBR%20%2F%3ENAND%3A%200%20MiB%3CBR%20%2F%3EMMC%3A%20FSL_SDHC%3A%200%2C%20FSL_SDHC%3A%201%3CBR%20%2F%3ENo%20panel%20detected%3A%20default%20to%20HDMI%3CBR%20%2F%3EDisplay%3A%20HDMI%20(640x480)%3CBR%20%2F%3EIn%3A%20serial%3CBR%20%2F%3EOut%3A%20serial%3CBR%20%2F%3EErr%3A%20serial%3CBR%20%2F%3Eswitch%20to%20partitions%20%230%2C%20OK%3CBR%20%2F%3Emmc1%20is%20current%20device%3CBR%20%2F%3ENet%3A%20FEC%20%5BPRIME%5D%3CBR%20%2F%3EError%3A%20FEC%20address%20not%20set.%3C%2FP%3E%3CP%3ENormal%20Boot%3CBR%20%2F%3EHit%20any%20key%20to%20stop%20autoboot%3A%200%20%3CBR%20%2F%3Eswitch%20to%20partitions%20%230%2C%20OK%3CBR%20%2F%3Emmc1%20is%20current%20device%3CBR%20%2F%3Ereading%20boot.scr%3CBR%20%2F%3E**%20Unable%20to%20read%20file%20boot.scr%20**%3CBR%20%2F%3Ereading%20zImage%3CBR%20%2F%3E6022032%20bytes%20read%20in%20293%20ms%20(19.6%20MiB%2Fs)%3CBR%20%2F%3EBooting%20from%20mmc%20...%3CBR%20%2F%3Ereading%20imx6q-sabreauto.dtb%3CBR%20%2F%3E41594%20bytes%20read%20in%2019%20ms%20(2.1%20MiB%2Fs)%3CBR%20%2F%3EKernel%20image%20%40%200x12000000%20%5B%200x000000%20-%200x5be390%20%5D%3CBR%20%2F%3E%23%23%20Flattened%20Device%20Tree%20blob%20at%2018000000%3CBR%20%2F%3E%20Booting%20using%20the%20fdt%20blob%20at%200x18000000%3CBR%20%2F%3E%20Using%20Device%20Tree%20in%20place%20at%2018000000%2C%20end%201800d279%3C%2FP%3E%3CP%3EStarting%20kernel%20...%3C%2FP%3E%3CP%3EBooting%20Linux%20on%20physical%20CPU%200x0%3CBR%20%2F%3ELinux%20version%203.14.52-g0e08af9-dirty%20(BspDeveloper2%40BspDeveloper2)%20(gcc%20version%204.8.5%20(Linaro%20GCC%204.8-2015.06)%20)%20%239%20SMP%20PREEMPT%20Tue%20Aug%2013%2016%3A58%3A40%20IST%202019%3CBR%20%2F%3ECPU%3A%20ARMv7%20Processor%20%5B412fc09a%5D%20revision%2010%20(ARMv7)%2C%20cr%3D10c53c7d%3CBR%20%2F%3ECPU%3A%20PIPT%20%2F%20VIPT%20nonaliasing%20data%20cache%2C%20VIPT%20aliasing%20instruction%20cache%3CBR%20%2F%3EMachine%20model%3A%20Freescale%20i.MX6%20Quad%20SABRE%20Automotive%20Board%3CBR%20%2F%3Ecma%3A%20CMA%3A%20reserved%20320%20MiB%20at%206a000000%3CBR%20%2F%3EMemory%20policy%3A%20Data%20cache%20writealloc%3CBR%20%2F%3EPERCPU%3A%20Embedded%208%20pages%2Fcpu%20%40ee71e000%20s8320%20r8192%20d16256%20u32768%3CBR%20%2F%3EBuilt%201%20zonelists%20in%20Zone%20order%2C%20mobility%20grouping%20on.%20Total%20pages%3A%20520720%3CBR%20%2F%3EKernel%20command%20line%3A%20console%3Dttymxc3%2C115200%20root%3D%2Fdev%2Fmmcblk2p2%20rootwait%20rw%3CBR%20%2F%3EPID%20hash%20table%20entries%3A%204096%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3EDentry%20cache%20hash%20table%20entries%3A%20262144%20(order%3A%208%2C%201048576%20bytes)%3CBR%20%2F%3EInode-cache%20hash%20table%20entries%3A%20131072%20(order%3A%207%2C%20524288%20bytes)%3CBR%20%2F%3EMemory%3A%201739236K%2F2097152K%20available%20(7452K%20kernel%20code%2C%20460K%20rwdata%2C%202596K%20rodata%2C%20392K%20init%2C%20433K%20bss%2C%20357916K%20reserved%2C%20270336K%20highmem)%3CBR%20%2F%3EVirtual%20kernel%20memory%20layout%3A%3CBR%20%2F%3E%20vector%20%3A%200xffff0000%20-%200xffff1000%20(%204%20kB)%3CBR%20%2F%3E%20fixmap%20%3A%200xfff00000%20-%200xfffe0000%20(%20896%20kB)%3CBR%20%2F%3E%20vmalloc%20%3A%200xf0000000%20-%200xff000000%20(%20240%20MB)%3CBR%20%2F%3E%20lowmem%20%3A%200x80000000%20-%200xef800000%20(1784%20MB)%3CBR%20%2F%3E%20pkmap%20%3A%200x7fe00000%20-%200x80000000%20(%202%20MB)%3CBR%20%2F%3E%20modules%20%3A%200x7f000000%20-%200x7fe00000%20(%2014%20MB)%3CBR%20%2F%3E%20.text%20%3A%200x80008000%20-%200x809d828c%20(10049%20kB)%3CBR%20%2F%3E%20.init%20%3A%200x809d9000%20-%200x80a3b080%20(%20393%20kB)%3CBR%20%2F%3E%20.data%20%3A%200x80a3c000%20-%200x80aaf340%20(%20461%20kB)%3CBR%20%2F%3E%20.bss%20%3A%200x80aaf34c%20-%200x80b1b99c%20(%20434%20kB)%3CBR%20%2F%3ESLUB%3A%20HWalign%3D64%2C%20Order%3D0-3%2C%20MinObjects%3D0%2C%20CPUs%3D4%2C%20Nodes%3D1%3CBR%20%2F%3EPreemptible%20hierarchical%20RCU%20implementation.%3CBR%20%2F%3ENR_IRQS%3A16%20nr_irqs%3A16%2016%3CBR%20%2F%3EL310%20cache%20controller%20enabled%3CBR%20%2F%3El2x0%3A%2016%20ways%2C%20CACHE_ID%200x410000c7%2C%20AUX_CTRL%200x32070000%2C%20Cache%20size%3A%201024%20kB%3CBR%20%2F%3ESwitching%20to%20timer-based%20delay%20loop%3CBR%20%2F%3Esched_clock%3A%2032%20bits%20at%203000kHz%2C%20resolution%20333ns%2C%20wraps%20every%201431655765682ns%3CBR%20%2F%3EConsole%3A%20colour%20dummy%20device%2080x30%3CBR%20%2F%3ECalibrating%20delay%20loop%20(skipped)%2C%20value%20calculated%20using%20timer%20frequency..%206.00%20BogoMIPS%20(lpj%3D30000)%3CBR%20%2F%3Epid_max%3A%20default%3A%2032768%20minimum%3A%20301%3CBR%20%2F%3EMount-cache%20hash%20table%20entries%3A%204096%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3EMountpoint-cache%20hash%20table%20entries%3A%204096%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3ECPU%3A%20Testing%20write%20buffer%20coherency%3A%20ok%3CBR%20%2F%3ECPU0%3A%20thread%20-1%2C%20cpu%200%2C%20socket%200%2C%20mpidr%2080000000%3CBR%20%2F%3ESetting%20up%20static%20identity%20map%20for%200x10717d60%20-%200x10717db8%3CBR%20%2F%3ECPU1%3A%20Booted%20secondary%20processor%3CBR%20%2F%3ECPU1%3A%20thread%20-1%2C%20cpu%201%2C%20socket%200%2C%20mpidr%2080000001%3CBR%20%2F%3ECPU2%3A%20Booted%20secondary%20processor%3CBR%20%2F%3ECPU2%3A%20thread%20-1%2C%20cpu%202%2C%20socket%200%2C%20mpidr%2080000002%3CBR%20%2F%3ECPU3%3A%20Booted%20secondary%20processor%3CBR%20%2F%3ECPU3%3A%20thread%20-1%2C%20cpu%203%2C%20socket%200%2C%20mpidr%2080000003%3CBR%20%2F%3EBrought%20up%204%20CPUs%3CBR%20%2F%3ESMP%3A%20Total%20of%204%20processors%20activated%20(24.00%20BogoMIPS).%3CBR%20%2F%3ECPU%3A%20All%20CPU(s)%20started%20in%20SVC%20mode.%3CBR%20%2F%3Edevtmpfs%3A%20initialized%3CBR%20%2F%3EVFP%20support%20v0.3%3A%20implementor%2041%20architecture%203%20part%2030%20variant%209%20rev%204%3CBR%20%2F%3Epinctrl%20core%3A%20initialized%20pinctrl%20subsystem%3CBR%20%2F%3Eregulator-dummy%3A%20no%20parameters%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2016%3CBR%20%2F%3EDMA%3A%20preallocated%20256%20KiB%20pool%20for%20atomic%20coherent%20allocations%3CBR%20%2F%3Ecpuidle%3A%20using%20governor%20ladder%3CBR%20%2F%3Ecpuidle%3A%20using%20governor%20menu%3CBR%20%2F%3ECPU%20identified%20as%20i.MX6Q%2C%20silicon%20rev%201.2%3CBR%20%2F%3EUse%20WDOG1%20as%20reset%20source%3CBR%20%2F%3Esyscon%2020c8000.anatop%3A%20regmap%20%5Bmem%200x020c8000-0x020c8fff%5D%20registered%3CBR%20%2F%3Evdd1p1%3A%20800%20%26lt%3B--%26gt%3B%201375%20mV%20at%201100%20mV%20%3CBR%20%2F%3Evdd3p0%3A%202625%20%26lt%3B--%26gt%3B%203400%20mV%20at%203000%20mV%20%3CBR%20%2F%3Evdd2p5%3A%202000%20%26lt%3B--%26gt%3B%202750%20mV%20at%202400%20mV%20%3CBR%20%2F%3Evddarm%3A%20725%20%26lt%3B--%26gt%3B%201450%20mV%20at%201150%20mV%20%3CBR%20%2F%3Evddpu%3A%20725%20%26lt%3B--%26gt%3B%201450%20mV%20%3CBR%20%2F%3Evddsoc%3A%20725%20%26lt%3B--%26gt%3B%201450%20mV%20at%201175%20mV%20%3CBR%20%2F%3Esyscon%2020e0000.iomuxc-gpr%3A%20regmap%20%5Bmem%200x020e0000-0x020e0037%5D%20registered%3CBR%20%2F%3Esyscon%2021bc000.ocotp-ctrl%3A%20regmap%20%5Bmem%200x021bc000-0x021bffff%5D%20registered%3CBR%20%2F%3Ehw-breakpoint%3A%20found%205%20(%2B1%20reserved)%20breakpoint%20and%201%20watchpoint%20registers.%3CBR%20%2F%3Ehw-breakpoint%3A%20maximum%20watchpoint%20size%20is%204%20bytes.%3CBR%20%2F%3Eimx6q-pinctrl%2020e0000.iomuxc%3A%20initialized%20IMX%20pinctrl%20driver%3CBR%20%2F%3Ebio%3A%20create%20slab%20%3CBIO-0%3E%20at%200%3CBR%20%2F%3Emxs-dma%20110000.dma-apbh%3A%20initialized%3CBR%20%2F%3Ecs42888_supply%3A%203300%20mV%20%3CBR%20%2F%3E3P3V%3A%203300%20mV%20%3CBR%20%2F%3Evio1%3A%203300%20mV%20%3CBR%20%2F%3Evio2%3A%203300%20mV%20%3CBR%20%2F%3Evd%3A%203300%20mV%20%3CBR%20%2F%3Eva%3A%205000%20mV%20%3CBR%20%2F%3Eplatform%20usb_h1_vbus.29%3A%20Driver%20reg-fixed-voltage%20requests%20probe%20deferral%3CBR%20%2F%3Eplatform%20usb_otg_vbus.30%3A%20Driver%20reg-fixed-voltage%20requests%20probe%20deferral%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmax17135%5D%20using%20legacy%20suspend%20method%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmax17135%5D%20using%20legacy%20resume%20method%3CBR%20%2F%3ESCSI%20subsystem%20initialized%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usbfs%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20hub%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20device%20driver%20usb%3CBR%20%2F%3Eusbphy_nop1.12%20supply%20vcc%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Eusbphy_nop2.13%20supply%20vcc%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Ei2c%20i2c-1%3A%20IMX%20I2C%20adapter%20registered%3CBR%20%2F%3Epca953x%202-0032%3A%20failed%20reading%20register%3CBR%20%2F%3Epca953x%3A%20probe%20of%202-0032%20failed%20with%20error%20-5%3CBR%20%2F%3Ei2c%20i2c-2%3A%20IMX%20I2C%20adapter%20registered%3CBR%20%2F%3ELinux%20video%20capture%20interface%3A%20v2.00%3CBR%20%2F%3Epps_core%3A%20LinuxPPS%20API%20ver.%201%20registered%3CBR%20%2F%3E%3CSPAN%3Epps_core%3A%20Software%20ver.%205.3.6%20-%20Copyright%202005-2007%20Rodolfo%20Giometti%20%26lt%3B%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-email-small%22%20href%3D%22mailto%3Agiometti%40linux.it%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Egiometti%40linux.it%3C%2FA%3E%3CSPAN%3E%26gt%3B%3C%2FSPAN%3E%3CBR%20%2F%3EPTP%20clock%20support%20registered%3CBR%20%2F%3Eimx-ipuv3%202400000.ipu%3A%20IPU%20DMFC%20NORMAL%20mode%3A%201(0~1)%2C%205B(4%2C5)%2C%205F(6%2C7)%3CBR%20%2F%3Eimx-ipuv3%202800000.ipu%3A%20IPU%20DMFC%20NORMAL%20mode%3A%201(0~1)%2C%205B(4%2C5)%2C%205F(6%2C7)%3CBR%20%2F%3EMIPI%20CSI2%20driver%20module%20loaded%3CBR%20%2F%3EAdvanced%20Linux%20Sound%20Architecture%20Driver%20Initialized.%3CBR%20%2F%3EBluetooth%3A%20Core%20ver%202.18%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2031%3CBR%20%2F%3EBluetooth%3A%20HCI%20device%20and%20connection%20manager%20initialized%3CBR%20%2F%3EBluetooth%3A%20HCI%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20L2CAP%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20SCO%20socket%20layer%20initialized%3CBR%20%2F%3Ecfg80211%3A%20Calling%20CRDA%20to%20update%20world%20regulatory%20domain%3CBR%20%2F%3ESwitched%20to%20clocksource%20mxc_timer1%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%202%3CBR%20%2F%3ETCP%20established%20hash%20table%20entries%3A%2016384%20(order%3A%204%2C%2065536%20bytes)%3CBR%20%2F%3ETCP%20bind%20hash%20table%20entries%3A%2016384%20(order%3A%205%2C%20131072%20bytes)%3CBR%20%2F%3ETCP%3A%20Hash%20tables%20configured%20(established%2016384%20bind%2016384)%3CBR%20%2F%3ETCP%3A%20reno%20registered%3CBR%20%2F%3EUDP%20hash%20table%20entries%3A%201024%20(order%3A%203%2C%2032768%20bytes)%3CBR%20%2F%3EUDP-Lite%20hash%20table%20entries%3A%201024%20(order%3A%203%2C%2032768%20bytes)%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%201%3CBR%20%2F%3ERPC%3A%20Registered%20named%20UNIX%20socket%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20udp%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20tcp%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20tcp%20NFSv4.1%20backchannel%20transport%20module.%3CBR%20%2F%3Ehw%20perfevents%3A%20enabled%20with%20ARMv7%20Cortex-A9%20PMU%20driver%2C%207%20counters%20available%3CBR%20%2F%3Eimx%20rpmsg%20driver%20is%20registered.%3CBR%20%2F%3Eimx_busfreq%20busfreq.16%3A%20DDR%20medium%20rate%20not%20supported.%3CBR%20%2F%3EBus%20freq%20driver%20module%20loaded%3CBR%20%2F%3Efutex%20hash%20table%20entries%3A%201024%20(order%3A%204%2C%2065536%20bytes)%3CBR%20%2F%3Ebounce%20pool%20size%3A%2064%20pages%3CBR%20%2F%3EVFS%3A%20Disk%20quotas%20dquot_6.5.2%3CBR%20%2F%3EDquot-cache%20hash%20table%20entries%3A%201024%20(order%200%2C%204096%20bytes)%3CBR%20%2F%3ENFS%3A%20Registering%20the%20id_resolver%20key%20type%3CBR%20%2F%3EKey%20type%20id_resolver%20registered%3CBR%20%2F%3EKey%20type%20id_legacy%20registered%3CBR%20%2F%3Ejffs2%3A%20version%202.2.%20(NAND)%20%C2%A9%202001-2006%20Red%20Hat%2C%20Inc.%3CBR%20%2F%3Efuse%20init%20(API%20version%207.22)%3CBR%20%2F%3Emsgmni%20has%20been%20set%20to%203508%3CBR%20%2F%3Eio%20scheduler%20noop%20registered%3CBR%20%2F%3Eio%20scheduler%20deadline%20registered%3CBR%20%2F%3Eio%20scheduler%20cfq%20registered%20(default)%3CBR%20%2F%3Eimx-weim%2021b8000.weim%3A%20Driver%20registered.%3CBR%20%2F%3Ebacklight.17%20supply%20power%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3EMIPI%20DSI%20driver%20module%20loaded%3CBR%20%2F%3EMIPI%20DSI%20driver%20module%20loaded%3CBR%20%2F%3Emxc_sdc_fb%20fb.22%3A%20registered%20mxc%20display%20driver%20ldb%3CBR%20%2F%3Eimx-ipuv3%202800000.ipu%3A%20IPU%20DMFC%20DP%20HIGH%20RESOLUTION%3A%201(0%2C1)%2C%205B(2~5)%2C%205F(6%2C7)%3CBR%20%2F%3EConsole%3A%20switching%20to%20colour%20frame%20buffer%20device%20128x48%3CBR%20%2F%3Emxc_hdmi%2020e0000.hdmi_video%3A%20Detected%20HDMI%20controller%200x13%3A0xa%3A0xa0%3A0xc1%3CBR%20%2F%3Efbcvt%3A%201920x1080%4060%3A%20CVT%20Name%20-%202.073M9%3CBR%20%2F%3Emxc_sdc_fb%20fb.23%3A%20registered%20mxc%20display%20driver%20hdmi%3CBR%20%2F%3Emxc_sdc_fb%20fb.24%3A%20NO%20mxc%20display%20driver%20found!%3CBR%20%2F%3Emxc_sdc_fb%20fb.25%3A%20registered%20mxc%20display%20driver%20ldb%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20no%20iram%20assigned%2C%20using%20external%20mem%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20no%20event%20needs%20to%20be%20remapped%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20loaded%20firmware%203.2%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20initialized%3CBR%20%2F%3Epfuze100-regulator%201-0008%3A%20Full%20layer%3A%202%2C%20Metal%20layer%3A%201%3CBR%20%2F%3Epfuze100-regulator%201-0008%3A%20FAB%3A%200%2C%20FIN%3A%200%3CBR%20%2F%3Epfuze100-regulator%201-0008%3A%20pfuze100%20found.%3CBR%20%2F%3ESW1AB%3A%20300%20%26lt%3B--%26gt%3B%201875%20mV%20at%201375%20mV%20%3CBR%20%2F%3ESW1C%3A%20300%20%26lt%3B--%26gt%3B%201875%20mV%20at%201375%20mV%20%3CBR%20%2F%3ESW2%3A%20800%20%26lt%3B--%26gt%3B%203300%20mV%20at%203000%20mV%20%3CBR%20%2F%3ESW3A%3A%20400%20%26lt%3B--%26gt%3B%201975%20mV%20at%201500%20mV%20%3CBR%20%2F%3ESW3B%3A%20400%20%26lt%3B--%26gt%3B%201975%20mV%20at%201500%20mV%20%3CBR%20%2F%3ESW4%3A%20800%20%26lt%3B--%26gt%3B%201975%20mV%20at%201800%20mV%20%3CBR%20%2F%3ESWBST%3A%205000%20%26lt%3B--%26gt%3B%205150%20mV%20at%205000%20mV%20%3CBR%20%2F%3EVSNVS%3A%201000%20%26lt%3B--%26gt%3B%203000%20mV%20at%203000%20mV%20%3CBR%20%2F%3EVREFDDR%3A%20750%20mV%20%3CBR%20%2F%3EVGEN1%3A%20800%20%26lt%3B--%26gt%3B%201550%20mV%20at%20800%20mV%20%3CBR%20%2F%3EVGEN2%3A%20800%20%26lt%3B--%26gt%3B%201550%20mV%20at%201500%20mV%20%3CBR%20%2F%3EVGEN3%3A%201800%20%26lt%3B--%26gt%3B%203300%20mV%20at%201800%20mV%20%3CBR%20%2F%3EVGEN4%3A%201800%20%26lt%3B--%26gt%3B%203300%20mV%20at%201800%20mV%20%3CBR%20%2F%3EVGEN5%3A%201800%20%26lt%3B--%26gt%3B%203300%20mV%20at%202500%20mV%20%3CBR%20%2F%3EVGEN6%3A%201800%20%26lt%3B--%26gt%3B%203300%20mV%20at%202800%20mV%20%3CBR%20%2F%3ESerial%3A%20IMX%20driver%3CBR%20%2F%3E21ec000.serial%3A%20ttymxc2%20at%20MMIO%200x21ec000%20(irq%20%3D%2060%2C%20base_baud%20%3D%205000000)%20is%20a%20IMX%3CBR%20%2F%3E21f0000.serial%3A%20ttymxc3%20at%20MMIO%200x21f0000%20(irq%20%3D%2061%2C%20base_baud%20%3D%205000000)%20is%20a%20IMX%3CBR%20%2F%3Econsole%20%5Bttymxc3%5D%20enabled%3CBR%20%2F%3Eserial%3A%20Freescale%20lpuart%20driver%3CBR%20%2F%3Eimx%20sema4%20driver%20is%20registered.%3CBR%20%2F%3E%5Bdrm%5D%20Initialized%20drm%201.1.0%2020060810%3CBR%20%2F%3E%5Bdrm%5D%20Initialized%20vivante%201.0.0%2020120216%20on%20minor%200%3CBR%20%2F%3Ebrd%3A%20module%20loaded%3CBR%20%2F%3Eloop%3A%20module%20loaded%3CBR%20%2F%3Esi476x-core%201-0063%3A%20Using%20default%20platform%20data.%3CBR%20%2F%3Esi476x-core%201-0063%3A%20No%20IRQ%20number%20specified%2C%20will%20use%20polling%3CBR%20%2F%3Esi476x-core%201-0063%3A%20Error%20while%20sending%20command%200x11%3CBR%20%2F%3Esi476x-core%201-0063%3A%20The%20device%20in%20inconsistent%20power%20state%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Ctransmit-level-mV%20not%20specified%2C%20using%2000000024%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Ctransmit-boost-mdB%20not%20specified%2C%20using%2000000480%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Ctransmit-atten-16ths%20not%20specified%2C%20using%2000002000%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Creceive-eq-mdB%20not%20specified%2C%20using%2005000000%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20failed%20to%20reset%20phy%3A%20-110%3CBR%20%2F%3Eahci-imx%3A%20probe%20of%202200000.sata%20failed%20with%20error%20-110%3CBR%20%2F%3ECAN%20device%20driver%20interface%3CBR%20%2F%3E2094000.can%20supply%20xceiver%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Eflexcan%202094000.can%3A%20device%20registered%20(reg_base%3Df01f0000%2C%20irq%3D143)%3CBR%20%2F%3Eehci_hcd%3A%20USB%202.0%20'Enhanced'%20Host%20Controller%20(EHCI)%20Driver%3CBR%20%2F%3Eehci-mxc%3A%20Freescale%20On-Chip%20EHCI%20Host%20driver%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usb-storage%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usb_ehset_test%3CBR%20%2F%3E2184800.usbmisc%20supply%20vbus-wakeup%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Eimx_usb%202184000.usb%3A%20Can't%20register%20ci_hdrc%20platform%20device%2C%20err%3D-517%3CBR%20%2F%3Eplatform%202184000.usb%3A%20Driver%20imx_usb%20requests%20probe%20deferral%3CBR%20%2F%3Eimx_usb%202184200.usb%3A%20Can't%20register%20ci_hdrc%20platform%20device%2C%20err%3D-517%3CBR%20%2F%3Eplatform%202184200.usb%3A%20Driver%20imx_usb%20requests%20probe%20deferral%3CBR%20%2F%3Emousedev%3A%20PS%2F2%20mouse%20device%20common%20for%20all%20mice%3CBR%20%2F%3Eegalax_ts%201-0004%3A%20Failed%20to%20read%20firmware%20version%3CBR%20%2F%3Eegalax_ts%3A%20probe%20of%201-0004%20failed%20with%20error%20-5%3CBR%20%2F%3E2-0044%20supply%20vdd%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bisl29023%5D%20using%20legacy%20suspend%20method%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bisl29023%5D%20using%20legacy%20resume%20method%3CBR%20%2F%3Esnvs_rtc%2020cc034.snvs-rtc-lp%3A%20can't%20get%20snvs-rtc%20clock%3CBR%20%2F%3Esnvs_rtc%2020cc034.snvs-rtc-lp%3A%20rtc%20core%3A%20registered%2020cc034.snvs-rtc-lp%20as%20rtc0%3CBR%20%2F%3Ei2c%20%2Fdev%20entries%20driver%3CBR%20%2F%3EIR%20NEC%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20RC5(x)%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20RC6%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20JVC%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20Sony%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20RC5%20(streamzap)%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20SANYO%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20MCE%20Keyboard%2Fmouse%20protocol%20handler%20initialized%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out.33%3A%20V4L2%20device%20registered%20as%20video16%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out.33%3A%20V4L2%20device%20registered%20as%20video17%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out.33%3A%20V4L2%20device%20registered%20as%20video18%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out.33%3A%20V4L2%20device%20registered%20as%20video19%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out.33%3A%20V4L2%20device%20registered%20as%20video20%3CBR%20%2F%3E2-000e%20supply%20vdd%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3E2-000e%20supply%20vddio%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Emag3110%202-000e%3A%20check%20mag3110%20chip%20ID%3CBR%20%2F%3Emag3110%202-000e%3A%20read%20chip%20ID%200xfffffffb%20is%20not%20equal%20to%200xc4!%3CBR%20%2F%3Emag3110%3A%20probe%20of%202-000e%20failed%20with%20error%20-22%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmag3110%5D%20using%20legacy%20suspend%20method%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmag3110%5D%20using%20legacy%20resume%20method%3CBR%20%2F%3E2-001c%20supply%20vdd%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3E2-001c%20supply%20vddio%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Emma8451%202-001c%3A%20read%20chip%20ID%200x1%20is%20not%20equal%20to%200x1a%20or%200x2a!%3CBR%20%2F%3Emma8451%3A%20probe%20of%202-001c%20failed%20with%20error%20-22%3CBR%20%2F%3Eimx2-wdt%2020bc000.wdog%3A%20IMX2%2B%20Watchdog%20Timer%20enabled.%20timeout%3D60s%20(nowayout%3D0)%3CBR%20%2F%3EBluetooth%3A%20HCI%20UART%20driver%20ver%202.2%3CBR%20%2F%3EBluetooth%3A%20HCI%20H4%20protocol%20initialized%3CBR%20%2F%3EBluetooth%3A%20HCI%20BCSP%20protocol%20initialized%3CBR%20%2F%3EBluetooth%3A%20HCIATH3K%20protocol%20initialized%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20bcm203x%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20btusb%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20ath3k%3CBR%20%2F%3Esdhci%3A%20Secure%20Digital%20Host%20Controller%20Interface%20driver%3CBR%20%2F%3Esdhci%3A%20Copyright(c)%20Pierre%20Ossman%3CBR%20%2F%3Esdhci-pltfm%3A%20SDHCI%20platform%20and%20OF%20driver%20helper%3CBR%20%2F%3Emmc1%3A%20no%20vqmmc%20regulator%20found%3CBR%20%2F%3Emmc1%3A%20no%20vmmc%20regulator%20found%3CBR%20%2F%3Emmc1%3A%20SDHCI%20controller%20on%202194000.usdhc%20%5B2194000.usdhc%5D%20using%20ADMA%3CBR%20%2F%3Emmc2%3A%20no%20vqmmc%20regulator%20found%3CBR%20%2F%3Emmc2%3A%20no%20vmmc%20regulator%20found%3CBR%20%2F%3Emmc2%3A%20SDHCI%20controller%20on%202198000.usdhc%20%5B2198000.usdhc%5D%20using%20ADMA%3CBR%20%2F%3EGalcore%20version%205.0.11.33433%3CBR%20%2F%3Emmc1%3A%20new%20high%20speed%20DDR%20MMC%20card%20at%20address%200001%3CBR%20%2F%3Emmcblk1%3A%20mmc1%3A0001%20VM010B%2014.5%20GiB%20%3CBR%20%2F%3Emmcblk1boot0%3A%20mmc1%3A0001%20VM010B%20partition%201%20512%20KiB%3CBR%20%2F%3Emmcblk1boot1%3A%20mmc1%3A0001%20VM010B%20partition%202%20512%20KiB%3CBR%20%2F%3Emmcblk1rpmb%3A%20mmc1%3A0001%20VM010B%20partition%203%20512%20KiB%3CBR%20%2F%3EAlternate%20GPT%20is%20invalid%2C%20using%20primary%20GPT.%3CBR%20%2F%3E%20mmcblk1%3A%20p1%20p2%20p3%20p4%20p5%20p6%20p7%3CBR%20%2F%3E%20mmcblk1boot1%3A%20unknown%20partition%20table%3CBR%20%2F%3E%20mmcblk1boot0%3A%20unknown%20partition%20table%3CBR%20%2F%3Emmc2%3A%20host%20does%20not%20support%20reading%20read-only%20switch.%20assuming%20write-enable.%3CBR%20%2F%3Emmc2%3A%20new%20high%20speed%20SDHC%20card%20at%20address%20e624%3CBR%20%2F%3Emmcblk2%3A%20mmc2%3Ae624%20SS16G%2014.8%20GiB%20%3CBR%20%2F%3E%20mmcblk2%3A%20p1%20p2%3CBR%20%2F%3Emxc_vdoa%2021e4000.vdoa%3A%20i.MX%20Video%20Data%20Order%20Adapter(VDOA)%20driver%20probed%3CBR%20%2F%3Emxc_vpu%202040000.vpu%3A%20VPU%20initialized%3CBR%20%2F%3Ecaam%202100000.caam%3A%20Instantiated%20RNG4%20SH0%3CBR%20%2F%3Ecaam%202100000.caam%3A%20Instantiated%20RNG4%20SH1%3CBR%20%2F%3Ecaam%202100000.caam%3A%20device%20ID%20%3D%200x0a160100%20(Era%204)%3CBR%20%2F%3Ecaam%202100000.caam%3A%20job%20rings%20%3D%202%2C%20qi%20%3D%200%3CBR%20%2F%3Ecaam%20algorithms%20registered%20in%20%2Fproc%2Fcrypto%3CBR%20%2F%3Ecaam_jr%202101000.jr0%3A%20registering%20rng-caam%3CBR%20%2F%3Eplatform%20caam_sm%3A%20blkkey_ex%3A%204%20keystore%20units%20available%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2017%20d4%2014%20e3%20cd%2014%2099%203c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2028%20ac%2013%20da%204f%2013%2086%20b9%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2008%2009%200a%200b%200c%200d%200e%200f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2047%2020%20d5%208a%2008%202e%20c9%2076%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2021%20a3%20ab%2086%2072%20eb%20e0%20d7%3CBR%20%2F%3Eplatform%20caam_sm%3A%20192-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2008%2009%200a%200b%200c%200d%200e%200f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2010%2011%2012%2013%2014%2015%2016%2017%3CBR%20%2F%3Eplatform%20caam_sm%3A%20192-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20a0%20ab%2018%20b1%20c0%2086%2052%20c3%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2026%2002%2062%2070%20a8%2078%204c%20f2%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%204e%206c%20e5%2031%207e%206c%20d1%2025%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2048%2062%2078%2086%2093%2070%2062%20ff%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2008%2009%200a%200b%200c%200d%200e%200f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2010%2011%2012%2013%2014%2015%2016%2017%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2018%2019%201a%201b%201c%201d%201e%201f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2061%2042%20d7%20cf%2079%20ad%2081%205c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20cc%201b%209e%205c%20a0%2020%200e%2054%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%20ed%20fa%2074%2003%2008%20e1%2096%20e2%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%205c%2085%20e0%20cc%20ab%20f4%209e%203b%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20196-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20fc%20e1%202d%202c%2081%2075%205e%2099%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%202d%2093%209b%20b0%20a6%205a%203d%2049%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2098%2096%209d%200c%2039%2036%20da%2072%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%20f9%201d%2066%200c%2078%2024%2020%209a%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2085%203c%2092%201e%20a4%2055%20d2%204b%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%20e4%207a%20ed%2019%20af%2070%202e%20f6%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%20cf%20c9%2007%200e%2082%2019%2047%207f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20c6%20ae%2004%2056%20f6%205e%20c2%201b%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20d9%206c%2007%2089%209d%201e%2020%200f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2072%204c%2063%20e1%20ed%20d2%20fd%2068%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2099%2081%2017%2032%2033%2039%202a%201c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%20fb%20e4%20bb%20db%200c%2007%20c0%20f2%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%20eb%2023%20cf%2079%2064%202a%20ca%20f3%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%20d9%2084%20ac%2022%200b%2049%2079%20e9%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%207d%208b%2097%2009%206a%20d4%2072%200b%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20192-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%209c%20ec%2058%2009%2050%2020%2080%201d%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2021%20b6%20e3%2064%2041%20ed%2014%2012%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2016%20e1%20c7%20d3%20fe%2054%2040%20ed%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%20bc%2092%20e0%200c%206b%200a%20ec%2002%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%203b%2060%206f%2018%2020%2026%20e4%2004%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%20c2%2094%205e%202f%201e%20e4%2099%20b1%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%209c%2005%2065%2095%209b%208d%20db%2072%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%20a8%2050%20b0%2050%209d%20f8%2067%2066%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2033%20ae%2046%20e9%2042%206c%20fb%20ab%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%209b%2050%206d%2078%2093%20a8%2008%2084%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20e5%203b%2026%2018%201d%206a%2042%2080%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%203f%20c9%207f%204d%20dd%201a%20b6%20a3%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2002%206a%204d%2064%20a6%20cc%20c3%2061%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2015%209e%20c8%201f%2075%2072%2001%20af%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%20f5%2087%20b3%2078%20b0%2078%203f%2034%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%20bf%2019%2080%2005%2072%2032%20c2%2082%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%20d1%20fd%204c%20f7%20c6%20c9%2098%2085%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%209d%2002%2055%2075%2035%20d5%20ef%20ca%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2080%20f5%2021%2087%20ef%206c%20cd%2096%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%2064-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2047%209d%20fa%2049%20f0%20cf%20c5%201c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2090%204d%200a%20e3%20a1%20ee%2072%205c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%20128-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2047%2020%20d5%208a%2008%202e%20c9%2076%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2021%20a3%20ab%2086%2072%20eb%20e0%20d7%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%20192-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20a0%20ab%2018%20b1%20c0%2086%2052%20c3%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2026%2002%2062%2070%20a8%2078%204c%20f2%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%208d%200d%20bc%202d%202c%2090%2067%200c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2093%2091%20ea%2059%2081%20df%2052%20df%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%20256-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2061%2042%20d7%20cf%2079%20ad%2081%205c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20cc%201b%209e%205c%20a0%2020%200e%2054%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%20ed%20fa%2074%2003%2008%20e1%2096%20e2%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%205c%2085%20e0%20cc%20ab%20f4%209e%203b%3CBR%20%2F%3Esnvs-secvio%2020cc000.caam-snvs%3A%20can't%20get%20snvs%20clock%3CBR%20%2F%3Esnvs-secvio%2020cc000.caam-snvs%3A%20violation%20handlers%20armed%20-%20non-secure%20state%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usbhid%3CBR%20%2F%3Eusbhid%3A%20USB%20HID%20core%20driver%3CBR%20%2F%3Ecs42xx8%201-0048%3A%20found%20device%2C%20revision%204%3CBR%20%2F%3Efsl-asrc%202034000.asrc%3A%20driver%20registered%3CBR%20%2F%3Esnd-soc-dummy%20snd-soc-dummy%3A%20ASoC%3A%20Failed%20to%20create%20platform%20debugfs%20directory%3CBR%20%2F%3Eimx-cs42888%20sound-cs42888.26%3A%20cs42888%20%26lt%3B-%26gt%3B%202024000.esai%20mapping%20ok%3CBR%20%2F%3Eimx-cs42888%20sound-cs42888.26%3A%20snd-soc-dummy-dai%20%26lt%3B-%26gt%3B%202034000.asrc%20mapping%20ok%3CBR%20%2F%3Eimx-cs42888%20sound-cs42888.26%3A%20cs42888%20%26lt%3B-%26gt%3B%202024000.esai%20mapping%20ok%3CBR%20%2F%3Eimx-spdif%20sound-spdif.19%3A%20snd-soc-dummy-dai%20%26lt%3B-%26gt%3B%202004000.spdif%20mapping%20ok%3CBR%20%2F%3Eimx-audio-hdmi%20sound-hdmi.20%3A%20hdmi-hifi%20%26lt%3B-%26gt%3B%20hdmi_audio.3%20mapping%20ok%3CBR%20%2F%3Eimx-tuner-si476x%20sound-fm.31%3A%20failed%20to%20find%20FM%20platform%20device%3CBR%20%2F%3Eimx-tuner-si476x%3A%20probe%20of%20sound-fm.31%20failed%20with%20error%20-22%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2026%3CBR%20%2F%3ETCP%3A%20cubic%20registered%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2010%3CBR%20%2F%3Esit%3A%20IPv6%20over%20IPv4%20tunneling%20driver%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2017%3CBR%20%2F%3Ecan%3A%20controller%20area%20network%20core%20(rev%2020120528%20abi%209)%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2029%3CBR%20%2F%3Ecan%3A%20raw%20protocol%20(rev%2020120528)%3CBR%20%2F%3Ecan%3A%20broadcast%20manager%20protocol%20(rev%2020120528%20t)%3CBR%20%2F%3Ecan%3A%20netlink%20gateway%20(rev%2020130117)%20max_hops%3D1%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20TTY%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20ver%201.11%3CBR%20%2F%3EBluetooth%3A%20BNEP%20(Ethernet%20Emulation)%20ver%201.3%3CBR%20%2F%3EBluetooth%3A%20BNEP%20filters%3A%20protocol%20multicast%3CBR%20%2F%3EBluetooth%3A%20BNEP%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20HIDP%20(Human%20Interface%20Emulation)%20ver%201.2%3CBR%20%2F%3EBluetooth%3A%20HIDP%20socket%20layer%20initialized%3CBR%20%2F%3E8021q%3A%20802.1Q%20VLAN%20Support%20v1.8%3CBR%20%2F%3EKey%20type%20dns_resolver%20registered%3CBR%20%2F%3EVGEN2%3A%20disabling%3CBR%20%2F%3ESWBST%3A%20disabling%3CBR%20%2F%3ESW4%3A%20disabling%3CBR%20%2F%3Eregulator-dummy%3A%20disabling%3CBR%20%2F%3Eimx%20mcc%20test%20is%20registered.%3CBR%20%2F%3Eplatform%20usb_h1_vbus.29%3A%20Driver%20reg-fixed-voltage%20requests%20probe%20deferral%3CBR%20%2F%3Eusb_otg_vbus%3A%205000%20mV%20%3CBR%20%2F%3Eimx_usb%202184200.usb%3A%20Can't%20register%20ci_hdrc%20platform%20device%2C%20err%3D-517%3CBR%20%2F%3Eplatform%202184200.usb%3A%20Driver%20imx_usb%20requests%20probe%20deferral%3CBR%20%2F%3Eplatform%20usb_h1_vbus.29%3A%20Driver%20reg-fixed-voltage%20requests%20probe%20deferral%3CBR%20%2F%3Esnvs_rtc%2020cc034.snvs-rtc-lp%3A%20setting%20system%20clock%20to%201970-01-01%2000%3A00%3A02%20UTC%20(2)%3CBR%20%2F%3Eimx_usb%202184200.usb%3A%20Can't%20register%20ci_hdrc%20platform%20device%2C%20err%3D-517%3CBR%20%2F%3EALSA%20device%20list%3A%3CBR%20%2F%3E%20%230%3A%20cs42888-audio%3CBR%20%2F%3E%20%231%3A%20imx-spdif%3CBR%20%2F%3E%20%232%3A%20imx-hdmi-soc%3CBR%20%2F%3Ep%EF%BF%BD%EF%BF%BD%20%EF%BF%BDplatform%20usb_h1_vbus.29%3A%20Driver%20reg-fixed-voltage%20requests%20probe%20deferral%3CBR%20%2F%3Ekjournald%20starting.%20Commit%20interval%205%20seconds%3CBR%20%2F%3EEXT3-fs%20(mmcblk2p2)%3A%20using%20internal%20journal%3CBR%20%2F%3EEXT3-fs%20(mmcblk2p2)%3A%20recovery%20complete%3CBR%20%2F%3EEXT3-fs%20(mmcblk2p2)%3A%20mounted%20filesystem%20with%20ordered%20data%20mode%3CBR%20%2F%3EVFS%3A%20Mounted%20root%20(ext3%20filesystem)%20on%20device%20179%3A34.%3CBR%20%2F%3Edevtmpfs%3A%20error%20mounting%20-2%3CBR%20%2F%3EFreeing%20unused%20kernel%20memory%3A%20392K%20(809d9000%20-%2080a3b000)%3CBR%20%2F%3EKernel%20panic%20-%20not%20syncing%3A%20No%20working%20init%20found.%20Try%20passing%20init%3D%20option%20to%20kernel.%20See%20Linux%20Documentation%2Finit.txt%20for%20guidance.%3CBR%20%2F%3ECPU2%3A%20stopping%3CBR%20%2F%3ECPU%3A%202%20PID%3A%200%20Comm%3A%20swapper%2F2%20Not%20tainted%203.14.52-g0e08af9-dirty%20%239%3CBR%20%2F%3E%5B%26lt%3B80014764%26gt%3B%5D%20(unwind_backtrace)%20from%20%5B%26lt%3B80011488%26gt%3B%5D%20(show_stack%2B0x10%2F0x14)%3CBR%20%2F%3E%5B%26lt%3B80011488%26gt%3B%5D%20(show_stack)%20from%20%5B%26lt%3B807119b4%26gt%3B%5D%20(dump_stack%2B0x7c%2F0xbc)%3CBR%20%2F%3E%5B%26lt%3B807119b4%26gt%3B%5D%20(dump_stack)%20from%20%5B%26lt%3B80013718%26gt%3B%5D%20(handle_IPI%2B0x144%2F0x158)%3CBR%20%2F%3E%5B%26lt%3B80013718%26gt%3B%5D%20(handle_IPI)%20from%20%5B%26lt%3B800085b0%26gt%3B%5D%20(gic_handle_irq%2B0x58%2F0x5c)%3CBR%20%2F%3E%5B%26lt%3B800085b0%26gt%3B%5D%20(gic_handle_irq)%20from%20%5B%26lt%3B80011f80%26gt%3B%5D%20(__irq_svc%2B0x40%2F0x70)%3CBR%20%2F%3EException%20stack(0xd80adf50%20to%200xd80adf98)%3CBR%20%2F%3Edf40%3A%20d80adf98%203b9aca00%20e9b5de9d%2000000000%3CBR%20%2F%3Edf60%3A%20e882c038%2000000000%20ee72f0d0%2080a4a814%2000000001%20ee72f0d4%20d80ac000%20d80ac000%3CBR%20%2F%3Edf80%3A%20a6aaaaab%20d80adf98%2000000009%20804b64bc%2060000113%20ffffffff%3CBR%20%2F%3E%5B%26lt%3B80011f80%26gt%3B%5D%20(__irq_svc)%20from%20%5B%26lt%3B804b64bc%26gt%3B%5D%20(cpuidle_enter_state%2B0x50%2F0xe0)%3CBR%20%2F%3E%5B%26lt%3B804b64bc%26gt%3B%5D%20(cpuidle_enter_state)%20from%20%5B%26lt%3B804b6648%26gt%3B%5D%20(cpuidle_idle_call%2B0xfc%2F0x150)%3CBR%20%2F%3E%5B%26lt%3B804b6648%26gt%3B%5D%20(cpuidle_idle_call)%20from%20%5B%26lt%3B8000edf0%26gt%3B%5D%20(arch_cpu_idle%2B0x8%2F0x44)%3CBR%20%2F%3E%5B%26lt%3B8000edf0%26gt%3B%5D%20(arch_cpu_idle)%20from%20%5B%26lt%3B8006b140%26gt%3B%5D%20(cpu_startup_entry%2B0x104%2F0x150)%3CBR%20%2F%3E%5B%26lt%3B8006b140%26gt%3B%5D%20(cpu_startup_entry)%20from%20%5B%26lt%3B10008644%26gt%3B%5D%20(0x10008644)%3CBR%20%2F%3ECPU0%3A%20stopping%3CBR%20%2F%3ECPU%3A%200%20PID%3A%200%20Comm%3A%20swapper%2F0%20Not%20tainted%203.14.52-g0e08af9-dirty%20%239%3CBR%20%2F%3E%5B%26lt%3B80014764%26gt%3B%5D%20(unwind_backtrace)%20from%20%5B%26lt%3B80011488%26gt%3B%5D%20(show_stack%2B0x10%2F0x14)%3CBR%20%2F%3E%5B%26lt%3B80011488%26gt%3B%5D%20(show_stack)%20from%20%5B%26lt%3B807119b4%26gt%3B%5D%20(dump_stack%2B0x7c%2F0xbc)%3CBR%20%2F%3E%5B%26lt%3B807119b4%26gt%3B%5D%20(dump_stack)%20from%20%5B%26lt%3B80013718%26gt%3B%5D%20(handle_IPI%2B0x144%2F0x158)%3CBR%20%2F%3E%5B%26lt%3B80013718%26gt%3B%5D%20(handle_IPI)%20from%20%5B%26lt%3B800085b0%26gt%3B%5D%20(gic_handle_irq%2B0x58%2F0x5c)%3CBR%20%2F%3E%5B%26lt%3B800085b0%26gt%3B%5D%20(gic_handle_irq)%20from%20%5B%26lt%3B80011f80%26gt%3B%5D%20(__irq_svc%2B0x40%2F0x70)%3CBR%20%2F%3EException%20stack(0x80a3df18%20to%200x80a3df60)%3CBR%20%2F%3Edf00%3A%2080a3df60%203b9aca00%3CBR%20%2F%3Edf20%3A%20e9b5de9d%2000000000%20e883714d%2000000000%20ee71f0d0%2080a4a814%2000000001%20ee71f0d4%3CBR%20%2F%3Edf40%3A%2080a3c000%2080a3c000%20a6aaaaab%2080a3df60%2000000009%20804b64bc%2060000113%20ffffffff%3CBR%20%2F%3E%5B%26lt%3B80011f80%26gt%3B%5D%20(__irq_svc)%20from%20%5B%26lt%3B804b64bc%26gt%3B%5D%20(cpuidle_enter_state%2B0x50%2F0xe0)%3CBR%20%2F%3E%5B%26lt%3B804b64bc%26gt%3B%5D%20(cpuidle_enter_state)%20from%20%5B%26lt%3B804b6648%26gt%3B%5D%20(cpuidle_idle_call%2B0xfc%2F0x150)%3CBR%20%2F%3E%5B%26lt%3B804b6648%26gt%3B%5D%20(cpuidle_idle_call)%20from%20%5B%26lt%3B8000edf0%26gt%3B%5D%20(arch_cpu_idle%2B0x8%2F0x44)%3CBR%20%2F%3E%5B%26lt%3B8000edf0%26gt%3B%5D%20(arch_cpu_idle)%20from%20%5B%26lt%3B8006b140%26gt%3B%5D%20(cpu_startup_entry%2B0x104%2F0x150)%3CBR%20%2F%3E%5B%26lt%3B8006b140%26gt%3B%5D%20(cpu_startup_entry)%20from%20%5B%26lt%3B809d9af0%26gt%3B%5D%20(start_kernel%2B0x350%2F0x35c)%3CBR%20%2F%3ECPU3%3A%20stopping%3CBR%20%2F%3ECPU%3A%203%20PID%3A%200%20Comm%3A%20swapper%2F3%20Not%20tainted%203.14.52-g0e08af9-dirty%20%239%3CBR%20%2F%3E%5B%26lt%3B80014764%26gt%3B%5D%20(unwind_backtrace)%20from%20%5B%26lt%3B80011488%26gt%3B%5D%20(show_stack%2B0x10%2F0x14)%3CBR%20%2F%3E%5B%26lt%3B80011488%26gt%3B%5D%20(show_stack)%20from%20%5B%26lt%3B807119b4%26gt%3B%5D%20(dump_stack%2B0x7c%2F0xbc)%3CBR%20%2F%3E%5B%26lt%3B807119b4%26gt%3B%5D%20(dump_stack)%20from%20%5B%26lt%3B80013718%26gt%3B%5D%20(handle_IPI%2B0x144%2F0x158)%3CBR%20%2F%3E%5B%26lt%3B80013718%26gt%3B%5D%20(handle_IPI)%20from%20%5B%26lt%3B800085b0%26gt%3B%5D%20(gic_handle_irq%2B0x58%2F0x5c)%3CBR%20%2F%3E%5B%26lt%3B800085b0%26gt%3B%5D%20(gic_handle_irq)%20from%20%5B%26lt%3B80011f80%26gt%3B%5D%20(__irq_svc%2B0x40%2F0x70)%3CBR%20%2F%3EException%20stack(0xd80aff50%20to%200xd80aff98)%3CBR%20%2F%3Eff40%3A%20d80aff98%203b9aca00%20e9b5de9d%2000000000%3CBR%20%2F%3Eff60%3A%20e882c2d3%2000000000%20ee7370d0%2080a4a814%2000000001%20ee7370d4%20d80ae000%20d80ae000%3CBR%20%2F%3Eff80%3A%20a6aaaaab%20d80aff98%2000000009%20804b64bc%2060000113%20ffffffff%3CBR%20%2F%3E%5B%26lt%3B80011f80%26gt%3B%5D%20(__irq_svc)%20from%20%5B%26lt%3B804b64bc%26gt%3B%5D%20(cpuidle_enter_state%2B0x50%2F0xe0)%3CBR%20%2F%3E%5B%26lt%3B804b64bc%26gt%3B%5D%20(cpuidle_enter_state)%20from%20%5B%26lt%3B804b6648%26gt%3B%5D%20(cpuidle_idle_call%2B0xfc%2F0x150)%3CBR%20%2F%3E%5B%26lt%3B804b6648%26gt%3B%5D%20(cpuidle_idle_call)%20from%20%5B%26lt%3B8000edf0%26gt%3B%5D%20(arch_cpu_idle%2B0x8%2F0x44)%3CBR%20%2F%3E%5B%26lt%3B8000edf0%26gt%3B%5D%20(arch_cpu_idle)%20from%20%5B%26lt%3B8006b140%26gt%3B%5D%20(cpu_startup_entry%2B0x104%2F0x150)%3CBR%20%2F%3E%5B%26lt%3B8006b140%26gt%3B%5D%20(cpu_startup_entry)%20from%20%5B%26lt%3B10008644%26gt%3B%5D%20(0x10008644)%3C%2FBIO-0%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108550%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108550%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHello%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ECan%20same%20instrctions%20can%20be%20used%20with%20imx.8%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108549%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108549%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3EHi%26nbsp%3B%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%20color%3A%20%2351626f%3B%20font-weight%3A%20400%3B%20font-size%3A%2016px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3Ein%20section%20%22Download%20u-boot%22%20%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%20color%3A%20%2351626f%3B%20font-weight%3A%20400%3B%20font-size%3A%2016px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3EI%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3E%26nbsp%3Bexcuted%20the%20%22make%22%20instruction%20and%20seens%20like%20it%20doesnt%20work%2C%20show%20as%20below%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3Ewhat's%20wrong%20with%20it%3Fhow%20can%20i%20fixed%20it%3F%3C%2FSPAN%3E%3C%2FP%3E%3CP%3EThanks..%3C%2FP%3E%3CBLOCKQUOTE%20class%3D%22jive_macro_quote%20jive-quote%20jive_text_macro%22%3E%3CP%20style%3D%22color%3A%20%23646464%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20200%3B%20font-size%3A%202rem%3B%20margin%3A%200px%200px%2030px%3B%20padding%3A%200px%20300px%200px%200px%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3E..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-gcc%3A%201%3A%20..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-gcc%3A%20Syntax%20error%3A%20%22(%22%20unexpected%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3E..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-gcc%3A%201%3A%20..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-gcc%3A%20Syntax%20error%3A%20%22(%22%20unexpected%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3Edirname%3A%20missing%20operand%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3ETry%20'dirname%20--help'%20for%20more%20information.%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3Escripts%2Fkconfig%2Fconf%20--silentoldconfig%20Kconfig%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3E%20CHK%20include%2Fconfig.h%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3E%20GEN%20include%2Fautoconf.mk%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3E..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-gcc%3A%201%3A%20..%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-gcc%3A%20Syntax%20error%3A%20%22(%22%20unexpected%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3Escripts%2FMakefile.autoconf%3A71%3A%20recipe%20for%20target%20'include%2Fautoconf.mk'%20failed%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3Emake%5B1%5D%3A%20***%20%5Binclude%2Fautoconf.mk%5D%20Error%201%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2015px%3B%20font-family%3A%20'times%20new%20roman'%2C%20times%2C%20serif%3B%22%3Emake%3A%20***%20No%20rule%20to%20make%20target%20'include%2Fconfig%2Fauto.conf'%2C%20needed%20by%20'include%2Fconfig%2Fuboot.release'.%20Stop.%3C%2FSPAN%3E%3C%2FP%3E%3C%2FBLOCKQUOTE%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108547%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108547%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EBasically%2C%20I%20found%20the%20solution.%20To%20generate%20a%20zImage%20instead%20of%20Image%2C%20you%20have%20to%20enter%20make%20menuconfig%20and%20select%20this%20option%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22pastedImage_1.png%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22pastedImage_1.png%22%20style%3D%22width%3A%20492px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F27702iD8C61D7B243F870F%2Fimage-size%2Flarge%3Fv%3Dv2%26amp%3Bpx%3D999%22%20role%3D%22button%22%20title%3D%22pastedImage_1.png%22%20alt%3D%22pastedImage_1.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3EGzip%20is%20not%20the%20defaut%20choice.%26nbsp%3B%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ENow%20I%20have%20a%20ubuntu%2014.04%20running%20on%20my%20I.MX6Q%20SABRESD%20board.%20Thanks%20for%20this%20essential%20post%20!%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108546%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108546%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHello%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks%20for%20this%20great%20post%20!%20My%20goal%20is%20to%20run%20an%20Ubuntu%2014.04%20or%20higher%20on%20my%20IMX6Q%20SABRE%20SD%20board%20from%20the%20mmc%20card.%20I%20am%20following%20the%20post.%26nbsp%3B%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThe%20following%20link%20is%20not%20valid%20any%20more%3A%3C%2FP%3E%3CP%3E%3CA%20class%3D%22link-titled%22%20href%3D%22https%3A%2F%2Freleases.linaro.org%2F14.09%2Fcomponents%2Ftoolchain%2Fbinaries%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux.tar.xz%22%20title%3D%22https%3A%2F%2Freleases.linaro.org%2F14.09%2Fcomponents%2Ftoolchain%2Fbinaries%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux.tar.xz%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Freleases.linaro.org%2F14.09%2Fcomponents%2Ftoolchain%2Fbinaries%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux.tar.xz%3C%2FA%3E%26nbsp%3B%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20replace%20it%20by%20the%20following%20one%3A%26nbsp%3B%3C%2FP%3E%3CP%3E%3CA%20class%3D%22jivelink12%22%20href%3D%22https%3A%2F%2Freleases.linaro.org%2Farchive%2F14.09%2Fcomponents%2Ftoolchain%2Fbinaries%2F%22%20title%3D%22https%3A%2F%2Freleases.linaro.org%2Farchive%2F14.09%2Fcomponents%2Ftoolchain%2Fbinaries%2F%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Freleases.linaro.org%2Farchive%2F14.09%2Fcomponents%2Ftoolchain%2Fbinaries%2F%3C%2FA%3E%3CA%20href%3D%22https%3A%2F%2Freleases.linaro.org%2Farchive%2F14.09%2Fcomponents%2Ftoolchain%2Fbinaries%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux.tar.xz%22%20style%3D%22color%3A%20%23444444%20!important%3B%20background-color%3A%20%23ffffff%3B%20text-decoration%3A%20none%20!important%3B%20font-size%3A%2013px%3B%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Egcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux.tar.xz%3C%2FA%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EBut%20it%20does%20not%20work%2C%20I%20get%20the%20following%20strange%20error%3A%20(same%20error%20described%20by%26nbsp%3B%3CSPAN%20class%3D%22%22%20style%3D%22color%3A%20%235e89c1%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20500%3B%20font-size%3A%2010.9998px%3B%22%3E%3CA%20_jive_internal%3D%22true%22%20data-content-finding%3D%22Community%22%20data-userid%3D%22287259%22%20data-username%3D%22wenmingfeng%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fpeople%2Fwenmingfeng%22%20style%3D%22color%3A%20%235e89c1%3B%20border%3A%200px%3B%20font-weight%3A%20200%3B%20text-decoration%3A%20none%3B%20font-size%3A%201.286rem%3B%22%20target%3D%22_blank%22%3Ewenming%20feng%3C%2FA%3E)%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%3E%2Fbin%2Fsh%3A%201%3A%20%2Fhome%2Fguillaume%2Fgcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux%2Fbin%2Farm-linux-gnueabihf-gcc%3A%20not%20found%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%3EIf%20I%20select%20this%20toolchain%2C%20I%20can%20compile%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22background-color%3A%20%23f6f6f6%3B%20color%3A%20%23008000%3B%22%3Egcc-linaro-4.8-2015.06-x86_64_arm-linux-xxxx%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22background-color%3A%20%23f6f6f6%3B%20color%3A%20%233d3d3d%3B%22%3EBut%20I%20am%20generating%20an%20Image%20file%20and%20%3CSTRONG%3ENOT%20a%20zImage%3C%2FSTRONG%3E%20file.%20And%20u-boot%20does%20not%20take%20it%20(bad%20linux%20arm%20zimage%20magic%20error%20at%20u%20boot%20runtime).%20It%20seems%20that%20it%20exists%20uImage%2C%20Image%20and%20zImage.%20Image%20would%20correspond%20to%20a%2064bit%20image%20if%20I%20understand%20correctly.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22background-color%3A%20%23f6f6f6%3B%20color%3A%20%233d3d3d%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22background-color%3A%20%23f6f6f6%3B%20color%3A%20%233d3d3d%3B%22%3EQuestion%201%3A%20Which%20toolchain%20or%20option%20I%20have%20to%20use%2Fset%20to%20generate%20a%20zImage%20%3F%20(and%20not%20an%20Image)%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22background-color%3A%20%23f6f6f6%3B%20color%3A%20%233d3d3d%3B%22%3EQuestion%202%3A%20Would%20it%20be%20possible%20to%20update%20this%20post%20with%20up%20to%20date%26nbsp%3Blinks%20%3F%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22background-color%3A%20%23f6f6f6%3B%20color%3A%20%233d3d3d%3B%22%3EQuestion%203%3A%20Is%20there%20somewhere%20an%20already%20builded%20.sdcard%20for%20SABRE%20SD%20with%20everything%20on%20it%20(u-boot%2C%20kernel%2C%20dtb%2C%20ubuntu%2014.04%20or%20higher%20..)%20%3F%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22background-color%3A%20%23f6f6f6%3B%20color%3A%20%233d3d3d%3B%22%3EBest%20regards%2C%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22background-color%3A%20%23f6f6f6%3B%20color%3A%20%233d3d3d%3B%22%3EGuillaume%20HUGUES%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108545%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108545%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%20style%3D%22border%3A%200px%3B%22%3EI%20am%20using%20imx6q-sabresd%20board.%20I%20am%20following%20steps%20from%26nbsp%3B%3CA%20_jive_internal%3D%22true%22%20data-containerid%3D%222004%22%20data-containertype%3D%2214%22%20data-content-finding%3D%22Community%22%20data-objectid%3D%22330147%22%20data-objecttype%3D%22102%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fdocs%2FDOC-330147%22%20style%3D%22color%3A%20%235e89c1%3B%20background-color%3A%20transparent%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%201px%200px%201px%20calc(12px%20%2B%200.35ex)%3B%22%20target%3D%22_blank%22%3EInstalling%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FA%3E.%26nbsp%3B%3C%2FP%3E%3CP%20style%3D%22border%3A%200px%3B%22%3EMy%20kernel%20version%20is%203.14.52%20and%20i%20am%20using%20ubuntu%20Rootfs%2014.04.%3C%2FP%3E%3CP%20style%3D%22border%3A%200px%3B%22%3EMy%20Xorg%20xserver%20version%20is%201.15.1.%3C%2FP%3E%3CP%20style%3D%22border%3A%200px%3B%22%3E%3C%2FP%3E%3CP%20style%3D%22border%3A%200px%3B%22%3EI%20am%20observing%20that%20if%20i%20enable%20PCI%20bus%20support%20in%20the%20kernel%2C%20then%20i%20am%20not%20able%20to%20use%20x11%20gpu%20hardware%20acceleration(glxgears%20and%20es2gears%20give%20segmentation%20faults).%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3EBut%20if%20i%20disable%20PCI%20support%20%2C%20i%20could%20use%20x11%20gpu%20hardware%20acceleration%20with%20above%20mentioned%20versions%20of%20xserver.%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3EWhat%20role%20is%20PCI%20drivers%20playing%20in%20x11%20hardware%20acceleration%3F%20How%20to%20get%20x11%20acceleration%20working%20with%20PCI%20bus%20support%20enabled.%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3EHas%20anyone%20faced%20similar%20issue%3F%20Is%20there%20any%20fix%20for%20this%20or%20patches%20for%20pci%20or%20drm%20drivers%3F%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108544%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108544%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Wenming%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3E%20I%20ignore%20the%20cd%20kernel-modu*%20too.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3EMy%20board%20is%20i.mx6q%20sabre%20sd%26nbsp%3Band%20I%20use%20a%20LVDS%20display.%20Have%20you%20try%20the%20toolchain%20%3CEM%3E%3CSTRONG%3E%3CSPAN%20style%3D%22color%3A%20%23000000%3B%20background-color%3A%20%23ffffff%3B%22%3Egcc-linaro-arm-linux-gnueabihf-%3C%2FSPAN%3E%3CSPAN%20class%3D%22%22%20style%3D%22color%3A%20%23c00000%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-size%3A%2012px%3B%22%3E4.9%3C%2FSPAN%3E%3CSPAN%20style%3D%22color%3A%20%23000000%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-size%3A%2012px%3B%22%3E-%3C%2FSPAN%3E%3CSPAN%20class%3D%22%22%20style%3D%22color%3A%20%23c00000%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-size%3A%2012px%3B%22%3E2014%3C%2FSPAN%3E%3CSPAN%20style%3D%22color%3A%20%23000000%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-size%3A%2012px%3B%22%3E.09_linux.tar.xz%3C%2FSPAN%3E%3C%2FSTRONG%3E%3CSPAN%20style%3D%22color%3A%20%23000000%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-size%3A%2012px%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FEM%3Eas%20the%20doc%20discribed%3F%3C%2FP%3E%3CP%3EYou%20can%20search%20%22Kane%20Jiang%22%20in%20the%20Skype%20for%20Business.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAll%20the%20Best%3C%2FP%3E%3CP%3EKane%20Jiang%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108543%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108543%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Kane%2C%3C%2FP%3E%3CP%3EI%20am%20used%20the%26nbsp%3B%3CEM%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%22%3E%3CSTRONG%20style%3D%22color%3A%20%23008000%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20bold%3B%22%3Elinaro-trusty-alip-20141024-684.tar.gz%26nbsp%3B%3C%2FSTRONG%3E%3C%2FEM%3E%2C%20I%20can%20not%20start%20the%20desktop%20for%20my%20imx6dl%20customer%20board%2C%20I%20used%20an%20OSD-WVGA%20lcd%20to%20connect%20with%20ipu.di0%2Ffb0.%20for%20the%20ubuntu%20core%20version%20I%20can%20not%20boot%20into%20console.%3C%2FP%3E%3CP%3Eabout%20the%20kernel-modu*%20there%20is%20a%20link%20in%20the%20note%3A%3CA%20class%3D%22link-titled%22%20href%3D%22http%3A%2F%2Ftrac.gateworks.com%2Fwiki%2Fventana%2Fubuntu%23HardwareGPUAccelerationforX11%22%20title%3D%22http%3A%2F%2Ftrac.gateworks.com%2Fwiki%2Fventana%2Fubuntu%23HardwareGPUAccelerationforX11%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Eventana%2Fubuntu%20%E2%80%93%20Gateworks%3C%2FA%3E%26nbsp%3B%20section%202%2C%20what%20I%20do%20just%20ignore%20the%20cd%20kernel-modu*%20make%2C%20I%20just%20cd%20%2Fusr%2Flib%20to%20do%20the%20ln%20-sf%20.%20the%20fastbuild.sh%20only%20build%20the%20vivante_drv.so%2C%20the%20vivante_dri.so%20is%20copy%20from%20gpu_core.%20I%20can%20not%20find%20any%20folder%20name%20kernel-modu*%20maybe%20a%20mistake.%3C%2FP%3E%3CP%3EBTW%2C%26nbsp%3B%3C%2FP%3E%3CP%3Ewhat%20is%20you%20video%3D%20line%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks!%3C%2FP%3E%3CP%3EWenming%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108542%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108542%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3EHi%20%3Ca%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F34846%22%3E%40Bio_TICFSL%3C%2Fa%3E%2C%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3EThanks%20for%20your%20excellent%20doc!!%26nbsp%3B%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3EThere's%20two%20questions%20I%20have%20get%20now.%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E1.%20I%20did%20not%20find%20the%20folder%20named%26nbsp%3B%3CEM%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CSTRONG%20style%3D%22border%3A%200px%3B%20font-weight%3A%20bold%3B%22%3Ekernel-modu*%26nbsp%3B%3C%2FSTRONG%3E%3C%2FEM%3Eas%20the%20doc%20said%2C%20where%20is%20it%3F%3C%2FSPAN%3E%3C%2FP%3E%3COL%20class%3D%22%22%20start%3D%221%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23ffffff%3B%20border%3A%20none%3B%20font-size%3A%2012px%3B%20margin%3A%200px%200px%201px%2045px%20!important%3B%20padding%3A%200px%200px%200px%2030px%3B%22%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23f6f6f6%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3B.%2Ffastbuild.sh%26nbsp%3B%26nbsp%3BBUILD_HARD_VFP%3D1%26nbsp%3BXSERVER_GREATER_THAN_13%3D1%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20inherit%3B%20background-color%3A%20%23ffffff%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3Bcd..%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23f6f6f6%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20inherit%3B%20background-color%3A%20%23ffffff%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSTRONG%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20bold%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3Bcd%26nbsp%3Bkernel-modu*%26nbsp%3B%26nbsp%3B%3C%2FSTRONG%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23f6f6f6%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3Bmake%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20inherit%3B%20background-color%3A%20%23ffffff%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3ESwitch%26nbsp%3Bto%26nbsp%3Bgpu-core%26nbsp%3Bx11%26nbsp%3Bbackend%3A%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23f6f6f6%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3Bbackend%3Dx11%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FOL%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%26nbsp%3B%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E2.%20And%20when%20I%20use%20the%20rootfs%20named%26nbsp%3B%3CSTRONG%20style%3D%22background-color%3A%20%23cbe68f%3B%20%3A%20%3B%20color%3A%20%23444444%3B%20text-decoration%3A%20none%20!important%3B%20font-size%3A%2013px%3B%22%3E%3CA%20href%3D%22http%3A%2F%2Freleases.linaro.org%2Fdebian%2Fimages%2Falip-armhf%2F16.04%2Flinaro-jessie-alip-20160428-22.tar.gz%22%20style%3D%22color%3A%20%23444444%20!important%3B%20background-color%3A%20%23cbe68f%3B%20text-decoration%3A%20none%20!important%3B%20font-size%3A%2013px%3B%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Elinaro-jessie-alip-20160428-22.tar.gz%3C%2FA%3E%3C%2FSTRONG%3E(debian%20based%20ubuntu%2016.04)%2C%20I%26nbsp%3Bcan%20not%20successfully%20login%20to%20the%20console%3A%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%3CEM%3E%3CSTRONG%3E%5BFAILED%5D%20Failed%20to%20start%20Login%20Service.%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%3CEM%3E%3CSTRONG%3ESee%20'systemctl%20status%20systemd-logind.service'%20for%20details.%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%5B%20OK%20%5D%20Started%20Permit%20User%20Sessions.%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%3CSTRONG%3E%3CEM%3E%5BFAILED%5D%20Failed%20to%20start%20LSB%3A%20Load%20kernel%20mo...eeded%20to%20enable%20cpufreq%20scaling.%3C%2FEM%3E%3C%2FSTRONG%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%3CSTRONG%3E%3CEM%3ESee%20'systemctl%20status%20loadcpufreq.service'%20for%20details.%3C%2FEM%3E%3C%2FSTRONG%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%5B%20OK%20%5D%20Started%20%2Fetc%2Frc.local%20Compatibility.%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%5B%20OK%20%5D%20Started%20LSB%3A%20network%20benchmark.%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%5B%20OK%20%5D%20Started%20LSB%3A%20Advanced%20IEEE%20802.11%20management%20daemon.%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%5B%20OK%20%5D%20Started%20Initialize%20hardware%20monitoring%20sensors.%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%5B%20TIME%20%5D%20Timed%20out%20waiting%20for%20device%20dev-ttymxc0.device.%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%5BDEPEND%5D%20Dependency%20failed%20for%20Serial%20Getty%20on%20ttymxc0.%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%3CSTRONG%3E%3CEM%3E%5BFAILED%5D%20Failed%20to%20start%20Network%20Manager.%3C%2FEM%3E%3C%2FSTRONG%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-size%3A%2012px%3B%22%3E%3CSTRONG%3E%3CEM%3ESee%20'systemctl%20status%20NetworkManager.service'%20for%20details.%3C%2FEM%3E%3C%2FSTRONG%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3ESo%20how%20to%20login%20to%20the%20console%2C%20any%20ideas%3F%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3EAll%20the%20Best%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3EKane%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108541%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108541%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Wenming%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EYou%20may%20try%20command%3A%3CEM%3E%3CSTRONG%3E%20apt-get%20install%20libxtst-dev%3C%2FSTRONG%3E%3C%2FEM%3E%20to%20overcome%20the%3CEM%3E%26nbsp%3B%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3Efatal%20error%3A%20X11%2Fextensions%2FXext.h%3A%20No%20such%20file%20or%3C%2FSPAN%3E%3C%2FEM%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3E%20directory.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EAll%20the%20Best%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EKane%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108540%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108540%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Wenming%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EWhich%20rootfs%20did%20you%20choose%3F%20I%20think%20you%20may%20not%20choose%20the%26nbsp%3B%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3ELinaro%20LXDE%20rootfs(E.g.%26nbsp%3B%3CSTRONG%3E%3CEM%20style%3D%22color%3A%20%23008000%3B%22%3Elinaro-trusty-alip-20141024-684.tar.gz%3C%2FEM%3E%3C%2FSTRONG%3E)%20as%20mentioned%20in%20the%20doc%20above.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EThe%26nbsp%3B%3CSPAN%20style%3D%22border%3A%200px%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CSTRONG%20style%3D%22border%3A%200px%3B%20font-weight%3A%20bold%3B%22%3E%3CEM%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CA%20data-content-finding%3D%22Community%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fexternal-link.jspa%3Furl%3Dhttp%253A%252F%252Fcdimage.ubuntu.com%252Fubuntu-core%252Fvivid%252Fdaily-preinstalled%252Fcurrent%252Fvivid-preinstalled-core-armhf.tar.gz%22%20style%3D%22color%3A%20%23772953%3B%20background-color%3A%20%23f7f6f5%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%20medium%3B%20padding%3A%200px%20calc(12px%20%2B%200.35ex)%200px%200px%3B%22%20target%3D%22_blank%22%3Evivid-preinstalled-core-armhf.tar.gz%3C%2FA%3E%26nbsp%3B%3C%2FEM%3E%3C%2FSTRONG%3EI%20mentioned%20didn't%20have%20a%20GUI%20desktop%2C%20it%20just%20have%20a%20console%20terminal.%20And%20it%20seems%20that%20did%20not%20support%20the%20commands%20like%26nbsp%3B%3CSTRONG%3E%3CEM%3Eapt-get%3C%2FEM%3E%3C%2FSTRONG%3E.%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20background-color%3A%20%23ffffff%3B%20color%3A%20%2351626f%3B%20font-weight%3A%20inherit%3B%22%3EBut%20I%20also%20tried%20the%20rootfs%26nbsp%3B%3CEM%3E%3CSTRONG%20style%3D%22background-color%3A%20%23ffffff%3B%20color%3A%20%23008000%3B%22%3Elinaro-trusty-alip-20141024-684.tar.gz%3C%2FSTRONG%3E%3C%2FEM%3E%3CSPAN%20style%3D%22color%3A%20%23008000%3B%20background-color%3A%20%23ffffff%3B%22%3E%20%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%22%3Eas%20same%20as%20the%20doc.%20And%20I%20can%20succeed%20to%20bring%20up%20the%20desktop%20in%20i.MX6Q%20SABRE%20SD%2C%20but%20there's%20some%20issues%20about%20how%20to%20find%20the%20GPU%20Vivante%20and%20play%20tutorials.%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20color%3A%20%2351626f%3B%20font-weight%3A%20inherit%3B%22%3EBesides%2C%20I%20did%20not%20find%20the%20folder%20named%26nbsp%3B%3CEM%3E%3CSTRONG%3Ekernel-modu*%26nbsp%3B%3C%2FSTRONG%3E%3C%2FEM%3Eas%20the%20doc%20said%2C%20have%20you%3F%3C%2FSPAN%3E%3C%2FP%3E%3COL%20class%3D%22%22%20start%3D%221%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23ffffff%3B%20border%3A%20none%3B%20font-size%3A%2012px%3B%20margin%3A%200px%200px%201px%2045px%20!important%3B%22%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23f6f6f6%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3B.%2Ffastbuild.sh%26nbsp%3B%26nbsp%3BBUILD_HARD_VFP%3D1%26nbsp%3BXSERVER_GREATER_THAN_13%3D1%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20inherit%3B%20background-color%3A%20%23ffffff%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3Bcd..%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23f6f6f6%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20inherit%3B%20background-color%3A%20%23ffffff%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSTRONG%20style%3D%22background-color%3A%20inherit%3B%20border%3A%200px%3B%20color%3A%20black%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3Bcd%26nbsp%3Bkernel-modu*%26nbsp%3B%26nbsp%3B%3C%2FSTRONG%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23f6f6f6%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3Bmake%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20inherit%3B%20background-color%3A%20%23ffffff%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3ESwitch%26nbsp%3Bto%26nbsp%3Bgpu-core%26nbsp%3Bx11%26nbsp%3Bbackend%3A%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23f6f6f6%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3Bbackend%3Dx11%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FOL%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%20color%3A%20%2351626f%3B%22%3EAll%20the%20Best%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%20color%3A%20%2351626f%3B%22%3EKane%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108539%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108539%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Kane%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20export%20the%20BUILD_HARD_VFP%3D1%20and%20XSERVER_GREATER_THAN_13%3D1%20it%20will%20not%20make%20for%20the%26nbsp%3B%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EDRI_1.10.4%2Fsrc%2F%2C%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3Ebut%20I%20still%20got%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3Efatal%3A%20bad%20default%20revision%20'HEAD'%3CBR%20%2F%3Efatal%3A%20ambiguous%20argument%20'HEAD'%3A%20unknown%20revision%20or%20path%20not%20in%20the%20working%20tree.%3CBR%20%2F%3EUse%20'--'%20to%20separate%20paths%20from%20revisions%2C%20like%20this%3A%3CBR%20%2F%3E'git%20%3CCOMMAND%3E%20%5B%3CREVISION%3E...%5D%20--%20%5B%3CFILE%3E...%5D'%3CBR%20%2F%3Efsl_pixmap_ext.c%3A31%3A33%3A%20fatal%20error%3A%20X11%2Fextensions%2FXext.h%3A%20No%20such%20file%20or%20directory%3CBR%20%2F%3E%20%23include%20%3CX11%3E%3C%2FX11%3E%3C%2FFILE%3E%3C%2FREVISION%3E%3C%2FCOMMAND%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EDoes%20me%20missed%20some%20installed%20package%3F%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EBTW%2C%20as%20your%20mentioned%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CSTRONG%20style%3D%22border%3A%200px%3B%20font-weight%3A%20bold%3B%22%3E%3CEM%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CA%20class%3D%22%22%20data-content-finding%3D%22Community%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fexternal-link.jspa%3Furl%3Dhttp%253A%252F%252Fcdimage.ubuntu.com%252Fubuntu-core%252Fvivid%252Fdaily-preinstalled%252Fcurrent%252Fvivid-preinstalled-core-armhf.tar.gz%22%20style%3D%22color%3A%20%23772953%3B%20background-color%3A%20%23f7f6f5%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%20medium%3B%20padding%3A%200px%20calc(12px%20%2B%200.35ex)%200px%200px%3B%22%20target%3D%22_blank%22%3Evivid-preinstalled-core-armhf.tar.gz%3C%2FA%3E%26nbsp%3B%20are%20you%20tried%20and%20success%20to%20bring%20up%20the%20desktop%20for%20your%20imx6%20board%3F%3C%2FEM%3E%3C%2FSTRONG%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CSTRONG%20style%3D%22border%3A%200px%3B%20font-weight%3A%20bold%3B%22%3E%3C%2FSTRONG%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3Ethanks!%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3EWenming%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108538%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108538%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EHi%2C%20Prathamesh%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EYou%20can%20run%20the%20command%3A%20%3CSTRONG%3Egit%20init%3C%2FSTRONG%3E%20as%20the%20the%20doc%20said%20to%20have%20a%20try.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EYou%20can%20open%20the%20ubuntu-core%20link%20in%20the%20Explorer%20and%20use%20another.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EE.g%20in%20the%20link%3A%26nbsp%3B%3CA%20class%3D%22link-titled%22%20href%3D%22http%3A%2F%2Fcdimage.ubuntu.com%2Fubuntu-core%2Fvivid%2Fdaily-preinstalled%2Fcurrent%2F%22%20title%3D%22http%3A%2F%2Fcdimage.ubuntu.com%2Fubuntu-core%2Fvivid%2Fdaily-preinstalled%2Fcurrent%2F%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3EIndex%20of%20%2Fubuntu-core%2Fvivid%2Fdaily-preinstalled%2Fcurrent%3C%2FA%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EYou%20may%20select%26nbsp%3B%3CSTRONG%3E%3CEM%3E%3CA%20href%3D%22http%3A%2F%2Fcdimage.ubuntu.com%2Fubuntu-core%2Fvivid%2Fdaily-preinstalled%2Fcurrent%2Fvivid-preinstalled-core-armhf.tar.gz%22%20style%3D%22color%3A%20%23772953%3B%20background-color%3A%20%23f7f6f5%3B%20font-size%3A%20medium%3B%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Evivid-preinstalled-core-armhf.tar.gz%3C%2FA%3E%26nbsp%3B.%3C%2FEM%3E%3C%2FSTRONG%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EKane%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108537%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108537%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Pratham%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20got%20the%20same%20issue%20with%20you.%20Do%20you%20get%20it%20worked%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks!%3C%2FP%3E%3CP%3EWenming%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108536%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108536%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20%3CA%20class%3D%22jx-jive-macro-user%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fpeople%2Ferikraynolds%22%20target%3D%22_blank%22%3Eerikraynolds%3C%2FA%3E%E2%80%8C%20%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20have%20the%20same%20question%20as%20yours.%20There%26nbsp%3Bseems%20no%20folder%20named%20%3CEM%3Ekernel-modu*.%3C%2FEM%3E%3C%2FP%3E%3CP%3EHave%20you%20solved%20the%20problem%20now%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks!%3C%2FP%3E%3CP%3EKane%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108535%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108535%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20feng%2C%3C%2FP%3E%3CP%3Ethe%20issue%20%22%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EWaiting%20for%20root%20device%20%2Fdev%2Fmmcblk0p2..%3C%2FSPAN%3E%22%20%2C%20seems%20to%20be%20related%20to%20sd%20card%20initialization%20failure%2C%20once%20kernel%20comes%20up.%3C%2FP%3E%3CP%3ETry%20to%20boot%20from%20eMMc%20and%20see%20if%20you%20still%20get%20same%20issue.%3C%2FP%3E%3CP%3EI%20am%20using%20toolchain%20mentioned%20above%20in%20this%20post.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks%2C%3C%2FP%3E%3CP%3EPrathamesh%26nbsp%3B%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108534%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108534%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Pratham%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EDo%20you%20used%20any%20patches%3F%20%26nbsp%3BI%20can%20not%20boot%20into%20rootfs%20on%20my%20mx6dl%20customer%20board%2C%20I%20only%20can%20start%20uboot%20and%20kernel.%20Kenerl%20will%20stop%20at%20waiting%20%22Waiting%20for%20root%20device%20%2Fdev%2Fmmcblk0p2...%3C%2FP%3E%3CP%3Ewhich%20version%20of%20toolchain%20are%20you%20used%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks!%3C%2FP%3E%3CP%3EWenming%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108533%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108533%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3EI%20am%20using%20above%20steps%20to%20get%20ubuntu%20rootfs%20running%20on%20imx6q-sabrsd%20board.%20I%20am%20not%20able%20to%20build%26nbsp%3Bxserver-xorg-video-imx-viv-5.0.11.p7.4.%3C%2FP%3E%3CP%3EI%20am%20getting%20below%20error%20with%20linaro%20rootfs%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Egcc%20-DCOMMIT%3D%22%60git%20log%20-n%201%20--format%3D%25H%60%60git%20diff-index%20--quiet%20HEAD%20%7C%7C%20echo%20'-dirty'%60%22%20-DFIX_NO_MI_BACKINGSTORE%20-fvisibility%3Dhidden%20-fPIC%20-DPIc%3CBR%20%2F%3Efatal%3A%20Not%20a%20git%20repository%20(or%20any%20of%20the%20parent%20directories)%3A%20.git%3CBR%20%2F%3Efatal%3A%20Not%20a%20git%20repository%20(or%20any%20of%20the%20parent%20directories)%3A%20.git%3CBR%20%2F%3Egcc%20-shared%20-fPIC%20-o%20vivante_drv.so%20vivante_gal%2Fvivante_gal_blit.o%20vivante_gal%2Fvivante_gal_gpu.o%20vivante_gal%2Fvivante_gal_surface.o%20vivante_fbde%20%3CBR%20%2F%3Emake%3A%20Leaving%20directory%20%60%2Froot%2Fgpu%2Fxserver-xorg-video-imx-viv-5.0.11.p7.4%2FEXA%2Fsrc'%3CBR%20%2F%3Emake%3A%20***%20DRI_1.10.4%2Fsrc%2F%3A%20No%20such%20file%20or%20directory.%20Stop.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Ehas%20anybody%20able%20to%20solve%20this%20issue%3F%3F%20Also%20has%20anybody%20tried%20brnigup%20with%20ubuntu-core%20rootfs%3F%20Link%20for%20ubuntu-core%20rootfs%20seems%20dead.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks%2C%3C%2FP%3E%3CP%3EPrathamesh%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108532%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108532%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EIt%20seems%20now%20no%20way%20to%20build%20by%20this%20thread.%20I%20changed%20the%20gcc%20toolchain%2C%20still%20not%20compilable.%20But%20I%20can%20build%20one%20month%20ago%2C%20there%20should%20be%20some%20commits%20blocked%20the%20build.%3C%2FP%3E%3CP%3EDoes%20someone%20else%20encounter%20the%20same%20issue%20as%20me%20currently%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108531%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108531%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3EI%20installed%20ubuntu%20Linaro%20LXDE%20desktop%20but%20the%20touch%20panel%20doesn't%20work.%20I%20confirmed%20the%20touch%20panel%20driver%20is%20ok.%20It%20generates%20input%20events%20when%20I%20cat%20%2Fdev%2Finput%2Fevent0%20and%20touch%20the%20panel.%20But%20the%20ubuntu%20desktop%20does%20not%20have%20response.%20Anyone%20has%20advice%20on%20it%3F%20Thanks!%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108530%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108530%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3EI%20encounter%20a%20uboot%20compiler%20issue%2C%20when%20I%20try%20to%20build%20the%20wandboard_dl_defconfig.%3C%2FP%3E%3CP%3EAnybody%20else%20encounter%20this%3F%20share%20your%20fix.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ELD%20examples%2Fstandalone%2Fhello_world%3CBR%20%2F%3E%20OBJCOPY%20examples%2Fstandalone%2Fhello_world.srec%3CBR%20%2F%3E%20OBJCOPY%20examples%2Fstandalone%2Fhello_world.bin%3CBR%20%2F%3E%20LDS%20u-boot.lds%3CBR%20%2F%3E%20LD%20u-boot%3CBR%20%2F%3Earch%2Farm%2Fimx-common%2Fbuilt-in.o%3A%20In%20function%20%60print_cpuinfo'%3A%3CBR%20%2F%3E%2Fhome%2Flucid%2Fimx6dl%2Fuboot-imx-rel_imx_3.14.52_1.1.0_ga%2Farch%2Farm%2Fimx-common%2Fcpu.c%3A199%3A%20undefined%20reference%20to%20%60uclass_get_device'%3CBR%20%2F%3E%2Fhome%2Flucid%2Fimx6dl%2Fuboot-imx-rel_imx_3.14.52_1.1.0_ga%2Farch%2Farm%2Fimx-common%2Fcpu.c%3A201%3A%20undefined%20reference%20to%20%60thermal_get_temp'%3CBR%20%2F%3Earch%2Farm%2Fimx-common%2Fbuilt-in.o%3A%20In%20function%20%60arch_preboot_os'%3A%3CBR%20%2F%3E%2Fhome%2Flucid%2Fimx6dl%2Fuboot-imx-rel_imx_3.14.52_1.1.0_ga%2Farch%2Farm%2Fimx-common%2Fcpu.c%3A270%3A%20undefined%20reference%20to%20%60ldo_mode_set'%3CBR%20%2F%3Edrivers%2Fbuilt-in.o%3A%20In%20function%20%60read_cpu_temperature'%3A%3CBR%20%2F%3E%2Fhome%2Flucid%2Fimx6dl%2Fuboot-imx-rel_imx_3.14.52_1.1.0_ga%2Fdrivers%2Fthermal%2Fimx_thermal.c%3A43%3A%20undefined%20reference%20to%20%60dev_get_platdata'%3CBR%20%2F%3E%2Fhome%2Flucid%2Fimx6dl%2Fuboot-imx-rel_imx_3.14.52_1.1.0_ga%2Fdrivers%2Fthermal%2Fimx_thermal.c%3A45%3A%20undefined%20reference%20to%20%60dev_get_priv'%3CBR%20%2F%3Edrivers%2Fbuilt-in.o%3A%20In%20function%20%60imx_thermal_probe'%3A%3CBR%20%2F%3E%2Fhome%2Flucid%2Fimx6dl%2Fuboot-imx-rel_imx_3.14.52_1.1.0_ga%2Fdrivers%2Fthermal%2Fimx_thermal.c%3A226%3A%20undefined%20reference%20to%20%60dev_get_platdata'%3CBR%20%2F%3E%2Fhome%2Flucid%2Fimx6dl%2Fuboot-imx-rel_imx_3.14.52_1.1.0_ga%2Fdrivers%2Fthermal%2Fimx_thermal.c%3A227%3A%20undefined%20reference%20to%20%60dev_get_priv'%3CBR%20%2F%3E%2Fhome%2Flucid%2Ftoolchain%2Fgcc-linaro-4.8-2015.06-x86_64_arm-linux-gnueabihf%2Fbin%2Farm-linux-gnueabihf-ld.bfd%3A%20BFD%20(GNU%20Binutils)%20Linaro%202014.11-3-git%202.24.0.20141017%20assertion%20fail%20%2Fhome%2Ftcwg-buildslave%2Fworkspace%2Ftcwg-make-release%2Flabel%2Ftcwg-x86_64%2Ftarget%2Farm-linux-gnueabihf%2Fsnapshots%2Fbinutils-gdb.git~linaro_binutils-2_24-branch%40a93e252ee5250dba831e54f98336b40c7210dac7%2Fbfd%2Felf32-arm.c%3A7710%3CBR%20%2F%3E%2Fhome%2Flucid%2Ftoolchain%2Fgcc-linaro-4.8-2015.06-x86_64_arm-linux-gnueabihf%2Fbin%2Farm-linux-gnueabihf-ld.bfd%3A%20BFD%20(GNU%20Binutils)%20Linaro%202014.11-3-git%202.24.0.20141017%20assertion%20fail%20%2Fhome%2Ftcwg-buildslave%2Fworkspace%2Ftcwg-make-release%2Flabel%2Ftcwg-x86_64%2Ftarget%2Farm-linux-gnueabihf%2Fsnapshots%2Fbinutils-gdb.git~linaro_binutils-2_24-branch%40a93e252ee5250dba831e54f98336b40c7210dac7%2Fbfd%2Felf32-arm.c%3A7710%3CBR%20%2F%3E%2Fhome%2Flucid%2Ftoolchain%2Fgcc-linaro-4.8-2015.06-x86_64_arm-linux-gnueabihf%2Fbin%2Farm-linux-gnueabihf-ld.bfd%3A%20BFD%20(GNU%20Binutils)%20Linaro%202014.11-3-git%202.24.0.20141017%20assertion%20fail%20%2Fhome%2Ftcwg-buildslave%2Fworkspace%2Ftcwg-make-release%2Flabel%2Ftcwg-x86_64%2Ftarget%2Farm-linux-gnueabihf%2Fsnapshots%2Fbinutils-gdb.git~linaro_binutils-2_24-branch%40a93e252ee5250dba831e54f98336b40c7210dac7%2Fbfd%2Felf32-arm.c%3A7710%3CBR%20%2F%3E%2Fhome%2Flucid%2Ftoolchain%2Fgcc-linaro-4.8-2015.06-x86_64_arm-linux-gnueabihf%2Fbin%2Farm-linux-gnueabihf-ld.bfd%3A%20BFD%20(GNU%20Binutils)%20Linaro%202014.11-3-git%202.24.0.20141017%20assertion%20fail%20%2Fhome%2Ftcwg-buildslave%2Fworkspace%2Ftcwg-make-release%2Flabel%2Ftcwg-x86_64%2Ftarget%2Farm-linux-gnueabihf%2Fsnapshots%2Fbinutils-gdb.git~linaro_binutils-2_24-branch%40a93e252ee5250dba831e54f98336b40c7210dac7%2Fbfd%2Felf32-arm.c%3A7710%3CBR%20%2F%3E%2Fhome%2Flucid%2Ftoolchain%2Fgcc-linaro-4.8-2015.06-x86_64_arm-linux-gnueabihf%2Fbin%2Farm-linux-gnueabihf-ld.bfd%3A%20BFD%20(GNU%20Binutils)%20Linaro%202014.11-3-git%202.24.0.20141017%20assertion%20fail%20%2Fhome%2Ftcwg-buildslave%2Fworkspace%2Ftcwg-make-release%2Flabel%2Ftcwg-x86_64%2Ftarget%2Farm-linux-gnueabihf%2Fsnapshots%2Fbinutils-gdb.git~linaro_binutils-2_24-branch%40a93e252ee5250dba831e54f98336b40c7210dac7%2Fbfd%2Felf32-arm.c%3A7710%3CBR%20%2F%3E%2Fhome%2Flucid%2Ftoolchain%2Fgcc-linaro-4.8-2015.06-x86_64_arm-linux-gnueabihf%2Fbin%2Farm-linux-gnueabihf-ld.bfd%3A%20error%3A%20required%20section%20'.rel.plt'%20not%20found%20in%20the%20linker%20script%3CBR%20%2F%3E%2Fhome%2Flucid%2Ftoolchain%2Fgcc-linaro-4.8-2015.06-x86_64_arm-linux-gnueabihf%2Fbin%2Farm-linux-gnueabihf-ld.bfd%3A%20final%20link%20failed%3A%20Invalid%20operation%3CBR%20%2F%3Emake%3A%20***%20%5Bu-boot%5D%20Error%201%3CBR%20%2F%3Elucid%40ubuntu%3A~%2Fimx6dl%2Fuboot-imx-rel_imx_3.14.52_1.1.0_ga%24%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks!%3C%2FP%3E%3CP%3EWF%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108529%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108529%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EDears%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI'd%20like%20to%20continue%20with%20adding%20GPU%20HW%20Acceleration%20for%20X11%20per%20instruction%20with%20that%20section%20and%20working%20within%20gpu_pack%20directory%20instructions%26nbsp%3Bsay%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3COL%20class%3D%22%22%20start%3D%221%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23ffffff%3B%20border%3A%20none%3B%20font-size%3A%2012px%3B%20margin%3A%200px%200px%201px%2045px%20!important%3B%22%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20inherit%3B%20background-color%3A%20%23ffffff%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3Bcd%26nbsp%3Bkernel-modu*%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23f6f6f6%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3Bmake%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20inherit%3B%20background-color%3A%20%23ffffff%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3ESwitch%26nbsp%3Bto%26nbsp%3Bgpu-core%26nbsp%3Bx11%26nbsp%3Bbackend%3A%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20class%3D%22%22%20style%3D%22color%3A%20%235c5c5c%3B%20background-color%3A%20%23f6f6f6%3B%20border-top%3A%20none%3B%20border-bottom%3A%20none%3B%20border-left%3A%203px%20solid%20%236ce26c%3B%20border-right%3A%20none%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2012px%3B%20margin%3A%200px%20!important%3B%20padding%3A%200px%203px%200px%2010px%20!important%3B%22%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3E%23%26nbsp%3Bbackend%3Dx11%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FOL%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3EWhere%20%3CEM%3Ekernel-modu*%3C%2FEM%3E%20is%20coming%20from%3F%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20black%3B%20background-color%3A%20inherit%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%209pt%20!important%3B%22%3EHow%20kernel-modu*%20to%20create%20from%3F%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108528%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108528%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3EIs%20there%20anyway%20to%20rotate%20LCD%20from%20landscape%20mode%20to%20portrait%20mode%20with%20ubuntu%20Linaro%20LXDE%20rootfs%3F%20Thanks!%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108527%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108527%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3EI%20connected%20USB%20disk%20and%20USB%20mouse%20to%20the%20USB%20Host%20port%2C%20but%20the%20devices%20were%20not%20able%20to%20be%20detected.%3C%2FP%3E%3CP%3EI%20can%20see%20following%20message%20during%20kernel%20booting%20up%3A%3C%2FP%3E%3CP%3Eusb_otg_vbus%3A%20disabling%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EWhat%20could%20be%20the%20possible%20reasons%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks!%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108526%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108526%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EWhat%20error%20are%20you%20getting.%20I%20am%20still%20having%20the%20error%20messages%20I%20posted%20but%20my%20audio%20is%20working%20nonetheless%20so%20I%20stopped%20troubleshooting%20further%20on%20it%20until%20someone%20gives%20me%20an%20idea%20what%20should%20be%20done.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108525%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108525%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3ECool.%20I%20had%20changed%20it%20to%20'linaro'%20user%20which%20also%20doesnt%20have%20a%20password%20but%20still%20showed%20me%20login%20page.%20Anyways%20will%20try%20'root.'%20But%20I%20was%20getting%20launched%20into%20desktop%20directly%20already%20so%20dont%20know%20if%20I%20should%20bother.%20Anyways%20thank%20for%20the%20info.%26nbsp%3B%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108524%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108524%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EI%20can%20login%20as%20root%20with%20no%20login%20screen%20automatically.%20this%20works%20for%20me%3C%2FP%3E%3CP%3E%2Fetc%2Flxdm%24%20lxdm.conf%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CBLOCKQUOTE%20class%3D%22jive_macro_quote%20jive-quote%20jive_text_macro%22%3E%3CP%3E%5Bbase%5D%3CBR%20%2F%3E%23%23%20uncomment%20and%20set%20autologin%20username%20to%20enable%20autologin%3CBR%20%2F%3E%3CSTRONG%3Eautologin%3Droot%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20uncomment%20and%20set%20timeout%20to%20enable%20timeout%20autologin%2C%3CBR%20%2F%3E%23%23%20the%20value%20should%20%26gt%3B%3D5%3CBR%20%2F%3E%23%20timeout%3D10%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20default%20session%20or%20desktop%20used%20when%20no%20systemwide%20config%3CBR%20%2F%3Esession%3D%2Fusr%2Fbin%2Fstartlxde%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20uncomment%20and%20set%20to%20set%20numlock%20on%20your%20keyboard%3CBR%20%2F%3E%23%20numlock%3D0%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20set%20this%20if%20you%20don't%20want%20to%20put%20xauth%20file%20at%20~%2F.Xauthority%3CBR%20%2F%3E%23%20xauth_path%3D%2Ftmp%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20greeter%20used%20to%20welcome%20the%20user%3CBR%20%2F%3Egreeter%3D%2Fusr%2Flib%2Flxdm%2Flxdm-greeter-gtk%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%5Bserver%5D%3CBR%20%2F%3E%23%23%20arg%20used%20to%20start%20xserver%2C%20not%20fully%20function%3CBR%20%2F%3E%23%20arg%3D%2Fusr%2Fbin%2FX%20-background%20vt1%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%5Bdisplay%5D%3CBR%20%2F%3E%23%23%20gtk%20theme%20used%20by%20greeter%3CBR%20%2F%3Egtk_theme%3DClearlooks%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20background%20of%20the%20greeter%3CBR%20%2F%3Ebg%3D%2Fusr%2Fshare%2Fbackgrounds%2Fdefault.png%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20if%20show%20bottom%20pane%3CBR%20%2F%3Ebottom_pane%3D1%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20if%20show%20language%20select%20control%3CBR%20%2F%3Elang%3D1%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20if%20show%20keyboard%20layout%20select%20control%3CBR%20%2F%3Ekeyboard%3D0%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20the%20theme%20of%20greeter%3CBR%20%2F%3Etheme%3DIndustrial%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%5Binput%5D%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%5Buserlist%5D%3CBR%20%2F%3E%23%23%20if%20disable%20the%20user%20list%20control%20at%20greeter%3CBR%20%2F%3Edisable%3D0%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20whitelist%20user%3CBR%20%2F%3Ewhite%3D%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%23%23%20blacklist%20user%3CBR%20%2F%3Eblack%3D%3C%2FP%3E%3C%2FBLOCKQUOTE%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108523%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108523%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3ENice.%20Do%20let%20me%20know%20if%20you%20figure%20out%20how%20to%20remove%20the%20login%20page%20completely%20from%20'startlxde'.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108522%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108522%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHave%20you%20fixed%20gstreamer-imx%20somehow%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108521%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108521%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CSPAN%20class%3D%22%22%3EFinally%20I%20got%20login%3A%20After%20I%20got%20LXDE%20login%20screen%20which%20I%20needed%20to%20switch%20off%20the%20GUI%20and%20start%20in%20console%20mode%20via%20CTRL%2BALT%2BF1%20then%20I%20set%20passwd%20for%20root%20again%20and%20then%20switch%20back%20via%20CTRL%2BALT%2BF7%20and%20I%20did%20login%20as%20root.%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108520%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108520%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EErik%2C%3C%2FP%3E%3CP%3EMaybe%20you%20have%20not%20installed%20xorg%20and%20xinit.%20Try%20that.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108519%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108519%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EUnderstand%20but%20on%20my%20side%20after%20install%20I%20can't%20run%20'startx'%20command%20(command%20not%20found).%20I%20have%20my%20console%20on%20PC%20host%20side%20where%20I'm%20connected%20to%20the%20target%20via%20UART.%20On%20target%20itself%20I%20got%20Login%20screen%20which%20I%20can't%20go%20thru.%20I%20did%20changes%20as%20you%20suggested%20but%20no%20success.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108518%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108518%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Erik%2C%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3BIf%20you%20have%20also%20used%20Linaro%20LXDE%20then%20the%20default%20display%20manager%20is%20lxdm%20which%20is%20upstarted%20from%20%2Fetc%2Finit.d%2F.%20Lxdm%20uses%20%2Fetc%2Flxdm%2Flxdm.conf%20for%20its%20configuration.%20I%20changed%20the%20default%20session%20to%20'startx'%20to%20avoid%20the%20login%20page.%20Just%20a%20workaround%20for%20now.%3CBR%20%2F%3EMore%20info%20here%20%3A%26nbsp%3B%3CA%20class%3D%22link-titled%22%20href%3D%22https%3A%2F%2Fwiki.archlinux.org%2Findex.php%2FLXDM%22%20title%3D%22https%3A%2F%2Fwiki.archlinux.org%2Findex.php%2FLXDM%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3ELXDM%20-%20ArchWiki%3C%2FA%3E%26nbsp%3B%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108517%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108517%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Jaffin%2C%3C%2FP%3E%3CP%3EI'm%20in%26nbsp%3B%20pretty%20much%20the%20same%20situation%3A%20have%20you%20chance%20to%20resolve%20it%3F%3C%2FP%3E%3CP%3EThank%20you.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108516%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108516%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Erik%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAny%20idea%20how%20to%20boot%20into%20desktop%20rather%20than%20to%20the%20login%20window%20I%20am%20getting.%20When%20I%20execute%20startx%20from%20serial%20console%2C%20it%20starts%20desktop%20environment%20on%20the%20screen.%20But%20by%20default%2C%20startlxde%20is%20getting%20executed%20and%20that%20takes%20me%20to%20the%20login%20page%20from%20where%20I%20cant%20login%20with%20any%20user.%20By%20default%20I%20want%20startx%20to%20load.%20(later%20I%20would%20like%20to%20just%20boot%20into%20just%20one%20gui%20application)%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108515%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108515%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Erik%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20am%20using%20iMX6%20QP%20Sabre%20Board.%20Everything%20is%20working%20fine%20just%20that%20I%20am%20unable%20to%20login%20through%20the%20gui%20login%20manager.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAlso%20I%20am%20facing%20another%20issue%20today.%20I%20installed%20gstreamer-imx%20and%20its%20plugins%20but%20I%20am%20getting%20an%20error%20with%20the%20audio%20codec%20plugin%20which%20is%20not%20working.%20When%20I%20run%20'gst-inspect-1.0%20-b'%20I%20get.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E(gst-plugin-scanner%3A8983)%3A%20GStreamer-WARNING%20**%3A%20Failed%20to%20load%20plugin%20'%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2Flibgstimxaudio.so'%3A%20lib_mp3_enc_arm12_elinux.so.2%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3C%2FP%3E%3CP%3E(gst-plugin-scanner%3A8983)%3A%20GStreamer-WARNING%20**%3A%20Failed%20to%20load%20plugin%20'%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2Fgstreamer-1.0%2Flibgstimxaudio.so'%3A%20lib_mp3_enc_arm12_elinux.so.2%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3C%2FP%3E%3CP%3E(gst-plugin-scanner%3A8983)%3A%20GStreamer-WARNING%20**%3A%20Failed%20to%20load%20plugin%20'%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Flibgstimxaudio.so'%3A%20lib_mp3_enc_arm12_elinux.so.2%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3C%2FP%3E%3CP%3E(gst-plugin-scanner%3A8983)%3A%20GStreamer-WARNING%20**%3A%20Failed%20to%20load%20plugin%20'%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Flibgstimxaudio.so'%3A%20lib_mp3_enc_arm12_elinux.so.2%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3C%2FP%3E%3CP%3E(gst-plugin-scanner%3A8983)%3A%20GStreamer-WARNING%20**%3A%20Failed%20to%20load%20plugin%20'%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Flibgstimxaudio.so'%3A%20lib_mp3_enc_arm12_elinux.so.2%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3C%2FP%3E%3CP%3E(gst-plugin-scanner%3A8983)%3A%20GStreamer-WARNING%20**%3A%20Failed%20to%20load%20plugin%20'%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Flibgstimxaudio.so'%3A%20lib_mp3_enc_arm12_elinux.so.2%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3C%2FP%3E%3CP%3E(gst-plugin-scanner%3A8983)%3A%20GStreamer-WARNING%20**%3A%20Failed%20to%20load%20plugin%20'%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Flibgstimxaudio.so'%3A%20lib_mp3_enc_arm12_elinux.so.2%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3C%2FP%3E%3CP%3E(gst-plugin-scanner%3A8983)%3A%20GStreamer-WARNING%20**%3A%20Failed%20to%20load%20plugin%20'%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Flibgstimxaudio.so'%3A%20lib_mp3_enc_arm12_elinux.so.2%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3C%2FP%3E%3CP%3E(gst-plugin-scanner%3A8983)%3A%20GStreamer-WARNING%20**%3A%20Failed%20to%20load%20plugin%20'%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Flibgstimxaudio.so'%3A%20lib_mp3_enc_arm12_elinux.so.2%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3C%2FP%3E%3CP%3E(gst-plugin-scanner%3A8983)%3A%20GStreamer-WARNING%20**%3A%20Failed%20to%20load%20plugin%20'%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Flibgstimxaudio.so'%3A%20lib_mp3_enc_arm12_elinux.so.2%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3C%2FP%3E%3CP%3E(gst-plugin-scanner%3A8983)%3A%20GStreamer-WARNING%20**%3A%20Failed%20to%20load%20plugin%20'%2Fusr%2Flib%2Farm-linux-gnueabihf%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Fgstreamer-1.0%2Flibgstimxaudio.so'%3A%20lib_mp3_enc_arm12_elinux.so.2%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3CBR%20%2F%3EBlacklisted%20files%3A%3CBR%20%2F%3E%20libgstimxaudio.so%3C%2FP%3E%3CP%3ETotal%20count%3A%201%20blacklisted%20file%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20dont%20understand%20why%20only%20audio%20plugin%20got%20blacklisted%20when%20I%20installed%20both%20fsl%20video%20and%20audio%20codec%20together.%20I%20have%20followed%20the%20links%20from%20this%20post.%20Also%20the%20error%20that%20it%20shows%20that%20it%20cannot%20open%20shared%20file%2C%20I%20checked%20the%20directory%20and%20the%20file%20is%20inside%20it.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108514%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108514%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EWhat%20imx%20board%2Fchip%20do%20you%20use%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108513%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108513%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EFirst%20of%20all%2C%20thanks%20for%20this%20amazing%20post.%20Helped%20a%20lot.%20I%20have%20used%20the%20Linaro%20LXDE%20rootfs(partly%20because%20the%20ubuntu%20core%20link%20didnt%20work).%20Now%20apart%20from%20few%20hiccups%20I%20faced%20here%20and%20there%20in%20the%20process%2C%20I%20am%20able%20to%20boot%20the%20hardware%20and%20login%20from%20the%20serial%20console%20to%20the%20shell.%20But%20on%20the%20HDMI%20display%20I%20am%20shown%20a%20login%20window.%20I%20tried%20typing%20username%20'root'%20and%20'linaro'%20without%20any%20password(since%20I%20had%20removed%20the%20password%20from%20the%20root%20and%20linaro%20user%20as%20per%20the%20process%20above)%20and%20I%20am%20still%20stuck%20on%20the%20same%20window.%20I%20am%20unable%20to%20move%20past%20the%20login%20window%20and%20enter%20the%20GUI.%20Did%20anyone%20else%20face%20this.%20Please%20advise%20if%20I%20have%20missed%20something.%20Or%20I%20could%20just%20remove%20this%20login%20window%20manager%20and%20install%20another.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108512%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108512%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3ENow%20I%20got%20Linaro%2C%2014.10%20image%20booting..%20but%20still%20get%20into%20HDMI%20display%20and%20it's%20Serial%20console%20from%20PC.%3C%2FP%3E%3CP%3E%3CSTRONG%3EHow%20can%20I%20enable%20and%20run%20it%20form%20within%20HDMI%20monitor%3F%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3ESecondly%20I%20followed%20%26nbsp%3Bsection%26nbsp%3B%3CSPAN%20style%3D%22color%3A%20%23e23d39%3B%20background-color%3A%20%23ffffff%3B%22%3E3%3A%20Modify%20Rootfs%20and%20Install%20needed%20packages%26nbsp%3B%3CSPAN%20style%3D%22color%3A%20%233d3d3d%3B%22%3E%26nbsp%3Beven%20though%20network%2C%20sources.list%2C%20hostname%20are%26nbsp%3Bnot%20configured%20accordingly..%20I%20change%20it%20on%20host%20PC%20and%20those%20setting%20are%20not%20reflected...%20%26nbsp%3B%20%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%23e23d39%3B%20background-color%3A%20%23ffffff%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%3CBLOCKQUOTE%20class%3D%22jive_macro_quote%20jive-quote%20jive_text_macro%22%3E%3CP%3EU-Boot%202016.03%20(Nov%2004%202016%20-%2011%3A24%3A24%20%2B0100)%3C%2FP%3E%3CP%3ECPU%3A%20Freescale%20i.MX6QP%20rev1.0%20996%20MHz%20(running%20at%20792%20MHz)%3CBR%20%2F%3ECPU%3A%20Automotive%20temperature%20grade%20(-40C%20to%20125C)%20at%2031C%3CBR%20%2F%3EReset%20cause%3A%20POR%3CBR%20%2F%3EBoard%3A%20MX6Q-Sabreauto%20revA%3CBR%20%2F%3EI2C%3A%20ready%3CBR%20%2F%3EDRAM%3A%202%20GiB%3CBR%20%2F%3EPMIC%3A%20PFUZE100%20ID%3D0x10%3CBR%20%2F%3ENAND%3A%200%20MiB%3CBR%20%2F%3EMMC%3A%20FSL_SDHC%3A%200%2C%20FSL_SDHC%3A%201%3CBR%20%2F%3ENo%20panel%20detected%3A%20default%20to%20Hannstar-XGA%3CBR%20%2F%3EDisplay%3A%20Hannstar-XGA%20(1024x768)%3CBR%20%2F%3EIn%3A%20serial%3CBR%20%2F%3EOut%3A%20serial%3CBR%20%2F%3EErr%3A%20serial%3CBR%20%2F%3Eswitch%20to%20partitions%20%230%2C%20OK%3CBR%20%2F%3Emmc1%20is%20current%20device%3CBR%20%2F%3ENet%3A%20FEC%20%5BPRIME%5D%3CBR%20%2F%3ENormal%20Boot%3CBR%20%2F%3EHit%20any%20key%20to%20stop%20autoboot%3A%200%3CBR%20%2F%3Eswitch%20to%20partitions%20%230%2C%20OK%3CBR%20%2F%3Emmc1%20is%20current%20device%3CBR%20%2F%3Ereading%20boot.scr%3CBR%20%2F%3E**%20Unable%20to%20read%20file%20boot.scr%20**%3CBR%20%2F%3Ereading%20zImage%3CBR%20%2F%3E6637656%20bytes%20read%20in%20328%20ms%20(19.3%20MiB%2Fs)%3CBR%20%2F%3EBooting%20from%20mmc%20...%3CBR%20%2F%3Ereading%20imx6qp-sabreauto.dtb%3CBR%20%2F%3E48853%20bytes%20read%20in%2020%20ms%20(2.3%20MiB%2Fs)%3CBR%20%2F%3EKernel%20image%20%40%200x12000000%20%5B%200x000000%20-%200x654858%20%5D%3CBR%20%2F%3E%23%23%20Flattened%20Device%20Tree%20blob%20at%2018000000%3CBR%20%2F%3E%20Booting%20using%20the%20fdt%20blob%20at%200x18000000%3CBR%20%2F%3E%20Using%20Device%20Tree%20in%20place%20at%2018000000%2C%20end%201800eed4%3C%2FP%3E%3CP%3EStarting%20kernel%20...%3C%2FP%3E%3CP%3EBooting%20Linux%20on%20physical%20CPU%200x0%3CBR%20%2F%3ELinux%20version%204.1.15%20(r59400%40Latitude)%20(gcc%20version%204.8.5%20(Linaro%20GCC%204.8-2015.06)%20)%20%231%20SMP%20PREEMPT%20Fri%20Nov%204%2011%3A53%3A43%20CET%202016%3CBR%20%2F%3ECPU%3A%20ARMv7%20Processor%20%5B412fc09a%5D%20revision%2010%20(ARMv7)%2C%20cr%3D10c53c7d%3CBR%20%2F%3ECPU%3A%20PIPT%20%2F%20VIPT%20nonaliasing%20data%20cache%2C%20VIPT%20aliasing%20instruction%20cache%3CBR%20%2F%3EMachine%20model%3A%20Freescale%20i.MX6%20Quad%20Plus%20SABRE%20Automotive%20Board%3CBR%20%2F%3EReserved%20memory%3A%20created%20CMA%20memory%20pool%20at%200x6a000000%2C%20size%20320%20MiB%3CBR%20%2F%3EReserved%20memory%3A%20initialized%20node%20linux%2Ccma%2C%20compatible%20id%20shared-dma-pool%3CBR%20%2F%3EMemory%20policy%3A%20Data%20cache%20writealloc%3CBR%20%2F%3EPERCPU%3A%20Embedded%2012%20pages%2Fcpu%20%40ee6fe000%20s16960%20r8192%20d24000%20u49152%3CBR%20%2F%3EBuilt%201%20zonelists%20in%20Zone%20order%2C%20mobility%20grouping%20on.%20Total%20pages%3A%20520720%3CBR%20%2F%3EKernel%20command%20line%3A%20console%3Dttymxc3%2C115200%20root%3D%2Fdev%2Fmmcblk2p2%20rootwait%20rw%3CBR%20%2F%3EPID%20hash%20table%20entries%3A%204096%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3EDentry%20cache%20hash%20table%20entries%3A%20262144%20(order%3A%208%2C%201048576%20bytes)%3CBR%20%2F%3EInode-cache%20hash%20table%20entries%3A%20131072%20(order%3A%207%2C%20524288%20bytes)%3CBR%20%2F%3EMemory%3A%201737928K%2F2097152K%20available%20(8295K%20kernel%20code%2C%20435K%20rwdata%2C%202892K%20rodata%2C%20432K%20init%2C%20450K%20bss%2C%2031544K%20reserved%2C%20327680K%20cma-reserved%2C%20270336K%20highmem)%3CBR%20%2F%3EVirtual%20kernel%20memory%20layout%3A%3CBR%20%2F%3E%20vector%20%3A%200xffff0000%20-%200xffff1000%20(%204%20kB)%3CBR%20%2F%3E%20fixmap%20%3A%200xffc00000%20-%200xfff00000%20(3072%20kB)%3CBR%20%2F%3E%20vmalloc%20%3A%200xf0000000%20-%200xff000000%20(%20240%20MB)%3CBR%20%2F%3E%20lowmem%20%3A%200x80000000%20-%200xef800000%20(1784%20MB)%3CBR%20%2F%3E%20pkmap%20%3A%200x7fe00000%20-%200x80000000%20(%202%20MB)%3CBR%20%2F%3E%20modules%20%3A%200x7f000000%20-%200x7fe00000%20(%2014%20MB)%3CBR%20%2F%3E%20.text%20%3A%200x80008000%20-%200x80af51c8%20(11189%20kB)%3CBR%20%2F%3E%20.init%20%3A%200x80af6000%20-%200x80b62000%20(%20432%20kB)%3CBR%20%2F%3E%20.data%20%3A%200x80b62000%20-%200x80bcec40%20(%20436%20kB)%3CBR%20%2F%3E%20.bss%20%3A%200x80bd1000%20-%200x80c41a5c%20(%20451%20kB)%3CBR%20%2F%3ESLUB%3A%20HWalign%3D64%2C%20Order%3D0-3%2C%20MinObjects%3D0%2C%20CPUs%3D4%2C%20Nodes%3D1%3CBR%20%2F%3EPreemptible%20hierarchical%20RCU%20implementation.%3CBR%20%2F%3E%20Additional%20per-CPU%20info%20printed%20with%20stalls.%3CBR%20%2F%3ENR_IRQS%3A16%20nr_irqs%3A16%2016%3CBR%20%2F%3EL2C-310%20erratum%20769419%20enabled%3CBR%20%2F%3EL2C-310%20enabling%20early%20BRESP%20for%20Cortex-A9%3CBR%20%2F%3EL2C-310%20full%20line%20of%20zeros%20enabled%20for%20Cortex-A9%3CBR%20%2F%3EL2C-310%20ID%20prefetch%20enabled%2C%20offset%2016%20lines%3CBR%20%2F%3EL2C-310%20dynamic%20clock%20gating%20enabled%2C%20standby%20mode%20enabled%3CBR%20%2F%3EL2C-310%20cache%20controller%20enabled%2C%2016%20ways%2C%201024%20kB%3CBR%20%2F%3EL2C-310%3A%20CACHE_ID%200x410000c8%2C%20AUX_CTRL%200x76470001%3CBR%20%2F%3Emxc_clocksource_init%203000000%3CBR%20%2F%3ESwitching%20to%20timer-based%20delay%20loop%2C%20resolution%20333ns%3CBR%20%2F%3Esched_clock%3A%2032%20bits%20at%203000kHz%2C%20resolution%20333ns%2C%20wraps%20every%20715827882841ns%3CBR%20%2F%3Eclocksource%20mxc_timer1%3A%20mask%3A%200xffffffff%20max_cycles%3A%200xffffffff%2C%20max_idle_ns%3A%20637086815595%20ns%3CBR%20%2F%3EConsole%3A%20colour%20dummy%20device%2080x30%3CBR%20%2F%3ECalibrating%20delay%20loop%20(skipped)%2C%20value%20calculated%20using%20timer%20frequency..%206.00%20BogoMIPS%20(lpj%3D30000)%3CBR%20%2F%3Epid_max%3A%20default%3A%2032768%20minimum%3A%20301%3CBR%20%2F%3EMount-cache%20hash%20table%20entries%3A%204096%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3EMountpoint-cache%20hash%20table%20entries%3A%204096%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3ECPU%3A%20Testing%20write%20buffer%20coherency%3A%20ok%3CBR%20%2F%3ECPU0%3A%20thread%20-1%2C%20cpu%200%2C%20socket%200%2C%20mpidr%2080000000%3CBR%20%2F%3ESetting%20up%20static%20identity%20map%20for%200x10008280%20-%200x100082d8%3CBR%20%2F%3ECPU1%3A%20thread%20-1%2C%20cpu%201%2C%20socket%200%2C%20mpidr%2080000001%3CBR%20%2F%3ECPU2%3A%20thread%20-1%2C%20cpu%202%2C%20socket%200%2C%20mpidr%2080000002%3CBR%20%2F%3ECPU3%3A%20thread%20-1%2C%20cpu%203%2C%20socket%200%2C%20mpidr%2080000003%3CBR%20%2F%3EBrought%20up%204%20CPUs%3CBR%20%2F%3ESMP%3A%20Total%20of%204%20processors%20activated%20(24.00%20BogoMIPS).%3CBR%20%2F%3ECPU%3A%20All%20CPU(s)%20started%20in%20SVC%20mode.%3CBR%20%2F%3Edevtmpfs%3A%20initialized%3CBR%20%2F%3EVFP%20support%20v0.3%3A%20implementor%2041%20architecture%203%20part%2030%20variant%209%20rev%204%3CBR%20%2F%3Eclocksource%20jiffies%3A%20mask%3A%200xffffffff%20max_cycles%3A%200xffffffff%2C%20max_idle_ns%3A%2019112604462750000%20ns%3CBR%20%2F%3Epinctrl%20core%3A%20initialized%20pinctrl%20subsystem%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2016%3CBR%20%2F%3EDMA%3A%20preallocated%20256%20KiB%20pool%20for%20atomic%20coherent%20allocations%3CBR%20%2F%3Ecpuidle%3A%20using%20governor%20ladder%3CBR%20%2F%3Ecpuidle%3A%20using%20governor%20menu%3CBR%20%2F%3ECPU%20identified%20as%20i.MX6QP%2C%20silicon%20rev%201.0%3CBR%20%2F%3Ehw-breakpoint%3A%20found%205%20(%2B1%20reserved)%20breakpoint%20and%201%20watchpoint%20registers.%3CBR%20%2F%3Ehw-breakpoint%3A%20maximum%20watchpoint%20size%20is%204%20bytes.%3CBR%20%2F%3Eimx6q-pinctrl%2020e0000.iomuxc%3A%20no%20groups%20defined%20in%20%2Fsoc%2Faips-bus%4002000000%2Fiomuxc%40020e0000%2Fhdmicecgrp%3CBR%20%2F%3Eimx6q-pinctrl%2020e0000.iomuxc%3A%20initialized%20IMX%20pinctrl%20driver%3CBR%20%2F%3Eimx-gpc%2020dc000.gpc%3A%20no%20fsl%2Cldo-bypass%20found!%3CBR%20%2F%3Emxs-dma%20110000.dma-apbh%3A%20initialized%3CBR%20%2F%3ESCSI%20subsystem%20initialized%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usbfs%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20hub%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20device%20driver%20usb%3CBR%20%2F%3E2000000.aips-bus%3Ausbphy_nop1%20supply%20vcc%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3E2000000.aips-bus%3Ausbphy_nop2%20supply%20vcc%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Ei2c%20i2c-1%3A%20IMX%20I2C%20adapter%20registered%3CBR%20%2F%3Ei2c%20i2c-1%3A%20can't%20use%20DMA%3CBR%20%2F%3Ei2c%20i2c-2%3A%20IMX%20I2C%20adapter%20registered%3CBR%20%2F%3Ei2c%20i2c-2%3A%20can't%20use%20DMA%3CBR%20%2F%3ELinux%20video%20capture%20interface%3A%20v2.00%3CBR%20%2F%3Epps_core%3A%20LinuxPPS%20API%20ver.%201%20registered%3CBR%20%2F%3E%3CSPAN%3Epps_core%3A%20Software%20ver.%205.3.6%20-%20Copyright%202005-2007%20Rodolfo%20Giometti%20%26lt%3B%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-email-small%22%20href%3D%22mailto%3Agiometti%40linux.it%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Egiometti%40linux.it%3C%2FA%3E%3CSPAN%3E%26gt%3B%3C%2FSPAN%3E%3CBR%20%2F%3EPTP%20clock%20support%20registered%3CBR%20%2F%3Eimx-ipuv3%202400000.ipu%3A%20IPU%20DMFC%20NORMAL%20mode%3A%201(0~1)%2C%205B(4%2C5)%2C%205F(6%2C7)%3CBR%20%2F%3Eimx-ipuv3%202800000.ipu%3A%20IPU%20DMFC%20NORMAL%20mode%3A%201(0~1)%2C%205B(4%2C5)%2C%205F(6%2C7)%3CBR%20%2F%3Eimx-prg%2021cc000.prg%3A%20driver%20probed%3CBR%20%2F%3Eimx-prg%2021cd000.prg%3A%20driver%20probed%3CBR%20%2F%3Eimx-pre%2021c8000.pre%3A%20driver%20probed%3CBR%20%2F%3Eimx-pre%2021c9000.pre%3A%20driver%20probed%3CBR%20%2F%3Eimx-pre%2021ca000.pre%3A%20driver%20probed%3CBR%20%2F%3Eimx-pre%2021cb000.pre%3A%20driver%20probed%3CBR%20%2F%3EMIPI%20CSI2%20driver%20module%20loaded%3CBR%20%2F%3EAdvanced%20Linux%20Sound%20Architecture%20Driver%20Initialized.%3CBR%20%2F%3EBluetooth%3A%20Core%20ver%202.20%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2031%3CBR%20%2F%3EBluetooth%3A%20HCI%20device%20and%20connection%20manager%20initialized%3CBR%20%2F%3EBluetooth%3A%20HCI%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20L2CAP%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20SCO%20socket%20layer%20initialized%3CBR%20%2F%3ESwitched%20to%20clocksource%20mxc_timer1%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%202%3CBR%20%2F%3ETCP%20established%20hash%20table%20entries%3A%2016384%20(order%3A%204%2C%2065536%20bytes)%3CBR%20%2F%3ETCP%20bind%20hash%20table%20entries%3A%2016384%20(order%3A%205%2C%20131072%20bytes)%3CBR%20%2F%3ETCP%3A%20Hash%20tables%20configured%20(established%2016384%20bind%2016384)%3CBR%20%2F%3EUDP%20hash%20table%20entries%3A%201024%20(order%3A%203%2C%2032768%20bytes)%3CBR%20%2F%3EUDP-Lite%20hash%20table%20entries%3A%201024%20(order%3A%203%2C%2032768%20bytes)%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%201%3CBR%20%2F%3ERPC%3A%20Registered%20named%20UNIX%20socket%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20udp%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20tcp%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20tcp%20NFSv4.1%20backchannel%20transport%20module.%3CBR%20%2F%3ECPU%20PMU%3A%20Failed%20to%20parse%20%2Fsoc%2Fpmu%2Finterrupt-affinity%5B0%5D%3CBR%20%2F%3Ehw%20perfevents%3A%20enabled%20with%20armv7_cortex_a9%20PMU%20driver%2C%207%20counters%20available%3CBR%20%2F%3Eimx%20rpmsg%20driver%20is%20registered.%3CBR%20%2F%3EBus%20freq%20driver%20module%20loaded%3CBR%20%2F%3Efutex%20hash%20table%20entries%3A%201024%20(order%3A%204%2C%2065536%20bytes)%3CBR%20%2F%3EVFS%3A%20Disk%20quotas%20dquot_6.6.0%3CBR%20%2F%3EVFS%3A%20Dquot-cache%20hash%20table%20entries%3A%201024%20(order%200%2C%204096%20bytes)%3CBR%20%2F%3ENFS%3A%20Registering%20the%20id_resolver%20key%20type%3CBR%20%2F%3EKey%20type%20id_resolver%20registered%3CBR%20%2F%3EKey%20type%20id_legacy%20registered%3CBR%20%2F%3Ejffs2%3A%20version%202.2.%20(NAND)%20%C2%A9%202001-2006%20Red%20Hat%2C%20Inc.%3CBR%20%2F%3Efuse%20init%20(API%20version%207.23)%3CBR%20%2F%3Ebounce%3A%20pool%20size%3A%2064%20pages%3CBR%20%2F%3Eio%20scheduler%20noop%20registered%3CBR%20%2F%3Eio%20scheduler%20deadline%20registered%3CBR%20%2F%3Eio%20scheduler%20cfq%20registered%20(default)%3CBR%20%2F%3Ebacklight%20supply%20power%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3EMIPI%20DSI%20driver%20module%20loaded%3CBR%20%2F%3EMIPI%20DSI%20driver%20module%20loaded%3CBR%20%2F%3Emxc_sdc_fb%20fb%400%3A%20registered%20mxc%20display%20driver%20ldb%3CBR%20%2F%3Eimx-ipuv3%202800000.ipu%3A%20IPU%20DMFC%20DP%20HIGH%20RESOLUTION%3A%201(0%2C1)%2C%205B(2~5)%2C%205F(6%2C7)%3CBR%20%2F%3EConsole%3A%20switching%20to%20colour%20frame%20buffer%20device%20128x48%3CBR%20%2F%3Emxc_hdmi%2020e0000.hdmi_video%3A%20Detected%20HDMI%20controller%200x13%3A0xa%3A0xa0%3A0xc1%3CBR%20%2F%3Efbcvt%3A%201920x1080%4060%3A%20CVT%20Name%20-%202.073M9%3CBR%20%2F%3Emxc_sdc_fb%20fb%401%3A%20registered%20mxc%20display%20driver%20hdmi%3CBR%20%2F%3Emxc_sdc_fb%20fb%402%3A%20NO%20mxc%20display%20driver%20found!%3CBR%20%2F%3Emxc_sdc_fb%20fb%403%3A%20registered%20mxc%20display%20driver%20ldb%3CBR%20%2F%3Emxc_hdmi%2020e0000.hdmi_video%3A%20Read%20EDID%20again%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20no%20iram%20assigned%2C%20using%20external%20mem%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20no%20event%20needs%20to%20be%20remapped%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20loaded%20firmware%203.3%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20initialized%3CBR%20%2F%3Epfuze100-regulator%201-0008%3A%20Full%20layer%3A%202%2C%20Metal%20layer%3A%201%3CBR%20%2F%3Epfuze100-regulator%201-0008%3A%20FAB%3A%200%2C%20FIN%3A%200%3CBR%20%2F%3Epfuze100-regulator%201-0008%3A%20pfuze100%20found.%3CBR%20%2F%3E21ec000.serial%3A%20ttymxc2%20at%20MMIO%200x21ec000%20(irq%20%3D%20298%2C%20base_baud%20%3D%205000000)%20is%20a%20IMX%3CBR%20%2F%3E21f0000.serial%3A%20ttymxc3%20at%20MMIO%200x21f0000%20(irq%20%3D%20299%2C%20base_baud%20%3D%205000000)%20is%20a%20IMX%3CBR%20%2F%3Emxc_hdmi%2020e0000.hdmi_video%3A%20create%20default%20modelist%3CBR%20%2F%3Econsole%20%5Bttymxc3%5D%20enabled%3CBR%20%2F%3Eimx%20sema4%20driver%20is%20registered.%3CBR%20%2F%3E%5Bdrm%5D%20Initialized%20drm%201.1.0%2020060810%3CBR%20%2F%3E%5Bdrm%5D%20Initialized%20vivante%201.0.0%2020120216%20on%20minor%200%3CBR%20%2F%3Ebrd%3A%20module%20loaded%3CBR%20%2F%3Eloop%3A%20module%20loaded%3CBR%20%2F%3Esi476x-core%201-0063%3A%20Using%20default%20platform%20data.%3CBR%20%2F%3Esi476x-core%201-0063%3A%20No%20IRQ%20number%20specified%2C%20will%20use%20polling%3CBR%20%2F%3Esi476x-core%201-0063%3A%20Error%20while%20sending%20command%200x11%3CBR%20%2F%3Esi476x-core%201-0063%3A%20The%20device%20in%20inconsistent%20power%20state%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Ctransmit-level-mV%20not%20specified%2C%20using%2000000024%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Ctransmit-boost-mdB%20not%20specified%2C%20using%2000000480%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Ctransmit-atten-16ths%20not%20specified%2C%20using%2000002000%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Creceive-eq-mdB%20not%20specified%2C%20using%2005000000%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20SSS%20flag%20set%2C%20parallel%20bus%20scan%20disabled%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20AHCI%200001.0300%2032%20slots%201%20ports%203%20Gbps%200x1%20impl%20platform%20mode%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20flags%3A%20ncq%20sntf%20stag%20pm%20led%20clo%20only%20pmp%20pio%20slum%20part%20ccc%20apst%3CBR%20%2F%3Escsi%20host0%3A%20ahci-imx%3CBR%20%2F%3Eata1%3A%20SATA%20max%20UDMA%2F133%20mmio%20%5Bmem%200x02200000-0x02203fff%5D%20port%200x100%20irq%20313%3CBR%20%2F%3ECAN%20device%20driver%20interface%3CBR%20%2F%3E2188000.ethernet%20supply%20phy%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Epps%20pps0%3A%20new%20PPS%20source%20ptp0%3CBR%20%2F%3Elibphy%3A%20fec_enet_mii_bus%3A%20probed%3CBR%20%2F%3Efec%202188000.ethernet%20eth0%3A%20registered%20PHC%20device%200%3CBR%20%2F%3Eehci_hcd%3A%20USB%202.0%20'Enhanced'%20Host%20Controller%20(EHCI)%20Driver%3CBR%20%2F%3Eehci-mxc%3A%20Freescale%20On-Chip%20EHCI%20Host%20driver%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usb-storage%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usb_ehset_test%3CBR%20%2F%3E2184800.usbmisc%20supply%20vbus-wakeup%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Eimx_usb%202184000.usb%3A%20Can't%20register%20ci_hdrc%20platform%20device%2C%20err%3D-517%3CBR%20%2F%3Eimx_usb%202184200.usb%3A%20Can't%20register%20ci_hdrc%20platform%20device%2C%20err%3D-517%3CBR%20%2F%3Emousedev%3A%20PS%2F2%20mouse%20device%20common%20for%20all%20mice%3CBR%20%2F%3Eegalax_ts%201-0004%3A%20Failed%20to%20read%20firmware%20version%3CBR%20%2F%3Eegalax_ts%3A%20probe%20of%201-0004%20failed%20with%20error%20-5%3CBR%20%2F%3E2-0044%20supply%20vdd%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Einput%3A%20isl29023%20light%20sensor%20as%20%2Fdevices%2Fvirtual%2Finput%2Finput1%3CBR%20%2F%3Eisl29023%202-0044%3A%20driver%20version%201.0%20enabled%3CBR%20%2F%3Esnvs_rtc%2020cc000.snvs%3Asnvs-rtc-lp%3A%20rtc%20core%3A%20registered%2020cc000.snvs%3Asnvs-r%20as%20rtc0%3CBR%20%2F%3Ei2c%20%2Fdev%20entries%20driver%3CBR%20%2F%3EIR%20NEC%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20RC5(x%2Fsz)%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20RC6%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20JVC%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20Sony%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20SANYO%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20Sharp%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20MCE%20Keyboard%2Fmouse%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20XMP%20protocol%20handler%20initialized%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out%3A%20V4L2%20device%20registered%20as%20video16%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out%3A%20V4L2%20device%20registered%20as%20video17%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out%3A%20V4L2%20device%20registered%20as%20video18%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out%3A%20V4L2%20device%20registered%20as%20video19%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out%3A%20V4L2%20device%20registered%20as%20video20%3CBR%20%2F%3E2-000e%20supply%20vdd%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3E2-000e%20supply%20vddio%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Emag3110%202-000e%3A%20check%20mag3110%20chip%20ID%3CBR%20%2F%3Einput%3A%20mag3110%20as%20%2Fdevices%2Fvirtual%2Finput%2Finput2%3CBR%20%2F%3Emag3110%202-000e%3A%20mag3110%20is%20probed%3CBR%20%2F%3E2-001c%20supply%20vdd%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3E2-001c%20supply%20vddio%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Einput%3A%20mma845x%20as%20%2Fdevices%2Fvirtual%2Finput%2Finput3%3CBR%20%2F%3Eimx2-wdt%2020bc000.wdog%3A%20timeout%2060%20sec%20(nowayout%3D0)%3CBR%20%2F%3EBluetooth%3A%20HCI%20UART%20driver%20ver%202.3%3CBR%20%2F%3EBluetooth%3A%20HCI%20UART%20protocol%20H4%20registered%3CBR%20%2F%3EBluetooth%3A%20HCI%20UART%20protocol%20BCSP%20registered%3CBR%20%2F%3EBluetooth%3A%20HCI%20UART%20protocol%20ATH3K%20registered%3CBR%20%2F%3Eata1%3A%20SATA%20link%20down%20(SStatus%200%20SControl%20300)%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20no%20device%20found%2C%20disabling%20link.%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20bcm203x%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20btusb%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20ath3k%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20pass%20ahci_imx..hotplug%3D1%20to%20enable%20hotplug%3CBR%20%2F%3Esdhci%3A%20Secure%20Digital%20Host%20Controller%20Interface%20driver%3CBR%20%2F%3Esdhci%3A%20Copyright(c)%20Pierre%20Ossman%3CBR%20%2F%3Esdhci-pltfm%3A%20SDHCI%20platform%20and%20OF%20driver%20helper%3CBR%20%2F%3E%2Fsoc%2Faips-bus%4002100000%2Fusdhc%4002190000%3A%20voltage-ranges%20unspecified%3CBR%20%2F%3Esdhci-esdhc-imx%202190000.usdhc%3A%20Got%20CD%20GPIO%3CBR%20%2F%3Esdhci-esdhc-imx%202190000.usdhc%3A%20No%20vmmc%20regulator%20found%3CBR%20%2F%3Esdhci-esdhc-imx%202190000.usdhc%3A%20No%20vqmmc%20regulator%20found%3CBR%20%2F%3Emmc0%3A%20SDHCI%20controller%20on%202190000.usdhc%20%5B2190000.usdhc%5D%20using%20ADMA%3CBR%20%2F%3E%2Fsoc%2Faips-bus%4002100000%2Fusdhc%4002198000%3A%20voltage-ranges%20unspecified%3CBR%20%2F%3Esdhci-esdhc-imx%202198000.usdhc%3A%20Got%20CD%20GPIO%3CBR%20%2F%3Esdhci-esdhc-imx%202198000.usdhc%3A%20Got%20WP%20GPIO%3CBR%20%2F%3Esdhci-esdhc-imx%202198000.usdhc%3A%20No%20vqmmc%20regulator%20found%3CBR%20%2F%3Emmc2%3A%20SDHCI%20controller%20on%202198000.usdhc%20%5B2198000.usdhc%5D%20using%20ADMA%3CBR%20%2F%3E218c000.mlb%20supply%20reg_nvcc%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Emxc_mlb150%20218c000.mlb%3A%20enalbe%20regulator%3CBR%20%2F%3Emxc_vpu%202040000.vpu_fsl%3A%20VPU%20initialized%3CBR%20%2F%3Emxc_vdoa%2021e4000.vdoa%3A%20i.MX%20Video%20Data%20Order%20Adapter(VDOA)%20driver%20probed%3CBR%20%2F%3Eimx6q-pinctrl%2020e0000.iomuxc%3A%20unable%20to%20find%20group%20for%20node%20hdmicecgrp%3CBR%20%2F%3Eimx6q-pinctrl%2020e0000.iomuxc%3A%20unable%20to%20find%20group%20for%20node%20hdmicecgrp%3CBR%20%2F%3Emxc_hdmi_cec%20soc%3Ahdmi_cec%4000120000%3A%20can't%20get%2Fselect%20CEC%20pinctrl%3CBR%20%2F%3EGalcore%20version%205.0.11.41671%3CBR%20%2F%3Emmc2%3A%20new%20ultra%20high%20speed%20SDR104%20SDHC%20card%20at%20address%200007%3CBR%20%2F%3Emmcblk2%3A%20mmc2%3A0007%20SD32G%2028.9%20GiB%3CBR%20%2F%3E%20mmcblk2%3A%20p1%20p2%3CBR%20%2F%3Ecaam%202100000.caam%3A%20Entropy%20delay%20%3D%203200%3CBR%20%2F%3Ecaam%202100000.caam%3A%20Instantiated%20RNG4%20SH0%3CBR%20%2F%3Ecaam%202100000.caam%3A%20Instantiated%20RNG4%20SH1%3CBR%20%2F%3Ecaam%202100000.caam%3A%20device%20ID%20%3D%200x0a16010000000000%20(Era%20-524)%3CBR%20%2F%3Ecaam%202100000.caam%3A%20job%20rings%20%3D%202%2C%20qi%20%3D%200%3CBR%20%2F%3Ecaam%20algorithms%20registered%20in%20%2Fproc%2Fcrypto%3CBR%20%2F%3Ecaam_jr%202101000.jr0%3A%20registering%20rng-caam%3CBR%20%2F%3Eplatform%20caam_sm%3A%20blkkey_ex%3A%204%20keystore%20units%20available%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20b1%2020%207c%200a%208a%2086%2061%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20f0%2019%2001%2046%2038%2076%20bd%2049%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2008%2009%200a%200b%200c%200d%200e%200f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%202f%2006%2082%201f%20cc%20b0%2035%201f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2072%2003%20b1%20f3%20aa%20e0%203e%20b0%3CBR%20%2F%3Eplatform%20caam_sm%3A%20192-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2008%2009%200a%200b%200c%200d%200e%200f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2010%2011%2012%2013%2014%2015%2016%2017%3CBR%20%2F%3Eplatform%20caam_sm%3A%20192-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%201b%20b3%20ad%2095%20d0%2024%2081%209a%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20fd%20b9%20b8%204c%2055%2017%2092%20c4%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%20ae%20af%20b5%206a%20ea%2059%2001%204f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%201b%20be%20de%20e8%20dd%205c%208b%2010%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2008%2009%200a%200b%200c%200d%200e%200f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2010%2011%2012%2013%2014%2015%2016%2017%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2018%2019%201a%201b%201c%201d%201e%201f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20cf%20f7%2016%2054%202e%207b%2019%20e0%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20fe%2096%208c%208b%203e%201b%20b3%20f0%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2038%2035%20bc%2080%2067%2035%20ed%2058%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%20e1%20dd%2073%2011%2085%208b%2010%201f%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20196-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%207c%2066%201b%2086%202d%201c%20b7%202d%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2020%201f%20bb%20eb%20b4%2000%201c%2056%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%208f%20b7%2046%20a6%2040%2058%2028%2049%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2055%20a0%2050%201c%2058%201d%2043%20a9%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2006%203c%2086%2013%20da%207d%20c1%206a%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%203b%2009%2077%20ee%203a%20ee%203f%20e6%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%207e%20be%2058%2092%20f4%20b9%201d%204a%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2061%20a7%20fd%2069%20ac%2006%203c%2035%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2055%20aa%2049%2066%20c1%20d2%20ee%2049%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2004%20af%2080%204a%20fe%2033%2092%20ab%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%209c%20a7%20c3%2082%2025%2053%2080%2063%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2022%203e%2089%209a%20e6%20d8%20a6%2054%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%20c6%20e6%20f7%2034%20b6%201f%202c%209e%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%205e%2096%2089%205e%20a6%20fc%207f%2087%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2020%205f%207a%2016%2011%203b%20e7%20ce%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20192-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2023%202c%20cb%201b%2073%20ab%207d%2023%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20f4%20b0%20f7%2092%20b2%2078%200d%204c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%20b7%20ba%201e%204d%2005%206d%2031%20f5%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%20ce%20c9%20fd%200a%20ce%2039%20eb%2094%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%20cb%20b1%2033%2041%20b7%20f7%206b%2026%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2044%2080%20d7%2026%2036%2025%20ad%2073%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2087%20a0%2051%2029%2082%207f%209c%20d8%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%202f%2075%2098%205f%20b7%2050%20f3%20db%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%20b3%2039%2017%20c7%20c9%2090%20c8%2026%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2049%20ff%205a%20d8%2079%2044%20e7%2067%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2096%2087%2075%20f6%205c%208a%202e%20df%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%20ae%20cc%20a1%20b6%204a%2031%20f6%20e8%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%208d%20fd%20ad%208b%2007%20f3%20e8%20b0%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%20c0%2058%2018%209b%20ae%2002%20bb%20ce%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2038%20fb%2044%20db%2004%2067%201b%20c7%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%202c%2015%2075%2041%208d%20c1%2077%20cf%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%20a1%2068%20de%2068%202d%20cd%2024%20e7%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%20d5%207e%20e3%2022%20eb%207a%2021%209d%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2063%2067%20cf%203b%2032%2019%20e0%2003%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%2064-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2095%20c8%20a2%20bc%20ac%202e%208e%20d7%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20f7%20cc%20fa%205b%20b6%20a5%205b%204b%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%20128-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%202f%2006%2082%201f%20cc%20b0%2035%201f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2072%2003%20b1%20f3%20aa%20e0%203e%20b0%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%20192-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%201b%20b3%20ad%2095%20d0%2024%2081%209a%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20fd%20b9%20b8%204c%2055%2017%2092%20c4%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%205f%2082%2048%2034%20d8%20cb%2015%20a9%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%20b0%206c%20fe%20c8%20ee%208e%20cd%2021%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%20256-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20cf%20f7%2016%2054%202e%207b%2019%20e0%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20fe%2096%208c%208b%203e%201b%20b3%20f0%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2038%2035%20bc%2080%2067%2035%20ed%2058%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%20e1%20dd%2073%2011%2085%208b%2010%201f%3CBR%20%2F%3Esnvs-secvio%2020cc000.caam-snvs%3A%20can't%20get%20snvs%20clock%3CBR%20%2F%3Esnvs-secvio%2020cc000.caam-snvs%3A%20violation%20handlers%20armed%20-%20non-secure%20state%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usbhid%3CBR%20%2F%3Eusbhid%3A%20USB%20HID%20core%20driver%3CBR%20%2F%3Ecs42xx8%201-0048%3A%20found%20device%2C%20revision%204%3CBR%20%2F%3Efsl-asrc%202034000.asrc%3A%20driver%20registered%3CBR%20%2F%3Eimx-cs42888%20sound-cs42888%3A%20cs42888%20%26lt%3B-%26gt%3B%202024000.esai%20mapping%20ok%3CBR%20%2F%3Eimx-cs42888%20sound-cs42888%3A%20snd-soc-dummy-dai%20%26lt%3B-%26gt%3B%202034000.asrc%20mapping%20ok%3CBR%20%2F%3Eimx-cs42888%20sound-cs42888%3A%20cs42888%20%26lt%3B-%26gt%3B%202024000.esai%20mapping%20ok%3CBR%20%2F%3Eimx-spdif%20sound-spdif%3A%20snd-soc-dummy-dai%20%26lt%3B-%26gt%3B%202004000.spdif%20mapping%20ok%3CBR%20%2F%3Eimx-tuner-si476x%20sound-fm%3A%20failed%20to%20find%20FM%20platform%20device%3CBR%20%2F%3Eimx-tuner-si476x%3A%20probe%20of%20sound-fm%20failed%20with%20error%20-22%3CBR%20%2F%3Eimx-audio-hdmi%20sound-hdmi%3A%20hdmi-hifi%20%26lt%3B-%26gt%3B%20soc%3Ahdmi_audio%4000120000%20mapping%20ok%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2026%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2010%3CBR%20%2F%3Esit%3A%20IPv6%20over%20IPv4%20tunneling%20driver%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2017%3CBR%20%2F%3Ecan%3A%20controller%20area%20network%20core%20(rev%2020120528%20abi%209)%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2029%3CBR%20%2F%3Ecan%3A%20raw%20protocol%20(rev%2020120528)%3CBR%20%2F%3Ecan%3A%20broadcast%20manager%20protocol%20(rev%2020120528%20t)%3CBR%20%2F%3Ecan%3A%20netlink%20gateway%20(rev%2020130117)%20max_hops%3D1%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20TTY%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20ver%201.11%3CBR%20%2F%3EBluetooth%3A%20BNEP%20(Ethernet%20Emulation)%20ver%201.3%3CBR%20%2F%3EBluetooth%3A%20BNEP%20filters%3A%20protocol%20multicast%3CBR%20%2F%3EBluetooth%3A%20BNEP%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20HIDP%20(Human%20Interface%20Emulation)%20ver%201.2%3CBR%20%2F%3EBluetooth%3A%20HIDP%20socket%20layer%20initialized%3CBR%20%2F%3E8021q%3A%20802.1Q%20VLAN%20Support%20v1.8%3CBR%20%2F%3EKey%20type%20dns_resolver%20registered%3CBR%20%2F%3Ecan-stby%3A%20supplied%20by%20can-en%3CBR%20%2F%3Eflexcan%202094000.flexcan%3A%20device%20registered%20(reg_base%3Df0648000%2C%20irq%3D31)%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.0%3A%20EHCI%20Host%20Controller%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.0%3A%20new%20USB%20bus%20registered%2C%20assigned%20bus%20number%201%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.0%3A%20USB%202.0%20started%2C%20EHCI%201.00%3CBR%20%2F%3Ehub%201-0%3A1.0%3A%20USB%20hub%20found%3CBR%20%2F%3Ehub%201-0%3A1.0%3A%201%20port%20detected%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.1%3A%20EHCI%20Host%20Controller%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.1%3A%20new%20USB%20bus%20registered%2C%20assigned%20bus%20number%202%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.1%3A%20USB%202.0%20started%2C%20EHCI%201.00%3CBR%20%2F%3Ehub%202-0%3A1.0%3A%20USB%20hub%20found%3CBR%20%2F%3Ehub%202-0%3A1.0%3A%201%20port%20detected%3CBR%20%2F%3Edhd_module_init%20in%3CBR%20%2F%3Einput%3A%20gpio-keys%20as%20%2Fdevices%2Fsoc0%2Fgpio-keys%2Finput%2Finput4%3CBR%20%2F%3Esnvs_rtc%2020cc000.snvs%3Asnvs-rtc-lp%3A%20setting%20system%20clock%20to%201970-01-01%2000%3A00%3A02%20UTC%20(2)%3CBR%20%2F%3Ecan-stby%3A%20disabling%3CBR%20%2F%3Ecan-en%3A%20disabling%3CBR%20%2F%3EVGEN2%3A%20disabling%3CBR%20%2F%3ESWBST%3A%20disabling%3CBR%20%2F%3ESW4%3A%20disabling%3CBR%20%2F%3EALSA%20device%20list%3A%3CBR%20%2F%3E%20%230%3A%20cs42888-audio%3CBR%20%2F%3E%20%231%3A%20imx-spdif%3CBR%20%2F%3E%20%232%3A%20imx-hdmi-soc%3CBR%20%2F%3Eusb%201-1%3A%20new%20high-speed%20USB%20device%20number%202%20using%20ci_hdrc%3CBR%20%2F%3Ehub%201-1%3A1.0%3A%20USB%20hub%20found%3CBR%20%2F%3Ehub%201-1%3A1.0%3A%204%20ports%20detected%3CBR%20%2F%3Eusb%201-1.2%3A%20new%20low-speed%20USB%20device%20number%203%20using%20ci_hdrc%3CBR%20%2F%3Einput%3A%20DELL%20DELL%20USB%20Laser%20Mouse%20as%20%2Fdevices%2Fsoc0%2Fsoc%2F2100000.aips-bus%2F2184000.usb%2Fci_hdrc.0%2Fusb1%2F1-1%2F1-1.2%2F1-1.2%3A1.0%2F0003%3A046D%3AC063.0001%2Finput%2Finput5%3CBR%20%2F%3Ehid-generic%200003%3A046D%3AC063.0001%3A%20input%3A%20USB%20HID%20v1.10%20Mouse%20%5BDELL%20DELL%20USB%20Laser%20Mouse%5D%20on%20usb-ci_hdrc.0-1.2%2Finput0%3CBR%20%2F%3Eusb%201-1.3%3A%20new%20low-speed%20USB%20device%20number%204%20using%20ci_hdrc%3CBR%20%2F%3Einput%3A%20Dell%20Dell%20QuietKey%20Keyboard%20as%20%2Fdevices%2Fsoc0%2Fsoc%2F2100000.aips-bus%2F2184000.usb%2Fci_hdrc.0%2Fusb1%2F1-1%2F1-1.3%2F1-1.3%3A1.0%2F0003%3A413C%3A2106.0002%2Finput%2Finput6%3CBR%20%2F%3Ehid-generic%200003%3A413C%3A2106.0002%3A%20input%3A%20USB%20HID%20v1.10%20Keyboard%20%5BDell%20Dell%20QuietKey%20Keyboard%5D%20on%20usb-ci_hdrc.0-1.3%2Finput0%3CBR%20%2F%3Ekjournald%20starting.%20Commit%20interval%205%20seconds%3CBR%20%2F%3EEXT3-fs%20(mmcblk2p2)%3A%20using%20internal%20journal%3CBR%20%2F%3EEXT3-fs%20(mmcblk2p2)%3A%20recovery%20complete%3CBR%20%2F%3EEXT3-fs%20(mmcblk2p2)%3A%20mounted%20filesystem%20with%20ordered%20data%20mode%3CBR%20%2F%3EVFS%3A%20Mounted%20root%20(ext3%20filesystem)%20on%20device%20179%3A2.%3CBR%20%2F%3Edevtmpfs%3A%20mounted%3CBR%20%2F%3EFreeing%20unused%20kernel%20memory%3A%20432K%20(80af6000%20-%2080b62000)%3CBR%20%2F%3EMount%20failed%20for%20selinuxfs%20on%20%2Fsys%2Ffs%2Fselinux%3A%20No%20such%20file%20or%20directory%3CBR%20%2F%3Erandom%3A%20init%20urandom%20read%20with%2034%20bits%20of%20entropy%20available%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20(175)%20terminated%20with%20status%201%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20ended%2C%20respawning%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20(185)%20terminated%20with%20status%201%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20ended%2C%20respawning%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20(189)%20terminated%20with%20status%201%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20ended%2C%20respawning%3CBR%20%2F%3Einit%3A%20ureadahead%20main%20process%20(178)%20terminated%20with%20status%205%3CBR%20%2F%3Einit%3A%20mounted-proc%20main%20process%20(204)%20terminated%20with%20status%201%3CBR%20%2F%3EDBG%20sensor%20data%20is%20at%207f010188%3CBR%20%2F%3E%20*%20Stopping%20Send%20an%20event%20to%20indicate%20plymouth%20is%20up%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Mount%20filesystems%20on%20boot%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Signal%20sysvinit%20that%20the%20rootfs%20is%20mounted%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Populate%20%2Fdev%20filesystem%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Populate%20%2Fdev%20filesystem%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Clean%20%2Ftmp%20directory%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Populate%20and%20link%20to%20%2Frun%20filesystem%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Clean%20%2Ftmp%20directory%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Populate%20and%20link%20to%20%2Frun%20filesystem%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Track%20if%20upstart%20is%20running%20in%20a%20container%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Initialize%20or%20finalize%20resolvconf%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20set%20console%20keymap%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Signal%20sysvinit%20that%20virtual%20filesystems%20are%20mounted%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Signal%20sysvinit%20that%20virtual%20filesystems%20are%20mounted%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Bridge%20udev%20events%20into%20upstart%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20set%20console%20keymap%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20device%20node%20and%20kernel%20event%20manager%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Signal%20sysvinit%20that%20local%20filesystems%20are%20mounted%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Signal%20sysvinit%20that%20remote%20filesystems%20are%20mounted%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20load%20modules%20from%20%2Fetc%2Fmodules%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20cold%20plug%20devices%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20log%20initial%20device%20creation%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20load%20modules%20from%20%2Fetc%2Fmodules%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20flush%20early%20job%20output%20to%20logs%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Mount%20filesystems%20on%20boot%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20flush%20early%20job%20output%20to%20logs%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20D-Bus%20system%20message%20bus%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20set%20console%20font%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20SystemD%20login%20management%20service%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20set%20console%20font%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20userspace%20bootsplash%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20userspace%20bootsplash%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Send%20an%20event%20to%20indicate%20plymouth%20is%20up%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20bluetooth%20daemon%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Send%20an%20event%20to%20indicate%20plymouth%20is%20up%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20system%20logging%20daemon%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20security%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20mDNS%2FDNS-SD%20daemon%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Reload%20cups%2C%20upon%20starting%20avahi-daemon%20to%20make%20sure%20remote%20q%5B%20OK%20%5Dare%20populated%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Reload%20cups%2C%20upon%20starting%20avahi-daemon%20to%20make%20sure%20remote%20q%5Bfail%5Dare%20populated%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20security%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20security%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20security%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Mount%20network%20filesystems%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Failsafe%20Boot%20Delay%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Mount%20network%20filesystems%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Failsafe%20Boot%20Delay%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20System%20V%20initialisation%20compatibility%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Setting%20up%20X%20socket%20directories...%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20System%20V%20initialisation%20compatibility%20%5B%20OK%20%5D%3C%2FP%3E%3CP%3ELast%20login%3A%20Thu%20Jan%201%2000%3A00%3A23%20UTC%201970%20on%20tty1%3CBR%20%2F%3EWelcome%20to%20Linaro%2014.04%20(GNU%2FLinux%204.1.15%20armv7l)%3C%2FP%3E%3CP%3E%3CSPAN%3E*%20Documentation%3A%20%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fexternal-link.jspa%3Furl%3Dhttps%253A%252F%252Fwiki.linaro.org%252F%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fwiki.linaro.org%2F%3C%2FA%3E%3CBR%20%2F%3Eroot%40linaro-alip%3A~%23%3C%2FP%3E%3C%2FBLOCKQUOTE%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108511%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108511%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EI%20did%20compile%20for%204.1.15%20kernel%20but%20I%20need%20to%20set%20(configure)%20proper%20board%20instead%20of%26nbsp%3B%3CSPAN%20style%3D%22background-color%3A%20%23f6f6f6%3B%22%3EBoard%3A%20MX6Q-Sabreauto%20revA%3C%2FSPAN%3E%3C%2FP%3E%3CP%3EI%20need%20to%20have%3A%26nbsp%3B%3CSTRONG%3EMX6QP-Sabreauto%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3EWhere%20and%20how%20to%20configure%20it%3F%3C%2FP%3E%3CP%3EHow%20can%20I%20redirect%20display%20to%20HDMI%3F%3C%2FP%3E%3CBLOCKQUOTE%20class%3D%22jive_macro_quote%20jive-quote%20jive_text_macro%22%3E%3CP%3E%3C%2FP%3E%3CP%3EU-Boot%202016.03%20(Nov%2003%202016%20-%2011%3A28%3A37%20%2B0100)%3C%2FP%3E%3CP%3ECPU%3A%20Freescale%20i.MX6QP%20rev1.0%20996%20MHz%20(running%20at%20792%20MHz)%3CBR%20%2F%3ECPU%3A%20Automotive%20temperature%20grade%20(-40C%20to%20125C)%20at%2028C%3CBR%20%2F%3EReset%20cause%3A%20POR%3CBR%20%2F%3EBoard%3A%20MX6Q-Sabreauto%20revA%3CBR%20%2F%3EI2C%3A%20ready%3CBR%20%2F%3EDRAM%3A%202%20GiB%3CBR%20%2F%3EPMIC%3A%20PFUZE100%20ID%3D0x10%3CBR%20%2F%3ENAND%3A%200%20MiB%3CBR%20%2F%3EMMC%3A%20FSL_SDHC%3A%200%2C%20FSL_SDHC%3A%201%3CBR%20%2F%3E***%20Warning%20-%20bad%20CRC%2C%20using%20default%20environment%3C%2FP%3E%3CP%3ENo%20panel%20detected%3A%20default%20to%20Hannstar-XGA%3CBR%20%2F%3EDisplay%3A%20Hannstar-XGA%20(1024x768)%3CBR%20%2F%3EIn%3A%20serial%3CBR%20%2F%3EOut%3A%20serial%3CBR%20%2F%3EErr%3A%20serial%3CBR%20%2F%3Eswitch%20to%20partitions%20%230%2C%20OK%3CBR%20%2F%3Emmc1%20is%20current%20device%3CBR%20%2F%3ENet%3A%20FEC%20%5BPRIME%5D%3CBR%20%2F%3ENormal%20Boot%3CBR%20%2F%3EHit%20any%20key%20to%20stop%20autoboot%3A%200%3C%2FP%3E%3C%2FBLOCKQUOTE%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108510%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108510%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHow%20can%20I%20redirect%20output%20to%20HDMI%20monitor%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20am%20trying%20to%20start%20the%20system%20but%20I%20got%20stuck%20at%26nbsp%3B%3C%2FP%3E%3CP%3E*%20Stopping%20save%20kernel%20messages%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%5B%20OK%20%5D%3C%2FP%3E%3CBR%20%2F%3E%3CP%3E%3C%2FP%3E%3CBLOCKQUOTE%20class%3D%22jive_macro_quote%20jive-quote%20jive_text_macro%22%3E%3CP%3EU-Boot%202015.04%20(Nov%2002%202016%20-%2023%3A46%3A14)%3C%2FP%3E%3CP%3ECPU%3A%20Freescale%20i.MX6QP%20rev1.0%20at%20792%20MHz%3CBR%20%2F%3ECPU%3A%20Temperature%2033%20C%3CBR%20%2F%3EReset%20cause%3A%20POR%3CBR%20%2F%3EBoard%3A%20MX6Q-Sabreauto%20revA%3CBR%20%2F%3EI2C%3A%20ready%3CBR%20%2F%3EDRAM%3A%202%20GiB%3CBR%20%2F%3EPMIC%3A%20PFUZE100%20ID%3D0x10%3CBR%20%2F%3ENAND%3A%200%20MiB%3CBR%20%2F%3EMMC%3A%20FSL_SDHC%3A%200%2C%20FSL_SDHC%3A%201%3CBR%20%2F%3E***%20Warning%20-%20bad%20CRC%2C%20using%20default%20environment%3C%2FP%3E%3CP%3ENo%20panel%20detected%3A%20default%20to%20Hannstar-XGA%3CBR%20%2F%3EDisplay%3A%20Hannstar-XGA%20(1024x768)%3CBR%20%2F%3EIn%3A%20serial%3CBR%20%2F%3EOut%3A%20serial%3CBR%20%2F%3EErr%3A%20serial%3CBR%20%2F%3Eswitch%20to%20partitions%20%230%2C%20OK%3CBR%20%2F%3Emmc1%20is%20current%20device%3CBR%20%2F%3ENet%3A%20FEC%20%5BPRIME%5D%3CBR%20%2F%3ENormal%20Boot%3CBR%20%2F%3EHit%20any%20key%20to%20stop%20autoboot%3A%200%3CBR%20%2F%3Eswitch%20to%20partitions%20%230%2C%20OK%3CBR%20%2F%3Emmc1%20is%20current%20device%3CBR%20%2F%3Ereading%20boot.scr%3CBR%20%2F%3E**%20Unable%20to%20read%20file%20boot.scr%20**%3CBR%20%2F%3Ereading%20zImage%3CBR%20%2F%3E6022776%20bytes%20read%20in%20309%20ms%20(18.6%20MiB%2Fs)%3CBR%20%2F%3EBooting%20from%20mmc%20...%3CBR%20%2F%3Ereading%20imx6qp-sabreauto.dtb%3CBR%20%2F%3E46893%20bytes%20read%20in%2020%20ms%20(2.2%20MiB%2Fs)%3CBR%20%2F%3EKernel%20image%20%40%200x12000000%20%5B%200x000000%20-%200x5be678%20%5D%3CBR%20%2F%3E%23%23%20Flattened%20Device%20Tree%20blob%20at%2018000000%3CBR%20%2F%3E%20Booting%20using%20the%20fdt%20blob%20at%200x18000000%3CBR%20%2F%3E%20Using%20Device%20Tree%20in%20place%20at%2018000000%2C%20end%201800e72c%3C%2FP%3E%3CP%3EStarting%20kernel%20...%3C%2FP%3E%3CP%3EBooting%20Linux%20on%20physical%20CPU%200x0%3CBR%20%2F%3ELinux%20version%203.14.52%20(r59400%40Latitude)%20(gcc%20version%204.8.5%20(Linaro%20GCC%204.8-2015.06)%20)%20%233%20SMP%20PREEMPT%20Wed%20Nov%202%2023%3A55%3A53%20CET%202016%3CBR%20%2F%3ECPU%3A%20ARMv7%20Processor%20%5B412fc09a%5D%20revision%2010%20(ARMv7)%2C%20cr%3D10c53c7d%3CBR%20%2F%3ECPU%3A%20PIPT%20%2F%20VIPT%20nonaliasing%20data%20cache%2C%20VIPT%20aliasing%20instruction%20cache%3CBR%20%2F%3EMachine%20model%3A%20Freescale%20i.MX6%20Quad%20Plus%20SABRE%20Automotive%20Board%3CBR%20%2F%3Ecma%3A%20CMA%3A%20reserved%20320%20MiB%20at%206a000000%3CBR%20%2F%3EMemory%20policy%3A%20Data%20cache%20writealloc%3CBR%20%2F%3EPERCPU%3A%20Embedded%208%20pages%2Fcpu%20%40ee71d000%20s8320%20r8192%20d16256%20u32768%3CBR%20%2F%3EBuilt%201%20zonelists%20in%20Zone%20order%2C%20mobility%20grouping%20on.%20Total%20pages%3A%20520720%3CBR%20%2F%3EKernel%20command%20line%3A%20console%3Dttymxc3%2C115200%20root%3D%2Fdev%2Fmmcblk2p2%20rootwait%20rw%3CBR%20%2F%3EPID%20hash%20table%20entries%3A%204096%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3EDentry%20cache%20hash%20table%20entries%3A%20262144%20(order%3A%208%2C%201048576%20bytes)%3CBR%20%2F%3EInode-cache%20hash%20table%20entries%3A%20131072%20(order%3A%207%2C%20524288%20bytes)%3CBR%20%2F%3EMemory%3A%201739228K%2F2097152K%20available%20(7452K%20kernel%20code%2C%20460K%20rwdata%2C%202596K%20rodata%2C%20392K%20init%2C%20433K%20bss%2C%20357924K%20reserved%2C%20270336K%20highmem)%3CBR%20%2F%3EVirtual%20kernel%20memory%20layout%3A%3CBR%20%2F%3E%20vector%20%3A%200xffff0000%20-%200xffff1000%20(%204%20kB)%3CBR%20%2F%3E%20fixmap%20%3A%200xfff00000%20-%200xfffe0000%20(%20896%20kB)%3CBR%20%2F%3E%20vmalloc%20%3A%200xf0000000%20-%200xff000000%20(%20240%20MB)%3CBR%20%2F%3E%20lowmem%20%3A%200x80000000%20-%200xef800000%20(1784%20MB)%3CBR%20%2F%3E%20pkmap%20%3A%200x7fe00000%20-%200x80000000%20(%202%20MB)%3CBR%20%2F%3E%20modules%20%3A%200x7f000000%20-%200x7fe00000%20(%2014%20MB)%3CBR%20%2F%3E%20.text%20%3A%200x80008000%20-%200x809d82d4%20(10049%20kB)%3CBR%20%2F%3E%20.init%20%3A%200x809d9000%20-%200x80a3b080%20(%20393%20kB)%3CBR%20%2F%3E%20.data%20%3A%200x80a3c000%20-%200x80aaf340%20(%20461%20kB)%3CBR%20%2F%3E%20.bss%20%3A%200x80aaf34c%20-%200x80b1b99c%20(%20434%20kB)%3CBR%20%2F%3ESLUB%3A%20HWalign%3D64%2C%20Order%3D0-3%2C%20MinObjects%3D0%2C%20CPUs%3D4%2C%20Nodes%3D1%3CBR%20%2F%3EPreemptible%20hierarchical%20RCU%20implementation.%3CBR%20%2F%3ENR_IRQS%3A16%20nr_irqs%3A16%2016%3CBR%20%2F%3EL310%20cache%20controller%20enabled%3CBR%20%2F%3El2x0%3A%2016%20ways%2C%20CACHE_ID%200x410000c8%2C%20AUX_CTRL%200x32070000%2C%20Cache%20size%3A%201024%20kB%3CBR%20%2F%3ESwitching%20to%20timer-based%20delay%20loop%3CBR%20%2F%3Esched_clock%3A%2032%20bits%20at%203000kHz%2C%20resolution%20333ns%2C%20wraps%20every%201431655765682ns%3CBR%20%2F%3EConsole%3A%20colour%20dummy%20device%2080x30%3CBR%20%2F%3ECalibrating%20delay%20loop%20(skipped)%2C%20value%20calculated%20using%20timer%20frequency..%206.00%20BogoMIPS%20(lpj%3D30000)%3CBR%20%2F%3Epid_max%3A%20default%3A%2032768%20minimum%3A%20301%3CBR%20%2F%3EMount-cache%20hash%20table%20entries%3A%204096%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3EMountpoint-cache%20hash%20table%20entries%3A%204096%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3ECPU%3A%20Testing%20write%20buffer%20coherency%3A%20ok%3CBR%20%2F%3ECPU0%3A%20thread%20-1%2C%20cpu%200%2C%20socket%200%2C%20mpidr%2080000000%3CBR%20%2F%3ESetting%20up%20static%20identity%20map%20for%200x10718008%20-%200x10718060%3CBR%20%2F%3ECPU1%3A%20Booted%20secondary%20processor%3CBR%20%2F%3ECPU1%3A%20thread%20-1%2C%20cpu%201%2C%20socket%200%2C%20mpidr%2080000001%3CBR%20%2F%3ECPU2%3A%20Booted%20secondary%20processor%3CBR%20%2F%3ECPU2%3A%20thread%20-1%2C%20cpu%202%2C%20socket%200%2C%20mpidr%2080000002%3CBR%20%2F%3ECPU3%3A%20Booted%20secondary%20processor%3CBR%20%2F%3ECPU3%3A%20thread%20-1%2C%20cpu%203%2C%20socket%200%2C%20mpidr%2080000003%3CBR%20%2F%3EBrought%20up%204%20CPUs%3CBR%20%2F%3ESMP%3A%20Total%20of%204%20processors%20activated%20(24.00%20BogoMIPS).%3CBR%20%2F%3ECPU%3A%20All%20CPU(s)%20started%20in%20SVC%20mode.%3CBR%20%2F%3Edevtmpfs%3A%20initialized%3CBR%20%2F%3EVFP%20support%20v0.3%3A%20implementor%2041%20architecture%203%20part%2030%20variant%209%20rev%204%3CBR%20%2F%3Epinctrl%20core%3A%20initialized%20pinctrl%20subsystem%3CBR%20%2F%3Eregulator-dummy%3A%20no%20parameters%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2016%3CBR%20%2F%3EDMA%3A%20preallocated%20256%20KiB%20pool%20for%20atomic%20coherent%20allocations%3CBR%20%2F%3Ecpuidle%3A%20using%20governor%20ladder%3CBR%20%2F%3Ecpuidle%3A%20using%20governor%20menu%3CBR%20%2F%3ECPU%20identified%20as%20i.MX6QP%2C%20silicon%20rev%201.0%3CBR%20%2F%3EUse%20WDOG1%20as%20reset%20source%3CBR%20%2F%3Esyscon%2020c8000.anatop%3A%20regmap%20%5Bmem%200x020c8000-0x020c8fff%5D%20registered%3CBR%20%2F%3Evdd1p1%3A%20800%20%26lt%3B--%26gt%3B%201375%20mV%20at%201100%20mV%3CBR%20%2F%3Evdd3p0%3A%202625%20%26lt%3B--%26gt%3B%203400%20mV%20at%203000%20mV%3CBR%20%2F%3Evdd2p5%3A%202000%20%26lt%3B--%26gt%3B%202750%20mV%20at%202400%20mV%3CBR%20%2F%3Evddarm%3A%20725%20%26lt%3B--%26gt%3B%201450%20mV%20at%201150%20mV%3CBR%20%2F%3Evddpu%3A%20725%20%26lt%3B--%26gt%3B%201450%20mV%20at%201150%20mV%3CBR%20%2F%3Evddsoc%3A%20725%20%26lt%3B--%26gt%3B%201450%20mV%20at%201175%20mV%3CBR%20%2F%3Esyscon%2020e0000.iomuxc-gpr%3A%20regmap%20%5Bmem%200x020e0000-0x020e0037%5D%20registered%3CBR%20%2F%3Esyscon%2021bc000.ocotp-ctrl%3A%20regmap%20%5Bmem%200x021bc000-0x021bffff%5D%20registered%3CBR%20%2F%3Ehw-breakpoint%3A%20found%205%20(%2B1%20reserved)%20breakpoint%20and%201%20watchpoint%20registers.%3CBR%20%2F%3Ehw-breakpoint%3A%20maximum%20watchpoint%20size%20is%204%20bytes.%3CBR%20%2F%3Eimx6q-pinctrl%2020e0000.iomuxc%3A%20initialized%20IMX%20pinctrl%20driver%3CBR%20%2F%3Ebio%3A%20create%20slab%20%3CBIO-0%3E%20at%200%3CBR%20%2F%3Emxs-dma%20110000.dma-apbh%3A%20initialized%3CBR%20%2F%3Ecs42888_supply%3A%203300%20mV%3CBR%20%2F%3E3P3V%3A%203300%20mV%3CBR%20%2F%3Evio1%3A%203300%20mV%3CBR%20%2F%3Evio2%3A%203300%20mV%3CBR%20%2F%3Evd%3A%203300%20mV%3CBR%20%2F%3Eva%3A%205000%20mV%3CBR%20%2F%3Eplatform%20usb_h1_vbus.30%3A%20Driver%20reg-fixed-voltage%20requests%20probe%20deferral%3CBR%20%2F%3Eplatform%20usb_otg_vbus.31%3A%20Driver%20reg-fixed-voltage%20requests%20probe%20deferral%3CBR%20%2F%3EP3V3_SDa_SWITCHED%3A%203300%20mV%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmax17135%5D%20using%20legacy%20suspend%20method%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmax17135%5D%20using%20legacy%20resume%20method%3CBR%20%2F%3ESCSI%20subsystem%20initialized%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usbfs%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20hub%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20device%20driver%20usb%3CBR%20%2F%3Eusbphy_nop1.12%20supply%20vcc%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Eusbphy_nop2.13%20supply%20vcc%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Ei2c%20i2c-1%3A%20IMX%20I2C%20adapter%20registered%3CBR%20%2F%3Ei2c%20i2c-2%3A%20IMX%20I2C%20adapter%20registered%3CBR%20%2F%3ELinux%20video%20capture%20interface%3A%20v2.00%3CBR%20%2F%3Epps_core%3A%20LinuxPPS%20API%20ver.%201%20registered%3CBR%20%2F%3E%3CSPAN%3Epps_core%3A%20Software%20ver.%205.3.6%20-%20Copyright%202005-2007%20Rodolfo%20Giometti%20%26lt%3B%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-email-small%22%20href%3D%22mailto%3Agiometti%40linux.it%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Egiometti%40linux.it%3C%2FA%3E%3CSPAN%3E%26gt%3B%3C%2FSPAN%3E%3CBR%20%2F%3EPTP%20clock%20support%20registered%3CBR%20%2F%3Eimx-ipuv3%202400000.ipu%3A%20IPU%20DMFC%20NORMAL%20mode%3A%201(0~1)%2C%205B(4%2C5)%2C%205F(6%2C7)%3CBR%20%2F%3Eimx-ipuv3%202800000.ipu%3A%20IPU%20DMFC%20NORMAL%20mode%3A%201(0~1)%2C%205B(4%2C5)%2C%205F(6%2C7)%3CBR%20%2F%3Eimx-prg%2021cc000.prg%3A%20driver%20probed%3CBR%20%2F%3Eimx-prg%2021cd000.prg%3A%20driver%20probed%3CBR%20%2F%3Eimx-pre%2021c8000.pre%3A%20driver%20probed%3CBR%20%2F%3Eimx-pre%2021c9000.pre%3A%20driver%20probed%3CBR%20%2F%3Eimx-pre%2021ca000.pre%3A%20driver%20probed%3CBR%20%2F%3Eimx-pre%2021cb000.pre%3A%20driver%20probed%3CBR%20%2F%3EMIPI%20CSI2%20driver%20module%20loaded%3CBR%20%2F%3EAdvanced%20Linux%20Sound%20Architecture%20Driver%20Initialized.%3CBR%20%2F%3EBluetooth%3A%20Core%20ver%202.18%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2031%3CBR%20%2F%3EBluetooth%3A%20HCI%20device%20and%20connection%20manager%20initialized%3CBR%20%2F%3EBluetooth%3A%20HCI%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20L2CAP%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20SCO%20socket%20layer%20initialized%3CBR%20%2F%3Ecfg80211%3A%20Calling%20CRDA%20to%20update%20world%20regulatory%20domain%3CBR%20%2F%3ESwitched%20to%20clocksource%20mxc_timer1%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%202%3CBR%20%2F%3ETCP%20established%20hash%20table%20entries%3A%2016384%20(order%3A%204%2C%2065536%20bytes)%3CBR%20%2F%3ETCP%20bind%20hash%20table%20entries%3A%2016384%20(order%3A%205%2C%20131072%20bytes)%3CBR%20%2F%3ETCP%3A%20Hash%20tables%20configured%20(established%2016384%20bind%2016384)%3CBR%20%2F%3ETCP%3A%20reno%20registered%3CBR%20%2F%3EUDP%20hash%20table%20entries%3A%201024%20(order%3A%203%2C%2032768%20bytes)%3CBR%20%2F%3EUDP-Lite%20hash%20table%20entries%3A%201024%20(order%3A%203%2C%2032768%20bytes)%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%201%3CBR%20%2F%3ERPC%3A%20Registered%20named%20UNIX%20socket%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20udp%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20tcp%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20tcp%20NFSv4.1%20backchannel%20transport%20module.%3CBR%20%2F%3Ehw%20perfevents%3A%20enabled%20with%20ARMv7%20Cortex-A9%20PMU%20driver%2C%207%20counters%20available%3CBR%20%2F%3Eimx%20rpmsg%20driver%20is%20registered.%3CBR%20%2F%3Eimx_busfreq%20busfreq.16%3A%20DDR%20medium%20rate%20not%20supported.%3CBR%20%2F%3EBus%20freq%20driver%20module%20loaded%3CBR%20%2F%3Efutex%20hash%20table%20entries%3A%201024%20(order%3A%204%2C%2065536%20bytes)%3CBR%20%2F%3Ebounce%20pool%20size%3A%2064%20pages%3CBR%20%2F%3EVFS%3A%20Disk%20quotas%20dquot_6.5.2%3CBR%20%2F%3EDquot-cache%20hash%20table%20entries%3A%201024%20(order%200%2C%204096%20bytes)%3CBR%20%2F%3ENFS%3A%20Registering%20the%20id_resolver%20key%20type%3CBR%20%2F%3EKey%20type%20id_resolver%20registered%3CBR%20%2F%3EKey%20type%20id_legacy%20registered%3CBR%20%2F%3Ejffs2%3A%20version%202.2.%20(NAND)%20%C2%A9%202001-2006%20Red%20Hat%2C%20Inc.%3CBR%20%2F%3Efuse%20init%20(API%20version%207.22)%3CBR%20%2F%3Emsgmni%20has%20been%20set%20to%203508%3CBR%20%2F%3Eio%20scheduler%20noop%20registered%3CBR%20%2F%3Eio%20scheduler%20deadline%20registered%3CBR%20%2F%3Eio%20scheduler%20cfq%20registered%20(default)%3CBR%20%2F%3Ebacklight.17%20supply%20power%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3EMIPI%20DSI%20driver%20module%20loaded%3CBR%20%2F%3EMIPI%20DSI%20driver%20module%20loaded%3CBR%20%2F%3Emxc_sdc_fb%20fb.23%3A%20registered%20mxc%20display%20driver%20ldb%3CBR%20%2F%3Eimx-ipuv3%202800000.ipu%3A%20IPU%20DMFC%20DP%20HIGH%20RESOLUTION%3A%201(0%2C1)%2C%205B(2~5)%2C%205F(6%2C7)%3CBR%20%2F%3EConsole%3A%20switching%20to%20colour%20frame%20buffer%20device%20128x48%3CBR%20%2F%3Emxc_hdmi%2020e0000.hdmi_video%3A%20Detected%20HDMI%20controller%200x13%3A0xa%3A0xa0%3A0xc1%3CBR%20%2F%3Efbcvt%3A%201920x1080%4060%3A%20CVT%20Name%20-%202.073M9%3CBR%20%2F%3Emxc_sdc_fb%20fb.24%3A%20registered%20mxc%20display%20driver%20hdmi%3CBR%20%2F%3Emxc_sdc_fb%20fb.25%3A%20NO%20mxc%20display%20driver%20found!%3CBR%20%2F%3Emxc_sdc_fb%20fb.26%3A%20registered%20mxc%20display%20driver%20ldb%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20no%20iram%20assigned%2C%20using%20external%20mem%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20no%20event%20needs%20to%20be%20remapped%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20loaded%20firmware%203.2%3CBR%20%2F%3Emxc_hdmi%2020e0000.hdmi_video%3A%20Read%20EDID%20again%3CBR%20%2F%3Eimx-sdma%2020ec000.sdma%3A%20initialized%3CBR%20%2F%3Epfuze100-regulator%201-0008%3A%20Full%20layer%3A%202%2C%20Metal%20layer%3A%201%3CBR%20%2F%3Epfuze100-regulator%201-0008%3A%20FAB%3A%200%2C%20FIN%3A%200%3CBR%20%2F%3Epfuze100-regulator%201-0008%3A%20pfuze100%20found.%3CBR%20%2F%3ESW1AB%3A%20300%20%26lt%3B--%26gt%3B%201875%20mV%20at%201375%20mV%3CBR%20%2F%3ESW1C%3A%20300%20%26lt%3B--%26gt%3B%201875%20mV%20at%201375%20mV%3CBR%20%2F%3ESW2%3A%20800%20%26lt%3B--%26gt%3B%201975%20mV%20at%201375%20mV%3CBR%20%2F%3ESW3A%3A%20400%20%26lt%3B--%26gt%3B%201975%20mV%20at%201350%20mV%3CBR%20%2F%3ESW3B%3A%20400%20%26lt%3B--%26gt%3B%201975%20mV%20at%201350%20mV%3CBR%20%2F%3ESW4%3A%20800%20%26lt%3B--%26gt%3B%201975%20mV%20at%201825%20mV%3CBR%20%2F%3ESWBST%3A%205000%20%26lt%3B--%26gt%3B%205150%20mV%20at%205000%20mV%3CBR%20%2F%3EVSNVS%3A%201000%20%26lt%3B--%26gt%3B%203000%20mV%20at%203000%20mV%3CBR%20%2F%3EVREFDDR%3A%20750%20mV%3CBR%20%2F%3EVGEN1%3A%20800%20%26lt%3B--%26gt%3B%201550%20mV%20at%201200%20mV%3CBR%20%2F%3EVGEN2%3A%20800%20%26lt%3B--%26gt%3B%201550%20mV%20at%201500%20mV%3CBR%20%2F%3EVGEN3%3A%201800%20%26lt%3B--%26gt%3B%203300%20mV%20at%201800%20mV%3CBR%20%2F%3EVGEN4%3A%201800%20%26lt%3B--%26gt%3B%203300%20mV%20at%203000%20mV%3CBR%20%2F%3EVGEN5%3A%201800%20%26lt%3B--%26gt%3B%203300%20mV%20at%202500%20mV%3CBR%20%2F%3EVGEN6%3A%201800%20%26lt%3B--%26gt%3B%203300%20mV%20at%202800%20mV%3CBR%20%2F%3ESerial%3A%20IMX%20driver%3CBR%20%2F%3E21ec000.serial%3A%20ttymxc2%20at%20MMIO%200x21ec000%20(irq%20%3D%2060%2C%20base_baud%20%3D%205000000)%20is%20a%20IMX%3CBR%20%2F%3E21f0000.serial%3A%20ttymxc3%20at%20MMIO%200x21f0000%20(irq%20%3D%2061%2C%20base_baud%20%3D%205000000)%20is%20a%20IMX%3CBR%20%2F%3Emxc_hdmi%2020e0000.hdmi_video%3A%20create%20default%20modelist%3CBR%20%2F%3Econsole%20%5Bttymxc3%5D%20enabled%3CBR%20%2F%3Eserial%3A%20Freescale%20lpuart%20driver%3CBR%20%2F%3Eimx%20sema4%20driver%20is%20registered.%3CBR%20%2F%3E%5Bdrm%5D%20Initialized%20drm%201.1.0%2020060810%3CBR%20%2F%3E%5Bdrm%5D%20Initialized%20vivante%201.0.0%2020120216%20on%20minor%200%3CBR%20%2F%3Ebrd%3A%20module%20loaded%3CBR%20%2F%3Eloop%3A%20module%20loaded%3CBR%20%2F%3Esi476x-core%201-0063%3A%20Using%20default%20platform%20data.%3CBR%20%2F%3Esi476x-core%201-0063%3A%20No%20IRQ%20number%20specified%2C%20will%20use%20polling%3CBR%20%2F%3Esi476x-core%201-0063%3A%20Error%20while%20sending%20command%200x11%3CBR%20%2F%3Esi476x-core%201-0063%3A%20The%20device%20in%20inconsistent%20power%20state%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Ctransmit-level-mV%20not%20specified%2C%20using%2000000024%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Ctransmit-boost-mdB%20not%20specified%2C%20using%2000000480%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Ctransmit-atten-16ths%20not%20specified%2C%20using%2000002000%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20fsl%2Creceive-eq-mdB%20not%20specified%2C%20using%2005000000%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20SSS%20flag%20set%2C%20parallel%20bus%20scan%20disabled%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20AHCI%200001.0300%2032%20slots%201%20ports%203%20Gbps%200x1%20impl%20platform%20mode%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20flags%3A%20ncq%20sntf%20stag%20pm%20led%20clo%20only%20pmp%20pio%20slum%20part%20ccc%20apst%3CBR%20%2F%3Escsi0%20%3A%20ahci_platform%3CBR%20%2F%3Eata1%3A%20SATA%20max%20UDMA%2F133%20mmio%20%5Bmem%200x02200000-0x02203fff%5D%20port%200x100%20irq%2071%3CBR%20%2F%3ECAN%20device%20driver%20interface%3CBR%20%2F%3E2094000.can%20supply%20xceiver%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Eflexcan%202094000.can%3A%20device%20registered%20(reg_base%3Df0238000%2C%20irq%3D143)%3CBR%20%2F%3E2188000.ethernet%20supply%20phy%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Epps%20pps0%3A%20new%20PPS%20source%20ptp0%3CBR%20%2F%3Elibphy%3A%20fec_enet_mii_bus%3A%20probed%3CBR%20%2F%3Efec%202188000.ethernet%20eth0%3A%20registered%20PHC%20device%200%3CBR%20%2F%3Eehci_hcd%3A%20USB%202.0%20'Enhanced'%20Host%20Controller%20(EHCI)%20Driver%3CBR%20%2F%3Eehci-mxc%3A%20Freescale%20On-Chip%20EHCI%20Host%20driver%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usb-storage%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usb_ehset_test%3CBR%20%2F%3E2184800.usbmisc%20supply%20vbus-wakeup%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Eimx_usb%202184000.usb%3A%20Can't%20register%20ci_hdrc%20platform%20device%2C%20err%3D-517%3CBR%20%2F%3Eplatform%202184000.usb%3A%20Driver%20imx_usb%20requests%20probe%20deferral%3CBR%20%2F%3Eimx_usb%202184200.usb%3A%20Can't%20register%20ci_hdrc%20platform%20device%2C%20err%3D-517%3CBR%20%2F%3Eplatform%202184200.usb%3A%20Driver%20imx_usb%20requests%20probe%20deferral%3CBR%20%2F%3Emousedev%3A%20PS%2F2%20mouse%20device%20common%20for%20all%20mice%3CBR%20%2F%3Eegalax_ts%201-0004%3A%20Failed%20to%20read%20firmware%20version%3CBR%20%2F%3Eegalax_ts%3A%20probe%20of%201-0004%20failed%20with%20error%20-5%3CBR%20%2F%3E2-0044%20supply%20vdd%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Einput%3A%20isl29023%20light%20sensor%20as%20%2Fdevices%2Fvirtual%2Finput%2Finput1%3CBR%20%2F%3Eisl29023%202-0044%3A%20driver%20version%201.0%20enabled%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bisl29023%5D%20using%20legacy%20suspend%20method%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bisl29023%5D%20using%20legacy%20resume%20method%3CBR%20%2F%3Esnvs_rtc%2020cc034.snvs-rtc-lp%3A%20can't%20get%20snvs-rtc%20clock%3CBR%20%2F%3Esnvs_rtc%2020cc034.snvs-rtc-lp%3A%20rtc%20core%3A%20registered%2020cc034.snvs-rtc-lp%20as%20rtc0%3CBR%20%2F%3Ei2c%20%2Fdev%20entries%20driver%3CBR%20%2F%3EIR%20NEC%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20RC5(x)%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20RC6%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20JVC%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20Sony%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20RC5%20(streamzap)%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20SANYO%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20MCE%20Keyboard%2Fmouse%20protocol%20handler%20initialized%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out.35%3A%20V4L2%20device%20registered%20as%20video16%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out.35%3A%20V4L2%20device%20registered%20as%20video17%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out.35%3A%20V4L2%20device%20registered%20as%20video18%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out.35%3A%20V4L2%20device%20registered%20as%20video19%3CBR%20%2F%3Emxc_v4l2_output%20v4l2_out.35%3A%20V4L2%20device%20registered%20as%20video20%3CBR%20%2F%3E2-000e%20supply%20vdd%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3E2-000e%20supply%20vddio%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Emag3110%202-000e%3A%20check%20mag3110%20chip%20ID%3CBR%20%2F%3Einput%3A%20mag3110%20as%20%2Fdevices%2Fvirtual%2Finput%2Finput2%3CBR%20%2F%3Emag3110%202-000e%3A%20mag3110%20is%20probed%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmag3110%5D%20using%20legacy%20suspend%20method%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmag3110%5D%20using%20legacy%20resume%20method%3CBR%20%2F%3E2-001c%20supply%20vdd%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3E2-001c%20supply%20vddio%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Eata1%3A%20SATA%20link%20down%20(SStatus%200%20SControl%20300)%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20no%20device%20found%2C%20disabling%20link.%3CBR%20%2F%3Eahci-imx%202200000.sata%3A%20pass%20ahci_imx..hotplug%3D1%20to%20enable%20hotplug%3CBR%20%2F%3Einput%3A%20mma845x%20as%20%2Fdevices%2Fvirtual%2Finput%2Finput3%3CBR%20%2F%3Eimx2-wdt%2020bc000.wdog%3A%20IMX2%2B%20Watchdog%20Timer%20enabled.%20timeout%3D60s%20(nowayout%3D0)%3CBR%20%2F%3EBluetooth%3A%20HCI%20UART%20driver%20ver%202.2%3CBR%20%2F%3EBluetooth%3A%20HCI%20H4%20protocol%20initialized%3CBR%20%2F%3EBluetooth%3A%20HCI%20BCSP%20protocol%20initialized%3CBR%20%2F%3EBluetooth%3A%20HCIATH3K%20protocol%20initialized%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20bcm203x%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20btusb%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20ath3k%3CBR%20%2F%3Esdhci%3A%20Secure%20Digital%20Host%20Controller%20Interface%20driver%3CBR%20%2F%3Esdhci%3A%20Copyright(c)%20Pierre%20Ossman%3CBR%20%2F%3Esdhci-pltfm%3A%20SDHCI%20platform%20and%20OF%20driver%20helper%3CBR%20%2F%3Emmc0%3A%20no%20vqmmc%20regulator%20found%3CBR%20%2F%3Emmc0%3A%20no%20vmmc%20regulator%20found%3CBR%20%2F%3Emmc0%3A%20SDHCI%20controller%20on%202190000.usdhc%20%5B2190000.usdhc%5D%20using%20ADMA%3CBR%20%2F%3Emmc2%3A%20no%20vqmmc%20regulator%20found%3CBR%20%2F%3Emmc2%3A%20SDHCI%20controller%20on%202198000.usdhc%20%5B2198000.usdhc%5D%20using%20ADMA%3CBR%20%2F%3EWarning%3A%20No%20contiguous%20memory%20is%20reserverd%20for%20gpu.!%3C%2FBIO-0%3E%3C%2FP%3E%3CP%3EWarning%3A%20Will%20use%20default%20value(134217728)%20for%20the%20reserved%20memory!%3C%2FP%3E%3CP%3EGalcore%20version%205.0.11.41671%3CBR%20%2F%3Emmc2%3A%20Problem%20setting%20current%20limit!%3CBR%20%2F%3Emmc2%3A%20new%20ultra%20high%20speed%20DDR50%20SDHC%20card%20at%20address%20aaaa%3CBR%20%2F%3Emmcblk2%3A%20mmc2%3Aaaaa%20SU08G%207.40%20GiB%3CBR%20%2F%3E%20mmcblk2%3A%20p1%20p2%3CBR%20%2F%3Emxc_vdoa%2021e4000.vdoa%3A%20i.MX%20Video%20Data%20Order%20Adapter(VDOA)%20driver%20probed%3CBR%20%2F%3Emxc_vpu%202040000.vpu%3A%20VPU%20initialized%3CBR%20%2F%3Ecaam%202100000.caam%3A%20Instantiated%20RNG4%20SH0%3CBR%20%2F%3Ecaam%202100000.caam%3A%20Instantiated%20RNG4%20SH1%3CBR%20%2F%3Ecaam%202100000.caam%3A%20device%20ID%20%3D%200x0a160100%20(Era%204)%3CBR%20%2F%3Ecaam%202100000.caam%3A%20job%20rings%20%3D%202%2C%20qi%20%3D%200%3CBR%20%2F%3Ecaam%20algorithms%20registered%20in%20%2Fproc%2Fcrypto%3CBR%20%2F%3Ecaam_jr%202101000.jr0%3A%20registering%20rng-caam%3CBR%20%2F%3Eplatform%20caam_sm%3A%20blkkey_ex%3A%204%20keystore%20units%20available%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20e5%2067%201a%2032%2044%2012%203e%2071%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2035%20de%2020%202e%2043%20ce%20ec%2082%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2008%2009%200a%200b%200c%200d%200e%200f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20d4%20b2%20d2%20cd%20de%2016%20e3%20b1%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2013%207c%201e%20af%204c%20a4%2040%2014%3CBR%20%2F%3Eplatform%20caam_sm%3A%20192-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2008%2009%200a%200b%200c%200d%200e%200f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2010%2011%2012%2013%2014%2015%2016%2017%3CBR%20%2F%3Eplatform%20caam_sm%3A%20192-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%203d%204f%201d%20c9%2083%2084%20b5%208a%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2050%208e%20de%2015%208e%2002%2000%208d%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2067%20cd%2031%202d%20c6%209c%2013%2060%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2035%202d%20b7%20c2%2010%2076%2036%20e9%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20clear%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2001%2002%2003%2004%200f%2006%2007%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2008%2009%200a%200b%200c%200d%200e%200f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2010%2011%2012%2013%2014%2015%2016%2017%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2018%2019%201a%201b%201c%201d%201e%201f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20c4%204e%20d7%20b6%203e%2043%202f%2066%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2036%20df%20f3%20c9%201c%20b4%20d5%2028%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%204b%2048%20f0%20e6%2004%202e%2087%202c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2030%20f4%2010%208d%20c6%2091%20bd%2077%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20196-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20unwritten%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%2064-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%209c%205f%20c6%20a9%2006%2033%20a5%20a5%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%20de%2027%2035%20d8%2015%20e5%20a1%204f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%20f7%20e1%20e8%20d0%2074%2023%20fd%20a8%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2068%2081%2069%2046%2049%2013%2017%203e%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%209c%20fc%2015%20f5%2039%200a%20c6%203d%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%20d7%2000%20d0%2049%209a%20bb%203f%20c3%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%20e4%20ef%2005%20f9%20e5%2038%20da%20f8%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20128-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2084%206e%2068%201d%2003%206b%20f8%203b%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2009%20da%207c%2060%2070%20f4%20df%2065%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2095%20b5%2048%209d%2070%20e4%2047%20ca%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%20e9%201f%205a%20e5%20f0%2043%2026%20a7%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%20a9%2090%2065%2092%2042%20ab%20fd%2046%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%20fb%203d%20e9%2013%205c%2024%20f1%20e9%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%208b%20ca%20b4%20c1%2010%2023%209d%2066%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2085%2068%2014%2030%2047%20ce%2043%20c0%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20192-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%2057%20a6%2097%203f%2043%2096%20cf%2087%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%201f%2072%2089%20a6%20a0%20ad%200e%2048%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%207a%20ad%205c%20e4%206e%2037%2004%203d%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%20e4%2095%20c9%2009%20aa%20c7%2012%20bb%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%2056%203c%20d7%20dc%2003%206b%202f%20e1%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%2016%20a8%20c2%20c3%2078%207a%2095%20ce%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%2005%2075%20fc%20d4%20a6%2084%20be%20d3%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%20c7%20df%2001%204f%20bc%2017%20fd%209d%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2098%2025%2068%2026%20f6%209b%205c%2099%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20256-bit%20black%20key%20in%20blob%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20fe%20a8%2022%20dd%2034%20d2%2000%203e%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%207e%20e8%2032%2093%2059%20a4%2096%2072%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2047%209a%20dd%203e%20fe%202a%2083%2027%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2092%2005%20b2%20c8%20cc%203e%20fe%2064%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0032%5D%209b%206b%202d%2047%20bc%2058%20ca%201c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0040%5D%208d%20c2%20b4%2094%2081%20b1%2080%20bf%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0048%5D%200e%2059%2038%2050%2047%2061%2009%20f4%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0056%5D%2022%20c2%20fa%2092%2056%2092%20df%202e%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0064%5D%2062%2084%2043%2056%2069%203a%2085%20f1%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0072%5D%20c4%20f4%20f7%2054%2046%204c%200b%20ca%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0080%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0088%5D%2000%2000%2000%2000%2000%2000%2000%2000%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%2064-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20c8%20bd%2051%2012%200f%208c%203c%209b%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2094%20ac%2086%2067%2055%2065%2075%2024%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%20128-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20d4%20b2%20d2%20cd%20de%2016%20e3%20b1%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2013%207c%201e%20af%204c%20a4%2040%2014%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%20192-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%203d%204f%201d%20c9%2083%2084%20b5%208a%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2050%208e%20de%2015%208e%2002%2000%208d%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%2047%206b%20e3%20e8%2062%206f%2089%208f%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%207c%20dc%206f%20eb%20cc%2073%2030%201c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20restored%20256-bit%20black%20key%3A%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0000%5D%20c4%204e%20d7%20b6%203e%2043%202f%2066%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0008%5D%2036%20df%20f3%20c9%201c%20b4%20d5%2028%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0016%5D%204b%2048%20f0%20e6%2004%202e%2087%202c%3CBR%20%2F%3Eplatform%20caam_sm%3A%20%5B0024%5D%2030%20f4%2010%208d%20c6%2091%20bd%2077%3CBR%20%2F%3Esnvs-secvio%2020cc000.caam-snvs%3A%20can't%20get%20snvs%20clock%3CBR%20%2F%3Esnvs-secvio%2020cc000.caam-snvs%3A%20violation%20handlers%20armed%20-%20non-secure%20state%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usbhid%3CBR%20%2F%3Eusbhid%3A%20USB%20HID%20core%20driver%3CBR%20%2F%3Ecs42xx8%201-0048%3A%20found%20device%2C%20revision%204%3CBR%20%2F%3Efsl-asrc%202034000.asrc%3A%20driver%20registered%3CBR%20%2F%3Esnd-soc-dummy%20snd-soc-dummy%3A%20ASoC%3A%20Failed%20to%20create%20platform%20debugfs%20directory%3CBR%20%2F%3Eimx-cs42888%20sound-cs42888.27%3A%20cs42888%20%26lt%3B-%26gt%3B%202024000.esai%20mapping%20ok%3CBR%20%2F%3Eimx-cs42888%20sound-cs42888.27%3A%20snd-soc-dummy-dai%20%26lt%3B-%26gt%3B%202034000.asrc%20mapping%20ok%3CBR%20%2F%3Eimx-cs42888%20sound-cs42888.27%3A%20cs42888%20%26lt%3B-%26gt%3B%202024000.esai%20mapping%20ok%3CBR%20%2F%3Eimx-spdif%20sound-spdif.20%3A%20snd-soc-dummy-dai%20%26lt%3B-%26gt%3B%202004000.spdif%20mapping%20ok%3CBR%20%2F%3Eimx-audio-hdmi%20sound-hdmi.21%3A%20hdmi-hifi%20%26lt%3B-%26gt%3B%20hdmi_audio.3%20mapping%20ok%3CBR%20%2F%3Eimx-tuner-si476x%20sound-fm.33%3A%20failed%20to%20find%20FM%20platform%20device%3CBR%20%2F%3Eimx-tuner-si476x%3A%20probe%20of%20sound-fm.33%20failed%20with%20error%20-22%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2026%3CBR%20%2F%3ETCP%3A%20cubic%20registered%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2010%3CBR%20%2F%3Esit%3A%20IPv6%20over%20IPv4%20tunneling%20driver%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2017%3CBR%20%2F%3Ecan%3A%20controller%20area%20network%20core%20(rev%2020120528%20abi%209)%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2029%3CBR%20%2F%3Ecan%3A%20raw%20protocol%20(rev%2020120528)%3CBR%20%2F%3Ecan%3A%20broadcast%20manager%20protocol%20(rev%2020120528%20t)%3CBR%20%2F%3Ecan%3A%20netlink%20gateway%20(rev%2020130117)%20max_hops%3D1%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20TTY%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20ver%201.11%3CBR%20%2F%3EBluetooth%3A%20BNEP%20(Ethernet%20Emulation)%20ver%201.3%3CBR%20%2F%3EBluetooth%3A%20BNEP%20filters%3A%20protocol%20multicast%3CBR%20%2F%3EBluetooth%3A%20BNEP%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20HIDP%20(Human%20Interface%20Emulation)%20ver%201.2%3CBR%20%2F%3EBluetooth%3A%20HIDP%20socket%20layer%20initialized%3CBR%20%2F%3E8021q%3A%20802.1Q%20VLAN%20Support%20v1.8%3CBR%20%2F%3EKey%20type%20dns_resolver%20registered%3CBR%20%2F%3EVGEN2%3A%20disabling%3CBR%20%2F%3ESWBST%3A%20disabling%3CBR%20%2F%3ESW4%3A%20disabling%3CBR%20%2F%3Eregulator-dummy%3A%20disabling%3CBR%20%2F%3Eimx%20mcc%20test%20is%20registered.%3CBR%20%2F%3Eusb_h1_vbus%3A%205000%20mV%3CBR%20%2F%3Eusb_otg_vbus%3A%205000%20mV%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.0%3A%20EHCI%20Host%20Controller%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.0%3A%20new%20USB%20bus%20registered%2C%20assigned%20bus%20number%201%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.0%3A%20USB%202.0%20started%2C%20EHCI%201.00%3CBR%20%2F%3Ehub%201-0%3A1.0%3A%20USB%20hub%20found%3CBR%20%2F%3Ehub%201-0%3A1.0%3A%201%20port%20detected%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.1%3A%20doesn't%20support%20gadget%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.1%3A%20EHCI%20Host%20Controller%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.1%3A%20new%20USB%20bus%20registered%2C%20assigned%20bus%20number%202%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.1%3A%20USB%202.0%20started%2C%20EHCI%201.00%3CBR%20%2F%3Ehub%202-0%3A1.0%3A%20USB%20hub%20found%3CBR%20%2F%3Ehub%202-0%3A1.0%3A%201%20port%20detected%3CBR%20%2F%3Einput%3A%20gpio-keys.18%20as%20%2Fdevices%2Fsoc0%2Fgpio-keys.18%2Finput%2Finput4%3CBR%20%2F%3Esnvs_rtc%2020cc034.snvs-rtc-lp%3A%20setting%20system%20clock%20to%201970-01-01%2000%3A00%3A02%20UTC%20(2)%3CBR%20%2F%3EALSA%20device%20list%3A%3CBR%20%2F%3E%20%230%3A%20cs42888-audio%3CBR%20%2F%3E%20%231%3A%20imx-spdif%3CBR%20%2F%3E%20%232%3A%20imx-hdmi-soc%3CBR%20%2F%3Eusb%201-1%3A%20new%20high-speed%20USB%20device%20number%202%20using%20ci_hdrc%3CBR%20%2F%3Ehub%201-1%3A1.0%3A%20USB%20hub%20found%3CBR%20%2F%3Ehub%201-1%3A1.0%3A%204%20ports%20detected%3CBR%20%2F%3Ekjournald%20starting.%20Commit%20interval%205%20seconds%3CBR%20%2F%3EEXT3-fs%20(mmcblk2p2)%3A%20using%20internal%20journal%3CBR%20%2F%3EEXT3-fs%20(mmcblk2p2)%3A%20recovery%20complete%3CBR%20%2F%3EEXT3-fs%20(mmcblk2p2)%3A%20mounted%20filesystem%20with%20ordered%20data%20mode%3CBR%20%2F%3EVFS%3A%20Mounted%20root%20(ext3%20filesystem)%20on%20device%20179%3A2.%3CBR%20%2F%3Edevtmpfs%3A%20mounted%3CBR%20%2F%3EFreeing%20unused%20kernel%20memory%3A%20392K%20(809d9000%20-%2080a3b000)%3CBR%20%2F%3Eusb%201-1.2%3A%20new%20low-speed%20USB%20device%20number%203%20using%20ci_hdrc%3CBR%20%2F%3EMount%20failed%20for%20selinuxfs%20on%20%2Fsys%2Ffs%2Fselinux%3A%20No%20such%20file%20or%20directory%3CBR%20%2F%3Erandom%3A%20init%20urandom%20read%20with%2068%20bits%20of%20entropy%20available%3CBR%20%2F%3Einput%3A%20DELL%20DELL%20USB%20Laser%20Mouse%20as%20%2Fdevices%2Fsoc0%2Fsoc.0%2F2100000.aips-bus%2F2184000.usb%2Fci_hdrc.0%2Fusb1%2F1-1%2F1-1.2%2F1-1.2%3A1.0%2F0003%3A046D%3AC063.0001%2Finput%2Finput5%3CBR%20%2F%3Ehid-generic%200003%3A046D%3AC063.0001%3A%20input%3A%20USB%20HID%20v1.10%20Mouse%20%5BDELL%20DELL%20USB%20Laser%20Mouse%5D%20on%20usb-ci_hdrc.0-1.2%2Finput0%3CBR%20%2F%3Eusb%201-1.3%3A%20new%20low-speed%20USB%20device%20number%204%20using%20ci_hdrc%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20(177)%20terminated%20with%20status%201%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20ended%2C%20respawning%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20(187)%20terminated%20with%20status%201%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20ended%2C%20respawning%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20(190)%20terminated%20with%20status%201%3CBR%20%2F%3Einit%3A%20plymouth-upstart-bridge%20main%20process%20ended%2C%20respawning%3CBR%20%2F%3Einput%3A%20Dell%20Dell%20QuietKey%20Keyboard%20as%20%2Fdevices%2Fsoc0%2Fsoc.0%2F2100000.aips-bus%2F2184000.usb%2Fci_hdrc.0%2Fusb1%2F1-1%2F1-1.3%2F1-1.3%3A1.0%2F0003%3A413C%3A2106.0002%2Finput%2Finput6%3CBR%20%2F%3Ehid-generic%200003%3A413C%3A2106.0002%3A%20input%3A%20USB%20HID%20v1.10%20Keyboard%20%5BDell%20Dell%20QuietKey%20Keyboard%5D%20on%20usb-ci_hdrc.0-1.3%2Finput0%3CBR%20%2F%3Einit%3A%20ureadahead%20main%20process%20(180)%20terminated%20with%20status%205%3CBR%20%2F%3Einit%3A%20mounted-proc%20main%20process%20(204)%20terminated%20with%20status%201%3CBR%20%2F%3EDBG%20sensor%20data%20is%20at%207f010190%3CBR%20%2F%3E%20*%20Starting%20Mount%20filesystems%20on%20boot%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Send%20an%20event%20to%20indicate%20plymouth%20is%20up%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Signal%20sysvinit%20that%20the%20rootfs%20is%20mounted%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Clean%20%2Ftmp%20directory%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Populate%20and%20link%20to%20%2Frun%20filesystem%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Populate%20and%20link%20to%20%2Frun%20filesystem%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Clean%20%2Ftmp%20directory%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Track%20if%20upstart%20is%20running%20in%20a%20container%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Initialize%20or%20finalize%20resolvconf%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Signal%20sysvinit%20that%20virtual%20filesystems%20are%20mounted%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20ERROR%3A%20v4l2%20capture%3A%20slave%20not%20found!%3CBR%20%2F%3EStarting%20Signal%20sysvinit%20that%20virtual%20filesystems%20are%20mounted%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Bridge%20udev%20events%20into%20upstart%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Signal%20sysvinit%20that%20local%20filesystems%20are%20mounted%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Signal%20sysvinit%20that%20remote%20filesystems%20are%20mounted%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Mount%20filesystems%20on%20boot%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20device%20node%20and%20kernel%20event%20manager%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20flush%20early%20job%20output%20to%20logs%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20load%20modules%20from%20%2Fetc%2Fmodules%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20cold%20plug%20devices%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20log%20initial%20device%20creation%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20flush%20early%20job%20output%20to%20logs%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20load%20modules%20from%20%2Fetc%2Fmodules%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20set%20console%20font%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20system%20logging%20daemon%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20set%20console%20font%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20userspace%20bootsplash%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20userspace%20bootsplash%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Send%20an%20event%20to%20indicate%20plymouth%20is%20up%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Send%20an%20event%20to%20indicate%20plymouth%20is%20up%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20security%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20security%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20security%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20security%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Mount%20network%20filesystems%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Failsafe%20Boot%20Delay%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Mount%20network%20filesystems%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Bridge%20socket%20events%20into%20upstart%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Bridge%20file%20events%20into%20upstart%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20Mount%20network%20filesystems%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Failsafe%20Boot%20Delay%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20System%20V%20initialisation%20compatibility%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20System%20V%20initialisation%20compatibility%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20System%20V%20runlevel%20compatibility%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20save%20kernel%20messages%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20configure%20network%20device%20security%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Starting%20regular%20background%20program%20processing%20daemon%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20System%20V%20runlevel%20compatibility%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20Mount%20network%20filesystems%20%5B%20OK%20%5D%3CBR%20%2F%3E%20*%20Stopping%20save%20kernel%20messages%20%5B%20OK%20%5D%3C%2FP%3E%3C%2FBLOCKQUOTE%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108509%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108509%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHI%20Erik%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20do%20not%20have%20a%20i.mx%206%20QuadPlus%20board%20to%20try.%3C%2FP%3E%3CP%3EIf%20you%20tried%20and%20share%20me%20the%20results.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks!%3C%2FP%3E%3CP%3EWenming%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108508%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108508%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHave%20you%20chance%20to%20test%20it%20for%26nbsp%3Bi.MX%206QuadPlus%20SABRE-AI%20Board%3F%3C%2FP%3E%3CP%3ECan%20be%20used%20a%20newer%20BSP%20rel_imx_4.1.15_1.1.0_ga%3CSPAN%3E%3F%3C%2FSPAN%3E%3CSPAN%20style%3D%22color%3A%20%23000000%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-size%3A%2012px%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108507%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108507%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20%2C%3C%2FP%3E%3CP%3EI%20build%20one%20following%20the%20guidance%20for%20my%20im53qsb%20reference%20board.%20But%20I%20got%20kernel%20panic%20at%20imx5_pm_init%2C%20I%20am%20using%20the%20imx_v7_defconfig%2C%20is%20anybody%20else%20has%20this%20issue%20or%20has%20fix%20for%20this%20issue%20or%20can%20I%20remove%20the%20pm%20configuration.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EU-Boot%202015.04%20(Oct%2004%202016%20-%2012%3A17%3A39)%3C%2FP%3E%3CP%3EBoard%3A%20MX53%20LOCO%3CBR%20%2F%3EI2C%3A%20ready%3CBR%20%2F%3EDRAM%3A%201%20GiB%3CBR%20%2F%3EMMC%3A%20FSL_SDHC%3A%200%2C%20FSL_SDHC%3A%201%3CBR%20%2F%3E***%20Warning%20-%20bad%20CRC%2C%20using%20default%20environment%3C%2FP%3E%3CP%3EIn%3A%20serial%3CBR%20%2F%3EOut%3A%20serial%3CBR%20%2F%3EErr%3A%20serial%3CBR%20%2F%3ENet%3A%20FEC%3CBR%20%2F%3EHit%20any%20key%20to%20stop%20autoboot%3A%200%3CBR%20%2F%3Eswitch%20to%20partitions%20%230%2C%20OK%3CBR%20%2F%3Emmc0%20is%20current%20device%3CBR%20%2F%3Ereading%20boot.scr%3CBR%20%2F%3E**%20Unable%20to%20read%20file%20boot.scr%20**%3CBR%20%2F%3Ereading%20zImage%3CBR%20%2F%3E5997120%20bytes%20read%20in%20346%20ms%20(16.5%20MiB%2Fs)%3CBR%20%2F%3EBooting%20from%20mmc%20...%3CBR%20%2F%3Ereading%20imx53-qsrb.dtb%3CBR%20%2F%3E24491%20bytes%20read%20in%2019%20ms%20(1.2%20MiB%2Fs)%3CBR%20%2F%3EKernel%20image%20%40%200x72000000%20%5B%200x000000%20-%200x5b8240%20%5D%3CBR%20%2F%3E%23%23%20Flattened%20Device%20Tree%20blob%20at%2071000000%3CBR%20%2F%3E%20Booting%20using%20the%20fdt%20blob%20at%200x71000000%3CBR%20%2F%3E%20Loading%20Device%20Tree%20to%208f552000%2C%20end%208f55afaa%20...%20OK%3C%2FP%3E%3CP%3EStarting%20kernel%20...%3C%2FP%3E%3CP%3EBooting%20Linux%20on%20physical%20CPU%200x0%3CBR%20%2F%3ELinux%20version%203.14.38%20(lucid%40ubuntu)%20(gcc%20version%204.8.5%20(Linaro%20GCC%204.8-2015.06)%20)%20%231%20SMP%20PREEMPT%20Wed%20Oct%205%2006%3A56%3A31%20PDT%202016%3CBR%20%2F%3ECPU%3A%20ARMv7%20Processor%20%5B412fc085%5D%20revision%205%20(ARMv7)%2C%20cr%3D10c53c7d%3CBR%20%2F%3ECPU%3A%20PIPT%20%2F%20VIPT%20nonaliasing%20data%20cache%2C%20VIPT%20aliasing%20instruction%20cache%3CBR%20%2F%3EMachine%20model%3A%20Freescale%20i.MX53%20Quick%20Start%20Board%3CBR%20%2F%3Ecma%3A%20CMA%3A%20reserved%20320%20MiB%20at%20bc000000%3CBR%20%2F%3EMemory%20policy%3A%20Data%20cache%20writeback%3CBR%20%2F%3ECPU%3A%20All%20CPU(s)%20started%20in%20SVC%20mode.%3CBR%20%2F%3EPERCPU%3A%20Embedded%208%20pages%2Fcpu%20%40cb33f000%20s8320%20r8192%20d16256%20u32768%3CBR%20%2F%3EBuilt%201%20zonelists%20in%20Zone%20order%2C%20mobility%20grouping%20on.%20Total%20pages%3A%20259072%3CBR%20%2F%3EKernel%20command%20line%3A%20console%3Dttymxc0%2C115200%20root%3D%2Fdev%2Fmmcblk0p2%20rw%20rootwait%3CBR%20%2F%3EPID%20hash%20table%20entries%3A%204096%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3EDentry%20cache%20hash%20table%20entries%3A%20131072%20(order%3A%207%2C%20524288%20bytes)%3CBR%20%2F%3EInode-cache%20hash%20table%20entries%3A%2065536%20(order%3A%206%2C%20262144%20bytes)%3CBR%20%2F%3EMemory%3A%20699820K%2F1048576K%20available%20(7423K%20kernel%20code%2C%20456K%20rwdata%2C%202584K%20rodata%2C%20384K%20init%2C%20432K%20bss%2C%20348756K%20reserved%2C%200K%20highmem)%3CBR%20%2F%3EVirtual%20kernel%20memory%20layout%3A%3CBR%20%2F%3E%20vector%20%3A%200xffff0000%20-%200xffff1000%20(%204%20kB)%3CBR%20%2F%3E%20fixmap%20%3A%200xfff00000%20-%200xfffe0000%20(%20896%20kB)%3CBR%20%2F%3E%20vmalloc%20%3A%200xe0800000%20-%200xff000000%20(%20488%20MB)%3CBR%20%2F%3E%20lowmem%20%3A%200x80000000%20-%200xe0000000%20(1536%20MB)%3CBR%20%2F%3E%20pkmap%20%3A%200x7fe00000%20-%200x80000000%20(%202%20MB)%3CBR%20%2F%3E%20modules%20%3A%200x7f000000%20-%200x7fe00000%20(%2014%20MB)%3CBR%20%2F%3E%20.text%20%3A%200x80008000%20-%200x809ce000%20(10008%20kB)%3CBR%20%2F%3E%20.init%20%3A%200x809ce000%20-%200x80a2e080%20(%20385%20kB)%3CBR%20%2F%3E%20.data%20%3A%200x80a30000%20-%200x80aa20c0%20(%20457%20kB)%3CBR%20%2F%3E%20.bss%20%3A%200x80aa20cc%20-%200x80b0e25c%20(%20433%20kB)%3CBR%20%2F%3ESLUB%3A%20HWalign%3D64%2C%20Order%3D0-3%2C%20MinObjects%3D0%2C%20CPUs%3D1%2C%20Nodes%3D1%3CBR%20%2F%3EPreemptible%20hierarchical%20RCU%20implementation.%3CBR%20%2F%3E%20RCU%20restricting%20CPUs%20from%20NR_CPUS%3D4%20to%20nr_cpu_ids%3D1.%3CBR%20%2F%3ERCU%3A%20Adjusting%20geometry%20for%20rcu_fanout_leaf%3D16%2C%20nr_cpu_ids%3D1%3CBR%20%2F%3ENR_IRQS%3A16%20nr_irqs%3A16%2016%3CBR%20%2F%3ETrustZone%20Interrupt%20Controller%20(TZIC)%20initialized%3CBR%20%2F%3ECPU%20identified%20as%20i.MX53%2C%20silicon%20rev%202.1%3CBR%20%2F%3ESwitching%20to%20timer-based%20delay%20loop%3CBR%20%2F%3Esched_clock%3A%2032%20bits%20at%2033MHz%2C%20resolution%2030ns%2C%20wraps%20every%20128849019873ns%3CBR%20%2F%3Eclocksource_of_init%3A%20no%20matching%20clocksources%20found%3CBR%20%2F%3EConsole%3A%20colour%20dummy%20device%2080x30%3CBR%20%2F%3ECalibrating%20delay%20loop%20(skipped)%2C%20value%20calculated%20using%20timer%20frequency..%2066.66%20BogoMIPS%20(lpj%3D333333)%3CBR%20%2F%3Epid_max%3A%20default%3A%2032768%20minimum%3A%20301%3CBR%20%2F%3EMount-cache%20hash%20table%20entries%3A%202048%20(order%3A%201%2C%208192%20bytes)%3CBR%20%2F%3EMountpoint-cache%20hash%20table%20entries%3A%202048%20(order%3A%201%2C%208192%20bytes)%3CBR%20%2F%3ECPU%3A%20Testing%20write%20buffer%20coherency%3A%20ok%3CBR%20%2F%3ECPU0%3A%20thread%20-1%2C%20cpu%200%2C%20socket%20-1%2C%20mpidr%200%3CBR%20%2F%3ESetting%20up%20static%20identity%20map%20for%200x70710420%20-%200x70710478%3CBR%20%2F%3EBrought%20up%201%20CPUs%3CBR%20%2F%3ESMP%3A%20Total%20of%201%20processors%20activated%20(66.66%20BogoMIPS).%3CBR%20%2F%3ECPU%3A%20All%20CPU(s)%20started%20in%20SVC%20mode.%3CBR%20%2F%3Edevtmpfs%3A%20initialized%3CBR%20%2F%3EVFP%20support%20v0.3%3A%20implementor%2041%20architecture%203%20part%2030%20variant%20c%20rev%202%3CBR%20%2F%3Epinctrl%20core%3A%20initialized%20pinctrl%20subsystem%3CBR%20%2F%3Eregulator-dummy%3A%20no%20parameters%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2016%3CBR%20%2F%3EDMA%3A%20preallocated%20256%20KiB%20pool%20for%20atomic%20coherent%20allocations%3CBR%20%2F%3Ecpuidle%3A%20using%20governor%20ladder%3CBR%20%2F%3Ecpuidle%3A%20using%20governor%20menu%3CBR%20%2F%3EUse%20WDOG1%20as%20reset%20source%3CBR%20%2F%3Esyscon%2053fa8000.iomuxc-gpr%3A%20regmap%20%5Bmem%200x53fa8000-0x53fa800b%5D%20registered%3CBR%20%2F%3Ehw-breakpoint%3A%20debug%20architecture%200x4%20unsupported.%3CBR%20%2F%3Eimx53-pinctrl%2053fa8000.iomuxc%3A%20initialized%20IMX%20pinctrl%20driver%3CBR%20%2F%3Ebio%3A%20create%20slab%20%3CBIO-0%3E%20at%200%3CBR%20%2F%3E3P2V%3A%203200%20mV%3CBR%20%2F%3Eusb_vbus%3A%205000%20mV%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmax17135%5D%20using%20legacy%20suspend%20method%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmax17135%5D%20using%20legacy%20resume%20method%3CBR%20%2F%3ESCSI%20subsystem%20initialized%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usbfs%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20hub%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20device%20driver%20usb%3CBR%20%2F%3Eusbphy.1%20supply%20vcc%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Eusbphy.2%20supply%20vcc%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Ei2c%20i2c-1%3A%20IMX%20I2C%20adapter%20registered%3CBR%20%2F%3Eda9052%3A%20probe%20of%200-0048%20failed%20with%20error%20-5%3CBR%20%2F%3Ei2c%20i2c-0%3A%20IMX%20I2C%20adapter%20registered%3CBR%20%2F%3ELinux%20video%20capture%20interface%3A%20v2.00%3CBR%20%2F%3Epps_core%3A%20LinuxPPS%20API%20ver.%201%20registered%3CBR%20%2F%3E%3CSPAN%3Epps_core%3A%20Software%20ver.%205.3.6%20-%20Copyright%202005-2007%20Rodolfo%20Giometti%20%26lt%3B%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-email-small%22%20href%3D%22mailto%3Agiometti%40linux.it%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Egiometti%40linux.it%3C%2FA%3E%3CSPAN%3E%26gt%3B%3C%2FSPAN%3E%3CBR%20%2F%3EPTP%20clock%20support%20registered%3CBR%20%2F%3Eimx-ipuv3%3A%20probe%20of%2018000000.ipu%20failed%20with%20error%20-22%3CBR%20%2F%3EMIPI%20CSI2%20driver%20module%20loaded%3CBR%20%2F%3EAdvanced%20Linux%20Sound%20Architecture%20Driver%20Initialized.%3CBR%20%2F%3EBluetooth%3A%20Core%20ver%202.18%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2031%3CBR%20%2F%3EBluetooth%3A%20HCI%20device%20and%20connection%20manager%20initialized%3CBR%20%2F%3EBluetooth%3A%20HCI%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20L2CAP%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20SCO%20socket%20layer%20initialized%3CBR%20%2F%3ESwitched%20to%20clocksource%20mxc_timer1%3CBR%20%2F%3Ecfg80211%3A%20Calling%20CRDA%20to%20update%20world%20regulatory%20domain%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%202%3CBR%20%2F%3ETCP%20established%20hash%20table%20entries%3A%208192%20(order%3A%203%2C%2032768%20bytes)%3CBR%20%2F%3ETCP%20bind%20hash%20table%20entries%3A%208192%20(order%3A%204%2C%2065536%20bytes)%3CBR%20%2F%3ETCP%3A%20Hash%20tables%20configured%20(established%208192%20bind%208192)%3CBR%20%2F%3ETCP%3A%20reno%20registered%3CBR%20%2F%3EUDP%20hash%20table%20entries%3A%20512%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3EUDP-Lite%20hash%20table%20entries%3A%20512%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%201%3CBR%20%2F%3ERPC%3A%20Registered%20named%20UNIX%20socket%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20udp%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20tcp%20transport%20module.%3CBR%20%2F%3ERPC%3A%20Registered%20tcp%20NFSv4.1%20backchannel%20transport%20module.%3CBR%20%2F%3Eimx%20rpmsg%20driver%20is%20registered.%3CBR%20%2F%3EBus%20freq%20driver%20module%20loaded%3CBR%20%2F%3Efutex%20hash%20table%20entries%3A%20256%20(order%3A%202%2C%2016384%20bytes)%3CBR%20%2F%3EVFS%3A%20Disk%20quotas%20dquot_6.5.2%3CBR%20%2F%3EDquot-cache%20hash%20table%20entries%3A%201024%20(order%200%2C%204096%20bytes)%3CBR%20%2F%3ENFS%3A%20Registering%20the%20id_resolver%20key%20type%3CBR%20%2F%3EKey%20type%20id_resolver%20registered%3CBR%20%2F%3EKey%20type%20id_legacy%20registered%3CBR%20%2F%3Ejffs2%3A%20version%202.2.%20(NAND)%20%C2%A9%202001-2006%20Red%20Hat%2C%20Inc.%3CBR%20%2F%3Efuse%20init%20(API%20version%207.22)%3CBR%20%2F%3Emsgmni%20has%20been%20set%20to%202006%3CBR%20%2F%3Eio%20scheduler%20noop%20registered%3CBR%20%2F%3Eio%20scheduler%20deadline%20registered%3CBR%20%2F%3Eio%20scheduler%20cfq%20registered%20(default)%3CBR%20%2F%3EMIPI%20DSI%20driver%20module%20loaded%3CBR%20%2F%3Eimx-sdma%2063fb0000.sdma%3A%20no%20iram%20assigned%2C%20using%20external%20mem%3CBR%20%2F%3Eimx-sdma%2063fb0000.sdma%3A%20no%20event%20needs%20to%20be%20remapped%3CBR%20%2F%3Eimx-sdma%2063fb0000.sdma%3A%20Direct%20firmware%20load%20failed%20with%20error%20-2%3CBR%20%2F%3Eimx-sdma%2063fb0000.sdma%3A%20Falling%20back%20to%20user%20helper%3CBR%20%2F%3Eimx-sdma%2063fb0000.sdma%3A%20initialized%3CBR%20%2F%3ESerial%3A%20IMX%20driver%3CBR%20%2F%3E53fbc000.serial%3A%20ttymxc0%20at%20MMIO%200x53fbc000%20(irq%20%3D%2047%2C%20base_baud%20%3D%204166666)%20is%20a%20IMX%3CBR%20%2F%3Econsole%20%5Bttymxc0%5D%20enabled%3CBR%20%2F%3Eserial%3A%20Freescale%20lpuart%20driver%3CBR%20%2F%3Eimx%20sema4%20driver%20is%20registered.%3CBR%20%2F%3E%5Bdrm%5D%20Initialized%20drm%201.1.0%2020060810%3CBR%20%2F%3E%5Bdrm%5D%20Initialized%20vivante%201.0.0%2020120216%20on%20minor%200%3CBR%20%2F%3Ebrd%3A%20module%20loaded%3CBR%20%2F%3Eloop%3A%20module%20loaded%3CBR%20%2F%3ECAN%20device%20driver%20interface%3CBR%20%2F%3E63fec000.ethernet%20supply%20phy%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Elibphy%3A%20fec_enet_mii_bus%3A%20probed%3CBR%20%2F%3Eehci_hcd%3A%20USB%202.0%20'Enhanced'%20Host%20Controller%20(EHCI)%20Driver%3CBR%20%2F%3Eehci-mxc%3A%20Freescale%20On-Chip%20EHCI%20Host%20driver%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usb-storage%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usb_ehset_test%3CBR%20%2F%3E53f80800.usbmisc%20supply%20vbus-wakeup%20not%20found%2C%20using%20dummy%20regulator%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.1%3A%20doesn't%20support%20gadget%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.1%3A%20EHCI%20Host%20Controller%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.1%3A%20new%20USB%20bus%20registered%2C%20assigned%20bus%20number%201%3CBR%20%2F%3Eci_hdrc%20ci_hdrc.1%3A%20USB%202.0%20started%2C%20EHCI%201.00%3CBR%20%2F%3Ehub%201-0%3A1.0%3A%20USB%20hub%20found%3CBR%20%2F%3Ehub%201-0%3A1.0%3A%201%20port%20detected%3CBR%20%2F%3Emousedev%3A%20PS%2F2%20mouse%20device%20common%20for%20all%20mice%3CBR%20%2F%3Einput%3A%20mma8450%20as%20%2Fdevices%2Fvirtual%2Finput%2Finput0%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bisl29023%5D%20using%20legacy%20suspend%20method%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bisl29023%5D%20using%20legacy%20resume%20method%3CBR%20%2F%3Ei2c%20%2Fdev%20entries%20driver%3CBR%20%2F%3EIR%20NEC%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20RC5(x)%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20RC6%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20JVC%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20Sony%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20RC5%20(streamzap)%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20SANYO%20protocol%20handler%20initialized%3CBR%20%2F%3EIR%20MCE%20Keyboard%2Fmouse%20protocol%20handler%20initialized%3CBR%20%2F%3Ecoda%2063ff4000.vpu%3A%20Direct%20firmware%20load%20failed%20with%20error%20-2%3CBR%20%2F%3Ecoda%2063ff4000.vpu%3A%20Falling%20back%20to%20user%20helper%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmag3110%5D%20using%20legacy%20suspend%20method%3CBR%20%2F%3Ei2c-core%3A%20driver%20%5Bmag3110%5D%20using%20legacy%20resume%20method%3CBR%20%2F%3Eimx2-wdt%2053f98000.wdog%3A%20IMX2%2B%20Watchdog%20Timer%20enabled.%20timeout%3D60s%20(nowayout%3D0)%3CBR%20%2F%3EBluetooth%3A%20HCI%20UART%20driver%20ver%202.2%3CBR%20%2F%3EBluetooth%3A%20HCI%20H4%20protocol%20initialized%3CBR%20%2F%3EBluetooth%3A%20HCI%20BCSP%20protocol%20initialized%3CBR%20%2F%3EBluetooth%3A%20HCIATH3K%20protocol%20initialized%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20bcm203x%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20btusb%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20ath3k%3CBR%20%2F%3Esdhci%3A%20Secure%20Digital%20Host%20Controller%20Interface%20driver%3CBR%20%2F%3Esdhci%3A%20Copyright(c)%20Pierre%20Ossman%3CBR%20%2F%3Esdhci-pltfm%3A%20SDHCI%20platform%20and%20OF%20driver%20helper%3CBR%20%2F%3Emmc0%3A%20no%20vqmmc%20regulator%20found%3CBR%20%2F%3Emmc0%3A%20no%20vmmc%20regulator%20found%3CBR%20%2F%3Emmc0%3A%20SDHCI%20controller%20on%2050004000.esdhc%20%5B50004000.esdhc%5D%20using%20ADMA%3CBR%20%2F%3Emmc1%3A%20no%20vqmmc%20regulator%20found%3CBR%20%2F%3Emmc1%3A%20no%20vmmc%20regulator%20found%3CBR%20%2F%3Emmc0%3A%20host%20does%20not%20support%20reading%20read-only%20switch.%20assuming%20write-enable.%3CBR%20%2F%3Emmc1%3A%20SDHCI%20controller%20on%2050020000.esdhc%20%5B50020000.esdhc%5D%20using%20ADMA%3CBR%20%2F%3Emmc0%3A%20new%20high%20speed%20SDHC%20card%20at%20address%200007%3CBR%20%2F%3EJob%20Ring%20Device%20allocation%20for%20transform%20failed%3CBR%20%2F%3Emmcblk0%3A%20mmc0%3A0007%20SD16G%2014.5%20GiB%3CBR%20%2F%3Eusbcore%3A%20registered%20new%20interface%20driver%20usbhid%3CBR%20%2F%3Eusbhid%3A%20USB%20HID%20core%20driver%3CBR%20%2F%3E%20mmcblk0%3A%20p1%20p2%3CBR%20%2F%3Esgtl5000%201-000a%3A%20sgtl5000%20revision%200x11%3CBR%20%2F%3Eimx-sgtl5000%20sound.8%3A%20phandle%20missing%20or%20invalid%3CBR%20%2F%3Eimx-sgtl5000%3A%20probe%20of%20sound.8%20failed%20with%20error%20-22%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2026%3CBR%20%2F%3ETCP%3A%20cubic%20registered%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2010%3CBR%20%2F%3Esit%3A%20IPv6%20over%20IPv4%20tunneling%20driver%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2017%3CBR%20%2F%3Ecan%3A%20controller%20area%20network%20core%20(rev%2020120528%20abi%209)%3CBR%20%2F%3ENET%3A%20Registered%20protocol%20family%2029%3CBR%20%2F%3Ecan%3A%20raw%20protocol%20(rev%2020120528)%3CBR%20%2F%3Ecan%3A%20broadcast%20manager%20protocol%20(rev%2020120528%20t)%3CBR%20%2F%3Ecan%3A%20netlink%20gateway%20(rev%2020130117)%20max_hops%3D1%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20TTY%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20RFCOMM%20ver%201.11%3CBR%20%2F%3EBluetooth%3A%20BNEP%20(Ethernet%20Emulation)%20ver%201.3%3CBR%20%2F%3EBluetooth%3A%20BNEP%20filters%3A%20protocol%20multicast%3CBR%20%2F%3EBluetooth%3A%20BNEP%20socket%20layer%20initialized%3CBR%20%2F%3EBluetooth%3A%20HIDP%20(Human%20Interface%20Emulation)%20ver%201.2%3CBR%20%2F%3EBluetooth%3A%20HIDP%20socket%20layer%20initialized%3CBR%20%2F%3E8021q%3A%20802.1Q%20VLAN%20Support%20v1.8%3CBR%20%2F%3EKey%20type%20dns_resolver%20registered%3CBR%20%2F%3EUnable%20to%20handle%20kernel%20paging%20request%20at%20virtual%20address%20f51a000c%3CBR%20%2F%3Epgd%20%3D%2080004000%3CBR%20%2F%3E%5Bf51a000c%5D%20*pgd%3D00000000%3CBR%20%2F%3EInternal%20error%3A%20Oops%3A%205%20%5B%231%5D%20PREEMPT%20SMP%20ARM%3CBR%20%2F%3EModules%20linked%20in%3A%3CBR%20%2F%3ECPU%3A%200%20PID%3A%201%20Comm%3A%20swapper%2F0%20Not%20tainted%203.14.38%20%231%3CBR%20%2F%3Etask%3A%20c8068000%20ti%3A%20c806c000%20task.ti%3A%20c806c000%3CBR%20%2F%3EPC%20is%20at%20mx5_cpu_lp_set%2B0x10%2F0xfc%3CBR%20%2F%3ELR%20is%20at%20imx5_pm_init%2B0x64%2F0x80%3CBR%20%2F%3Epc%20%3A%20%5B%26lt%3B8001d804%26gt%3B%5D%20lr%20%3A%20%5B%26lt%3B809da58c%26gt%3B%5D%20psr%3A%2060000113%3CBR%20%2F%3Esp%20%3A%20c806dedc%20ip%20%3A%2000000072%20fp%20%3A%2000000000%3CBR%20%2F%3Er10%3A%20c806c038%20r9%20%3A%2080a1ee7c%20r8%20%3A%20809d1190%3CBR%20%2F%3Er7%20%3A%2080aa2100%20r6%20%3A%2080aa2100%20r5%20%3A%2000000007%20r4%20%3A%20c801b600%3CBR%20%2F%3Er3%20%3A%20f51a0000%20r2%20%3A%208001d8f0%20r1%20%3A%2000000002%20r0%20%3A%2000000002%3CBR%20%2F%3EFlags%3A%20nZCv%20IRQs%20on%20FIQs%20on%20Mode%20SVC_32%20ISA%20ARM%20Segment%20kernel%3CBR%20%2F%3EControl%3A%2010c5387d%20Table%3A%2070004019%20DAC%3A%2000000015%3CBR%20%2F%3EProcess%20swapper%2F0%20(pid%3A%201%2C%20stack%20limit%20%3D%200xc806c238)%3CBR%20%2F%3EStack%3A%20(0xc806dedc%20to%200xc806e000)%3CBR%20%2F%3Edec0%3A%20c801b600%3CBR%20%2F%3Edee0%3A%2000000007%20809da58c%2080a2b80c%20809d11b0%2000000000%20800088bc%20c800ccc0%20808c7d28%3CBR%20%2F%3Edf00%3A%20c8096200%2080714144%2000000000%2000000000%2000000000%208012a57c%2000000000%2080a446b0%3CBR%20%2F%3Edf20%3A%2060000113%2000000001%20cbfffc2e%208073b938%200000010b%20800498e0%2080996644%2000000007%3CBR%20%2F%3Edf40%3A%20cbfffc36%2000000007%2080a446a0%2080a2b80c%2000000007%2080aa2100%2080aa2100%20809ce50c%3CBR%20%2F%3Edf60%3A%2080a1ee7c%200000010b%2080a1ee74%20809cec38%2000000007%2000000007%20809ce50c%208070fbd8%3CBR%20%2F%3Edf80%3A%2000000000%2000002100%2080706164%2000000000%2000000000%2000000000%2000000000%2000000000%3CBR%20%2F%3Edfa0%3A%2000000000%2080706170%2000000000%208000e278%2000000000%2000000000%2000000000%2000000000%3CBR%20%2F%3Edfc0%3A%2000000000%2000000000%2000000000%2000000000%2000000000%2000000000%2000000000%2000000000%3CBR%20%2F%3Edfe0%3A%2000000000%2000000000%2000000000%2000000000%2000000013%2000000000%2080000220%2008040010%3CBR%20%2F%3E%5B%26lt%3B8001d804%26gt%3B%5D%20(mx5_cpu_lp_set)%20from%20%5B%26lt%3B809da58c%26gt%3B%5D%20(imx5_pm_init%2B0x64%2F0x80)%3CBR%20%2F%3E%5B%26lt%3B809da58c%26gt%3B%5D%20(imx5_pm_init)%20from%20%5B%26lt%3B809d11b0%26gt%3B%5D%20(init_machine_late%2B0x20%2F0x28)%3CBR%20%2F%3E%5B%26lt%3B809d11b0%26gt%3B%5D%20(init_machine_late)%20from%20%5B%26lt%3B800088bc%26gt%3B%5D%20(do_one_initcall%2B0xf8%2F0x144)%3CBR%20%2F%3E%5B%26lt%3B800088bc%26gt%3B%5D%20(do_one_initcall)%20from%20%5B%26lt%3B809cec38%26gt%3B%5D%20(kernel_init_freeable%2B0x13c%2F0x1dc)%3CBR%20%2F%3E%5B%26lt%3B809cec38%26gt%3B%5D%20(kernel_init_freeable)%20from%20%5B%26lt%3B80706170%26gt%3B%5D%20(kernel_init%2B0xc%2F0xe8)%3CBR%20%2F%3E%5B%26lt%3B80706170%26gt%3B%5D%20(kernel_init)%20from%20%5B%26lt%3B8000e278%26gt%3B%5D%20(ret_from_fork%2B0x14%2F0x3c)%3CBR%20%2F%3ECode%3A%20e3a03000%20e92d4030%20e1a01000%20e34f351a%20(e593c00c)%3CBR%20%2F%3E---%5B%20end%20trace%2065acb852349b9d5b%20%5D---%3CBR%20%2F%3EKernel%20panic%20-%20not%20syncing%3A%20Attempted%20to%20kill%20init!%20exitcode%3D0x0000000b%3C%2FBIO-0%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ET%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108506%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108506%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EPlease%20use%20the%20flashing%20procedure%20from%20our%20Ubuntu%20release%20blog%20post.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%3C%2FP%3E%3CP%3EGary%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108505%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108505%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EMy%20uboot%20print%20(couldn't%20find%20the%20document%20attachment%20option)%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CBLOCKQUOTE%20class%3D%22jive_macro_quote%20jive-quote%20jive_text_macro%22%3E%3CP%3Ebaudrate%3D115200%3CBR%20%2F%3Eboard%3Dsabrelite%3CBR%20%2F%3Ebootargs%3Dconsole%3Dttymxc0%2C115200%20root%3D%2Fdev%2Fmmcblk2p1%20rootwait%20rw%20video%3Dmxcfb1%3Adev%3Dldb%2CLDB-XGA%2Cif%3DRGB666%20video%3Dmxcfb0%3Adev%3Dhdmi%2C1920x1080M%4060%2Cif%3DRGB24%3CBR%20%2F%3Ebootargs_base%3Dsetenv%20bootargs%20console%3Dttymxc0%2C115200%3CBR%20%2F%3Ebootargs_mmc%3Dsetenv%20bootargs%20%24%7Bbootargs%7D%20root%3D%2Fdev%2Fmmcblk2p1%20rootwait%20rw%3CBR%20%2F%3Ebootcmd%3Drun%20bootcmd_mmc%3CBR%20%2F%3Ebootcmd_mmc%3Drun%20bootargs_base%20bootargs_mmc%3Bmmc%20dev%201%3Bmmc%20read%20%24%7Bloadaddr%7D%200x800%200x4000%3Bmmc%20read%20%24%7Bfdt_addr%7D%200x5000%200x800%3Bbootm%20%24%7Bloadaddr%7D%20-%20%24%7Bfdt_addr%7D%3CBR%20%2F%3Ebootdelay%3D3%3CBR%20%2F%3Ebootdevs%3Dsata%20mmc%20usb%3CBR%20%2F%3Eclearenv%3Dif%20sf%20probe%20%7C%7C%20sf%20probe%20%7C%7C%20sf%20probe%201%20%3B%20then%20sf%20erase%200xc0000%200x2000%20%26amp%3B%26amp%3B%20echo%20restored%20environment%20to%20factory%20default%20%3B%20fi%3CBR%20%2F%3Ecmd_hdmi%3Dfdt%20set%20fb_hdmi%20status%20okay%3Bfdt%20set%20fb_hdmi%20mode_str%201280x720M%4060%3B%3CBR%20%2F%3Ecmd_lcd%3Dfdt%20set%20fb_lcd%20status%20disabled%3CBR%20%2F%3Ecmd_lvds%3Dfdt%20set%20fb_lvds%20status%20disabled%3CBR%20%2F%3Econsole%3Dttymxc1%3CBR%20%2F%3Ecpu%3D6Q%3CBR%20%2F%3Edfu_alt_info%3Du-boot%20raw%200x0%200xc0000%3CBR%20%2F%3Eethact%3DFEC%3CBR%20%2F%3Eethaddr%3D00%3A19%3Ab8%3A02%3A79%3A6c%3CBR%20%2F%3Eethprime%3DFEC%3CBR%20%2F%3Efdt_addr%3D0x18000000%3CBR%20%2F%3Efdt_high%3D0xffffffff%3CBR%20%2F%3Efilesize%3D70c00%3CBR%20%2F%3Einitrd_high%3D0xffffffff%3CBR%20%2F%3Ekernel%3DuImage%3CBR%20%2F%3Eloadaddr%3D0x80800000%3CBR%20%2F%3Eloadsplash%3Dif%20sf%20probe%20%3B%20then%20sf%20read%20%24%7Bsplashimage%7D%20c2000%20%24%7Bsplashsize%7D%20%3B%20fi%3CBR%20%2F%3Ereset_cause%3D1%3CBR%20%2F%3Erundfu%3Ddfu%200%20sf%200%3A0%3A25000000%3A0%3CBR%20%2F%3Estdout%3Dserial%2Cvga%3CBR%20%2F%3Euboot_defconfig%3Dnitrogen6q%3CBR%20%2F%3Eumsdevs%3Dsata%20mmc%3CBR%20%2F%3Eupgradeu%3Dfor%20dtype%20in%20%24%7Bbootdevs%7D%3B%20do%20for%20disk%20in%200%201%20%3B%20do%20%24%7Bdtype%7D%20dev%20%24%7Bdisk%7D%3Bload%20%24%7Bdtype%7D%20%24%7Bdisk%7D%3A1%2010008000%20%2F6x_upgrade%20%26amp%3B%26amp%3B%20source%2010008000%20%3B%20done%20%3B%20done%3CBR%20%2F%3Eusbnet_devaddr%3D00%3A19%3Ab8%3A00%3A00%3A02%3CBR%20%2F%3Eusbnet_hostaddr%3D00%3A19%3Ab8%3A00%3A00%3A01%3CBR%20%2F%3Eusbrecover%3Dsetenv%20ethact%20usb_ether%3B%20setenv%20ipaddr%2010.0.0.2%3B%20setenv%20netmask%20255.255.255.0%3B%20setenv%20serverip%2010.0.0.1%3B%20%3CBR%20%2F%3Esetenv%20bootargs%20console%3Dttymxc1%2C115200%3B%20tftp%20boot%2010800000%2010.0.0.1%3AuImage-%24%7Bboard%7D-recovery%26amp%3B%26amp%3B%20tftpboot%2012800000%2010.0.0.1%3Auramdisk-%24%7Bboard%7D-recovery.img%20%26amp%3B%26amp%3B%20bootm%2010800000%2012800000%3C%2FP%3E%3CP%3EEnvironment%20size%3A%201701%2F8188%20bytes%3CBR%20%2F%3E%3D%26gt%3B%20boot%3CBR%20%2F%3Eswitch%20to%20partitions%20%230%2C%20OK%3CBR%20%2F%3Emmc1%20is%20current%20device%3C%2FP%3E%3CP%3EMMC%20read%3A%20dev%20%23%201%2C%20block%20%23%202048%2C%20count%2016384%20...%2016384%20blocks%20read%3A%20OK%3C%2FP%3E%3CP%3EMMC%20read%3A%20dev%20%23%201%2C%20block%20%23%2020480%2C%20count%202048%20...%202048%20blocks%20read%3A%20OK%3CBR%20%2F%3EWrong%20Image%20Format%20for%20bootm%20command%3CBR%20%2F%3EERROR%3A%20can't%20get%20kernel%20image!%3C%2FP%3E%3CBLOCKQUOTE%20class%3D%22jive_macro_quote%20jive-quote%20jive_text_macro%22%3E%3CP%3E%3C%2FP%3E%3C%2FBLOCKQUOTE%3E%3C%2FBLOCKQUOTE%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108504%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108504%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Gary%2C%20thanks%20for%20your%20reply.%20Now%20the%20situation%20is%20like%20this%20%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20want%20to%20interface%20an%20analog%20TV%20encoder%20(adv7343)%20to%20the%20RGB%20port%20of%20the%20imx6%20(in%20BDSL).%20According%20to%20what%20I%20have%20researched%2C%20I%20need%20adding%20few%26nbsp%3Bmodifications%20to%20the%20mxc_lcd.if%20of%20the%20linux%20kernel%20(3.14.52_1.1.0_ga)%26nbsp%3Bto%20use%20lcd%20driver%20in%20V_SYNC%20%7C%20H_SYNC%20mode%20to%20support%20this%20encoder.%20So%20I%20have%20no%20option%20(or%20do%20I%3F)%20rather%20than%20building%20a%20new%20kernel%20(as%20these%20drivers%20are%20builtin%20modules)%2C%20and%20that's%20why%20I%20thought%20of%20building%20a%20bootable%20SD%20card%20myself.%26nbsp%3B%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20think%20the%20steps%20I%20followed%20in%20preparing%20SD%20should%20be%20okay%2C%20but%20to%20note%20what%20I've%20done%20in%20brief%20%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------%3C%2FP%3E%3CP%3Eexport%20DISK%3D%2Fdev%2Fsdg%20%3CBR%20%2F%3Esudo%20dd%20if%3D%2Fdev%2Fzero%20of%3D%24%7BDISK%7D%20bs%3D1M%20count%3D10%20%3CBR%20%2F%3Ecd%20binary%2F%20%3CBR%20%2F%3Esudo%20dd%20if%3Du-boot.imx%20of%3D%24%7BDISK%7D%20bs%3D512%20seek%3D2%20%3CBR%20%2F%3Esync%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%2F%2F------------create%20partition%20table%3C%2FP%3E%3CP%3Esudo%20fdisk%20%24%7BDISK%7D%20%3CBR%20%2F%3Ed%20%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%2F%2Fdelete%20all%20partitions%20currently%20on%20sd%20%3CBR%20%2F%3En%20%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%2F%2F%20create%20new%20partition%20%3CBR%20%2F%3Ep%20%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%2F%2F%20Primary%20partition%20%3CBR%20%2F%3E1%20%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%2F%2F%20partition%20number%201%20%3CBR%20%2F%3E2048%20%2F%2Fdefault%20%3CBR%20%2F%3E%2B1G%20%26nbsp%3B%26nbsp%3B%26nbsp%3B%2F%2F%20%3CBR%20%2F%3En%20%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%2F%2F%20created%202d%20parition%20%3CBR%20%2F%3Ep%20%3CBR%20%2F%3E2%20%3CBR%20%2F%3Edefault%20%3CBR%20%2F%3Edefault%20%3CBR%20%2F%3Ew%3CBR%20%2F%3Esudo%20mkfs.vfat%20%24%7BDISK%7D1%20%3CBR%20%2F%3Esudo%20mkfs.ext3%20%24%7BDISK%7D2%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EMount%20ext3%20SD%20partition%20to%20%2Fmedia%2Frootfs%3A%3CBR%20%2F%3Esudo%20mount%20%24%7BDISK1%7D%20%2Fmedia%2Fkernel_target%20%3CBR%20%2F%3Esudo%20mount%20%24%7BDISK%7D2%20%2Fmedia%2Frootfs_target%20%3CBR%20%2F%3Esudo%20cp%20%E2%80%93v%20binary%2F%20i%24target-%24board.dtb%20%2Fmedia%2Fkernel_target%20%26nbsp%3B%26nbsp%3B%26nbsp%3B%2F%2Fdtb%20file%3CBR%20%2F%3Esudo%20cp%20%E2%80%93v%20binary%2FuImage%20%2Fmedia%2Fkernel_target%20%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%2F%2FuImage%26nbsp%3B%3CBR%20%2F%3Esudo%20mv%20%2Fmedia%2Frootfs%2F*%20%2Fmedia%2Frootfs_target%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%2F%2Froot%20file%20sys%3C%2FP%3E%3CP%3E----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------%3C%2FP%3E%3CP%3EAs%20you%20said%20the%20NAND%20flashed%20uboot%20already%20has%20required%20environment%20variables%2C%20and%20the%20uboot%20'print'%20is%20attached%20to%20this%20comment.%20Now%20after%20the%20uboot%20prompt%2C%20I%20get%20the%20following%20message%20in%20console%20terminal%20%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Eswitch%20to%20partitions%20%230%2C%20OK%3CBR%20%2F%3Emmc1%20is%20current%20device%3C%2FP%3E%3CP%3EMMC%20read%3A%20dev%20%23%201%2C%20block%20%23%202048%2C%20count%2016384%20...%2016384%20blocks%20read%3A%20OK%3C%2FP%3E%3CP%3EMMC%20read%3A%20dev%20%23%201%2C%20block%20%23%2020480%2C%20count%202048%20...%202048%20blocks%20read%3A%20OK%3CBR%20%2F%3EWrong%20Image%20Format%20for%20bootm%20command%3CBR%20%2F%3EERROR%3A%20can't%20get%20kernel%20image!%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ESo%20from%26nbsp%3Bthis%20point%2C%20how%20should%20I%20proceed%26nbsp%3B%3F%20do%20these%20environment%20variables%20cause%20the%20issue%20or%20is%20SD%20card%20preparation%20wrong%3F%26nbsp%3B%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks%20in%20advance%20!%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108503%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108503%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Anuradha%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EActually%20for%20SabreLite%20you%20don't%20need%20to%20follow%20the%20above%20instructions%2C%20we%20already%20provide%20an%20Ubuntu%20image%20ready%20to%20go%3A%3C%2FP%3E%3CP%3E%3CA%20class%3D%22link-titled%22%20href%3D%22https%3A%2F%2Fboundarydevices.com%2Fubuntu-xenial-mx67-boards-august-2016-kernel-4-1-15%2F%22%20title%3D%22https%3A%2F%2Fboundarydevices.com%2Fubuntu-xenial-mx67-boards-august-2016-kernel-4-1-15%2F%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fboundarydevices.com%2Fubuntu-xenial-mx67-boards-august-2016-kernel-4-1-15%2F%3C%2FA%3E%26nbsp%3B%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EOr%20if%20you'd%20rather%20use%20Debian%3A%3C%2FP%3E%3CP%3E%3CA%20class%3D%22link-titled%22%20href%3D%22https%3A%2F%2Fboundarydevices.com%2Fdebian-8-3-jessie-for-i-mx6-boards-february-2016-kernel-3-14-28%2F%22%20title%3D%22https%3A%2F%2Fboundarydevices.com%2Fdebian-8-3-jessie-for-i-mx6-boards-february-2016-kernel-3-14-28%2F%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fboundarydevices.com%2Fdebian-8-3-jessie-for-i-mx6-boards-february-2016-kernel-3-14-28%2F%3C%2FA%3E%26nbsp%3B%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ENote%20that%20in%20our%20case%20all%20the%20NXP%20components%20like%20the%20graphics%20library%2C%20VPU%20support%2C%20Chrome%20hw%20acceleration%20are%20packaged.%20That%20means%20that%20when%20a%20new%20graphics%20library%20version%20is%20out%2C%20you%20just%20need%20to%20do%20%22apt%20update%20%26amp%3B%26amp%3B%20apt%20upgrade%22%20and%20you%20are%20up-to-date.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EHope%20this%20helps.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%3C%2FP%3E%3CP%3EGary%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108502%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108502%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Anuradha%2C%20please%20refer%20to%26nbsp%3B%3CA%20_jive_internal%3D%22true%22%20class%3D%22link-titled%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fmessage%2F836641%3FcommentID%3D836641%26amp%3Bet%3Dwatches.email.thread%23comment-836641%22%20title%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fmessage%2F836641%3FcommentID%3D836641%26amp%3Bet%3Dwatches.email.thread%23comment-836641%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fcommunity.nxp.com%2Fmessage%2F836641%3FcommentID%3D836641%26amp%3Bet%3Dwatches.email.thread%23comment-836641%3C%2FA%3E%26nbsp%3B%20this%20doc%2C%20about%20old%20uboot%20with%20new%20kernel.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108501%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108501%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%20thanks%20for%20this%20excellent%20doc%2C%20and%20I%20have%20a%20question%20on%26nbsp%3Brootfs%20system.%20I%20am%20using%20imx6%20sabrelite%20board%20and%20have%20exactly%20followed%20the%20guidelines%20in%20this%20doc.%20I%20cross%20compiled%20all%20the%20files%20on%20an%20Ubuntu%20platform%2C%20and%20after%20the%20unmount%26nbsp%3Band%26nbsp%3Binserted%20the%20SD%20card%20to%20my%20board.%20The%20kernel%20boot%20process%20requests%206x_bootscript%20file%20and%20it%20seems%20like%20the%20older%20uBoot%20is%20operating%20fron%20Nand%20Flash.%26nbsp%3BHow%20should%20I%20solve%20this%20issue%20by%20setting%20my%20own%20uBoot%20to%20prompt%20and%20load%26nbsp%3Brootfs%20and%20zImage%20%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108500%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108500%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20all%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20find%20the%26nbsp%3B%3CSPAN%20style%3D%22color%3A%20%23008000%3B%20background-color%3A%20%23f6f6f6%3B%22%3Egcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux.tar.xz%20compiler%20not%20working%20on%20ubuntu14.04%2C%20I%20tried%20with%20gcc-linaro-4.8-2015.06-x86_64_arm-linux-xxxx%20works.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%23008000%3B%20background-color%3A%20%23f6f6f6%3B%22%3ERegards!%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%23008000%3B%20background-color%3A%20%23f6f6f6%3B%22%3EWenming%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108499%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108499%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHI%2C%3C%2FP%3E%3CP%3EDoes%20somebody%20encounter%20%2Fbin%2Fsh%201%3A%20arm-linux-gnueabihf-gcc%20not%20found%20issue%3F%20this%20is%20a%20symlink%20to%20arm-linux-gnueabihf-gcc-4.9.4.%3C%2FP%3E%3CP%3Eany%20fix%20to%20it%20is%20highly%20appreciated.%3C%2FP%3E%3CP%3EThanks%20aheard.%3C%2FP%3E%3CP%3Ewenming%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1108498%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Installing%20Ubuntu%20Rootfs%20on%20NXP%20i.MX6%20boards%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1108498%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHow%20to%20connect%20it%20to%20HDMI%20Display%3F%3C%2FP%3E%3CP%3EIs%20there%20any%20additional%20changes%20or%20If%20I%20connect%20to%20HDMI%20it%20will%20show%20desktop%3F%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E
No ratings
Version history
Last update:
‎09-10-2020 02:07 AM
Updated by: