Mounting issue after NFS boot emergency mode [solved]

Hi,

Changing the U-boot default parameters, I managed to boot the linux LXDE image from network as described in the link below. I set exactly the same network config.

Sorry for the long post, there is a lot of log. I don’t want to remove any useful information.

The TFTP and NFS server config:

$ cat /etc/exports 
# /etc/exports: the access control list for filesystems which may be exported
#		to NFS clients.  See exports(5).
#
# Example for NFSv2 and NFSv3:
# /srv/homes       hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)
#
# Example for NFSv4:
# /srv/nfs4        gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)
# /srv/nfs4/homes  gss/krb5i(rw,sync,no_subtree_check)
#

/srv/nfs 192.168.10.1/24(no_root_squash,no_subtree_check,rw,fsid=root)
$ cat /etc/default/tftpd-hpa 
# /etc/default/tftpd-hpa

TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/srv/tftp"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="--secure"
$ ls /srv/tftp/
imx7d-colibri-emmc-eval-v3.dtb  imx7d-colibri-emmc-eval-v3.dtb.me  zImage  zImage.me
arnaud@debian-IFT:~$ ls /srv/nfs/
bin  boot  dev  etc  home  lib  _me  media  mnt  proc  run  sbin  sys  tmp  usr  var

The initial U-boot environment was:

Video: 640x480x18
In:    serial
Out:   serial
Err:   serial
Model: Toradex Colibri iMX7 Dual 1GB V1.1A, Serial# 03111750
Net:   FEC0
Hit any key to stop autoboot:  0
Colibri iMX7 # printenv
arch=arm
baudrate=115200
board=colibri_imx7
board_name=colibri_imx7
boot_a_script=load ${devtype} ${devnum}:${distro_bootpart} ${scriptaddr} ${prefix}${script}; source ${scriptaddr}
boot_extlinux=sysboot ${devtype} ${devnum}:${distro_bootpart} any ${scriptaddr} ${prefix}extlinux/extlinux.conf
boot_file=zImage
boot_net_usb_start=usb start
boot_prefixes=/ /boot/
boot_script_dhcp=boot.scr.uimg
boot_scripts=boot.scr.uimg boot.scr
boot_targets=mmc1 usb0 dhcp
bootcmd=run emmcboot ; echo ; echo emmcboot failed ; setenv fdtfile ${soc}-colibri-emmc-${fdt_board}.dtb && run distro_bootcmd;
bootcmd_dhcp=if dhcp ${scriptaddr} ${boot_script_dhcp}; then source ${scriptaddr}; fi;
bootcmd_mmc1=setenv devnum 1; run mmc_boot
bootcmd_usb0=setenv devnum 0; run usb_boot
bootdelay=1
bootm_size=0x10000000
console=ttymxc0
cpu=armv7
distro_bootcmd=for target in ${boot_targets}; do run bootcmd_${target}; done
emmcargs=ip=off root=/dev/mmcblk0p2 ro rootfstype=ext4 rootwait
emmcboot=run setup; setenv bootargs ${defargs} ${emmcargs} ${setupargs} ${vidargs}; echo Booting from internal eMMC chip...; run m4boot && load mmc 0:1 ${fdt_addr_r} ${soc}-colibri-emmc-${fdt_board}.dtb && load mmc 0:1 ${kernel_addr_r} ${boot_file} && run fdt_fixup && bootz ${kernel_addr_r} - ${fdt_addr_r}
eth1addr=00:14:2d:3f:7b:46
ethact=FEC0
ethaddr=00:14:2d:2f:7b:46
ethprime=FEC
fdt_addr_r=0x82000000
fdt_board=eval-v3
fdt_fixup=;
fdt_high=0xffffffff
fdtcontroladdr=bff94a50
initrd_high=0xffffffff
ip_dyn=yes
ipaddr=192.168.10.2
kernel_addr_r=0x81000000
kernel_file=zImage
loadaddr=0x80800000
m4boot=;
mmc_boot=if mmc dev ${devnum}; then setenv devtype mmc; run scan_dev_for_boot_part; fi
netmask=255.255.255.0
nfsargs=ip=:::::eth0: root=/dev/nfs
nfsboot=run setup; setenv bootargs ${defargs} ${nfsargs} ${setupargs} ${vidargs}; echo Booting from NFS...;tftp ${kernel_addr_r} && tftp ${fdt_addr_r} ${soc}-colibri-emmc-${fdt_board}.dtb && run fdt_fixup && bootz ${kernel_addr_r} - ${fdt_addr_r}
pxefile_addr_r=0x87100000
ramdisk_addr_r=0x82100000
scan_dev_for_boot=echo Scanning ${devtype} ${devnum}:${distro_bootpart}...; for prefix in ${boot_prefixes}; do run scan_dev_for_extlinux; run scan_dev_for_scripts; done;
scan_dev_for_boot_part=part list ${devtype} ${devnum} -bootable devplist; env exists devplist || setenv devplist 1; for distro_bootpart in ${devplist}; do if fstype ${devtype} ${devnum}:${distro_bootpart} bootfstype; then run scan_dev_for_boot; fi; done
scan_dev_for_extlinux=if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}extlinux/extlinux.conf; then echo Found ${prefix}extlinux/extlinux.conf; run boot_extlinux; echo SCRIPT FAILED: continuing...; fi
scan_dev_for_scripts=for script in ${boot_scripts}; do if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}${script}; then echo Found U-Boot script ${prefix}${script}; run boot_a_script; echo SCRIPT FAILED: continuing...; fi; done
scriptaddr=0x87000000
sdargs=root=/dev/mmcblk1p2 ro rootwait
sdboot=run setup; setenv bootargs ${defargs} ${sdargs} ${setupargs} ${vidargs}; echo Booting from MMC/SD card...; run m4boot && load mmc 1:1 ${kernel_addr_r} ${kernel_file} && load mmc 1:1 ${fdt_addr_r} ${soc}-colibri-emmc-${fdt_board}.dtb && run fdt_fixup && bootz ${kernel_addr_r} - ${fdt_addr_r}
serial#=03111750
serverip=192.168.10.1
setethupdate=if env exists ethaddr; then; else setenv ethaddr 00:14:2d:00:00:00; fi; tftpboot ${loadaddr} ${board}/flash_eth.img && source ${loadaddr}
setsdupdate=mmc rescan && setenv interface mmc && fatload ${interface} 0:1 ${loadaddr} ${board}/flash_blk.img && source ${loadaddr}
setup=setenv setupargs console=tty1 console=${console},${baudrate}n8 ${memargs} consoleblank=0
setupdate=run setsdupdate || run setusbupdate || run setethupdate
setusbupdate=usb start && setenv interface usb && fatload ${interface} 0:1 ${loadaddr} ${board}/flash_blk.img && source ${loadaddr}
soc=imx7d
splashpos=m,m
updlevel=2
usb_boot=usb start; if usb dev ${devnum}; then setenv devtype usb; run scan_dev_for_boot_part; fi
vendor=toradex
vidargs=video=mxsfb:640x480M-16@60
videomode=video=ctfb:x:640,y:480,depth:18,pclk:39722,le:48,ri:16,up:33,lo:10,hs:96,vs:2,sync:0,vmode:0

Environment size: 4283/8188 bytes

Some variables seemed wrong, so I corrected them. Then it booted:

setenv nfsargs 'root=/dev/nfs rw nfsroot=192.168.10.1:/srv/nfs,nolock,v3,tcp ip=192.168.10.2:192.168.10.1:192.168.10.1:255.255.255.0:toradex::off'
setenv nfsboot 'run setup; setenv bootargs ${defargs} ${nfsargs} ${setupargs} ${vidargs}; echo Booting from NFS...;tftp ${kernel_addr_r} zImage && tftp ${fdt_addr_r} ${soc}-colibri-emmc-${fdt_board}.dtb && run fdt_fixup && bootz ${kernel_addr_r} - ${fdt_addr_r}'
setenv bootcmd 'run nfsboot ; echo ; echo nfsboot failed ; setenv fdtfile ${soc}-colibri-emmc-${fdt_board}.dtb && run distro_bootcmd;'
boot

After booting, the console showed the lines below. It’s the full log with the command I entered.

U-Boot 2016.11-2.7.4+g1b121c6 (Oct 04 2017 - 21:46:51 +0000)

CPU:   Freescale i.MX7D rev1.3 996 MHz (running at 792 MHz)
CPU:   Extended Commercial temperature grade (-20C to 105C) at 36C
Reset cause: POR
DRAM:  1 GiB
PMIC:  RN5T567 LSIVER=0x01 OTPVER=0x0d
MMC:   FSL_SDHC: 0, FSL_SDHC: 1
*** Warning - bad CRC, using default environment

Video: 640x480x18
In:    serial
Out:   serial
Err:   serial
Model: Toradex Colibri iMX7 Dual 1GB V1.1A, Serial# 03111750
Net:   FEC0
Hit any key to stop autoboot:  0 
Colibri iMX7 # setenv nfsargs 'root=/dev/nfs rw nfsroot=192.168.10.1:/srv/nfs,nolock,v3,tcp ip=192.168.10.2:192.168.10.1:192.168.10.1:255.255.255.0:toradex::off'
Colibri iMX7 # setenv nfsboot 'run setup; setenv bootargs ${defargs} ${nfsargs} ${setupargs} ${vidargs}; echo Booting from NFS...;tftp ${kernel_addr_r} zImage && tftp ${fdt_addr_r} ${soc}-colibri-emmc-${fdt_boa'
Colibri iMX7 # setenv bootcmd 'run nfsboot ; echo ; echo nfsboot failed ; setenv fdtfile ${soc}-colibri-emmc-${fdt_board}.dtb && run distro_bootcmd;'
Colibri iMX7 # boot
Booting from NFS...
Using FEC0 device
TFTP from server 192.168.10.1; our IP address is 192.168.10.2
Filename 'zImage'.
Load address: 0x81000000
Loading: ##################################################  4.9 MiB
         6.9 MiB/s
done
Bytes transferred = 5114608 (4e0af0 hex)
Using FEC0 device
TFTP from server 192.168.10.1; our IP address is 192.168.10.2
Filename 'imx7d-colibri-emmc-eval-v3.dtb'.
Load address: 0x82000000
Loading: ##################################################  44 KiB
         2.4 MiB/s
done
Bytes transferred = 45016 (afd8 hex)
Kernel image @ 0x81000000 [ 0x000000 - 0x4e0af0 ]
## Flattened Device Tree blob at 82000000
   Booting using the fdt blob at 0x82000000
   Using Device Tree in place at 82000000, end 8200dfd7

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.1.44-2.7.4+gb1555bf (yocto@1379c8748e74) (gcc version 6.2.1 20161016 (Linaro GCC 6.2-2016.11) ) #1 SMP Thu Oct 5 03:05:43 UTC 2017
[    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine model: Toradex Colibri iMX7D on Colibri Evaluation Board V3
[    0.000000] Reserved memory: created CMA memory pool at 0xb8000000, size 128 MiB
[    0.000000] Reserved memory: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] Memory policy: Data cache writealloc
[    0.000000] PERCPU: Embedded 12 pages/cpu @b777f000 s16844 r8192 d24116 u49152
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 260096
[    0.000000] Kernel command line: root=/dev/nfs rw nfsroot=192.168.10.1:/srv/nfs,nolock,v3,tcp ip=192.168.10.2:192.168.10.1:192.168.10.1:255.255.255.0:toradex::off console=tty1 console=ttymxc0,115200n8 consol0
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Memory: 898408K/1048576K available (6414K kernel code, 291K rwdata, 2136K rodata, 312K init, 380K bss, 19096K reserved, 131072K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
[    0.000000]     vmalloc : 0xc0800000 - 0xff000000   (1000 MB)
[    0.000000]     lowmem  : 0x80000000 - 0xc0000000   (1024 MB)
[    0.000000]     modules : 0x7f000000 - 0x80000000   (  16 MB)
[    0.000000]       .text : 0x80008000 - 0x80861c68   (8552 kB)
[    0.000000]       .init : 0x80862000 - 0x808b0000   ( 312 kB)
[    0.000000]       .data : 0x808b0000 - 0x808f8dc0   ( 292 kB)
[    0.000000]        .bss : 0x808fb000 - 0x8095a1ac   ( 381 kB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.000000] NR_IRQS:16 nr_irqs:16 16
[    0.000000] Architected cp15 timer(s) running at 8.00MHz (phys).
[    0.000000] clocksource arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1d854df40, max_idle_ns: 440795202120 ns
[    0.000006] sched_clock: 56 bits at 8MHz, resolution 125ns, wraps every 2199023255500ns
[    0.000018] Switching to timer-based delay loop, resolution 125ns
[    0.000465] mxc_clocksource_init 3000000
[    0.000479] Ignoring duplicate/late registration of read_current_timer delay
[    0.000495] clocksource mxc_timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 637086815595 ns
[    0.001753] Console: colour dummy device 80x30
[    0.002407] console [tty1] enabled
[    0.002434] Calibrating delay loop (skipped), value calculated using timer frequency.. 16.00 BogoMIPS (lpj=80000)
[    0.002477] pid_max: default: 32768 minimum: 301
[    0.002591] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.002620] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.003276] Initializing cgroup subsys freezer
[    0.003316] Initializing cgroup subsys debug
[    0.003366] CPU: Testing write buffer coherency: ok
[    0.003669] Setting up static identity map for 0x80008280 - 0x800082d8
[    0.005616] Brought up 2 CPUs
[    0.005649] SMP: Total of 2 processors activated (32.00 BogoMIPS).
[    0.005671] CPU: All CPU(s) started in SVC mode.
[    0.006206] devtmpfs: initialized
[    0.019548] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    0.019978] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.020040] futex hash table entries: 512 (order: 3, 32768 bytes)
[    0.025336] pinctrl core: initialized pinctrl subsystem
[    0.026597] NET: Registered protocol family 16
[    0.032365] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.059966] cpuidle: using governor ladder
[    0.089982] cpuidle: using governor menu
[    0.103455] DDR type is DDR3!
[    0.110368] imx7d_enet_clk_sel: failed to get enet_out clock, assuming ext. clock source
[    0.110455] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
[    0.110491] hw-breakpoint: maximum watchpoint size is 8 bytes.
[    0.110819] imx7d-pinctrl 30270000.lpsr-gpr: initialized IMX pinctrl driver
[    0.111030] imx7d-pinctrl 302c0000.iomuxc-lpsr: initialized IMX pinctrl driver
[    0.112337] imx7d-pinctrl 30330000.iomuxc: initialized IMX pinctrl driver
[    0.113987] MU is ready for cross core communication!
[    0.123348] mxs-dma 33000000.dma-apbh: initialized
[    0.125180] VCC_USB[1-4]: supplied by 5V
[    0.125670] SCSI subsystem initialized
[    0.125979] usbcore: registered new interface driver usbfs
[    0.126084] usbcore: registered new interface driver hub
[    0.126209] usbcore: registered new device driver usb
[    0.126477] 30800000.aips-bus:usbphy_nop1 supply vcc not found, using dummy regulator
[    0.126782] 30800000.aips-bus:usbphy_nop2 supply vcc not found, using dummy regulator
[    0.127801] i2c i2c-0: IMX I2C adapter registered
[    0.127835] i2c i2c-0: can't use DMA
[    0.128326] i2c i2c-3: IMX I2C adapter registered
[    0.128357] i2c i2c-3: can't use DMA
[    0.128485] Linux video capture interface: v2.00
[    0.128561] pps_core: LinuxPPS API ver. 1 registered
[    0.128584] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.128644] PTP clock support registered
[    0.129167] Advanced Linux Sound Architecture Driver Initialized.
[    0.130560] Switched to clocksource arch_sys_counter
[    0.141607] NET: Registered protocol family 2
[    0.142438] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.142565] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.142725] TCP: Hash tables configured (established 8192 bind 8192)
[    0.142809] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.142878] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.143092] NET: Registered protocol family 1
[    0.143418] RPC: Registered named UNIX socket transport module.
[    0.143448] RPC: Registered udp transport module.
[    0.143469] RPC: Registered tcp transport module.
[    0.143490] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.144734] imx rpmsg driver is registered.
[    0.145692] Bus freq driver module loaded
[    0.153724] VFS: Disk quotas dquot_6.6.0
[    0.153952] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.155862] NFS: Registering the id_resolver key type
[    0.155941] Key type id_resolver registered
[    0.155962] Key type id_legacy registered
[    0.155999] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.156564] ntfs: driver 2.1.32 [Flags: R/W].
[    0.157065] fuse init (API version 7.23)
[    0.160787] io scheduler noop registered
[    0.160829] io scheduler deadline registered
[    0.161029] io scheduler cfq registered (default)
[    0.163036] backlight supply power not found, using dummy regulator
[    0.165035] 30730000.lcdif supply lcd not found, using dummy regulator
[    0.165244] fbcvt: 640x480@60: CVT Name - .307M3
[    0.230753] mxsfb 30730000.lcdif: failed to find mxc display driver 
[    0.239579] Console: switching to colour frame buffer device 80x30
[    0.257724] mxsfb 30730000.lcdif: initialized
[    0.260588] imx-sdma 30bd0000.sdma: no event needs to be remapped
[    0.262396] imx-sdma 30bd0000.sdma: loaded firmware 4.2
[    0.267270] imx-sdma 30bd0000.sdma: initialized
[    0.270061] 30860000.serial: ttymxc0 at MMIO 0x30860000 (irq = 280, base_baud = 1500000) is a IMX
[    0.996684] console [ttymxc0] enabled
[    1.002837] 30890000.serial: ttymxc1 at MMIO 0x30890000 (irq = 281, base_baud = 1500000) is a IMX
[    1.015950] 30880000.serial: ttymxc2 at MMIO 0x30880000 (irq = 282, base_baud = 5000000) is a IMX
[    1.034582] loop: module loaded
[    1.054745] nand: No NAND device found
[    1.062544] spi_imx 30840000.ecspi: probed
[    1.072451] pps pps0: new PPS source ptp0
[    1.080471] libphy: fec_enet_mii_bus: probed
[    1.088195] fec 30be0000.ethernet eth0: registered PHC device 0
[    1.096147] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.104656] ehci-mxc: Freescale On-Chip EHCI Host driver
[    1.112156] usbcore: registered new interface driver usb-storage
[    1.120247] usbcore: registered new interface driver usbserial
[    1.128021] usbcore: registered new interface driver usbserial_generic
[    1.136427] usbserial: USB Serial support registered for generic
[    1.144307] usbcore: registered new interface driver ftdi_sio
[    1.151909] usbserial: USB Serial support registered for FTDI USB Serial Device
[    1.162834] usbcore: registered new interface driver pl2303
[    1.170319] usbserial: USB Serial support registered for pl2303
[    1.179375] 30b10200.usbmisc supply vbus-wakeup not found, using dummy regulator
[    1.190705] 30b30200.usbmisc supply vbus-wakeup not found, using dummy regulator
[    1.202114] 30b20200.usbmisc supply vbus-wakeup not found, using dummy regulator
[    1.214054] imx_usb 30b10000.usb: Can't register ci_hdrc platform device, err=-517
[    1.228600] ci_hdrc ci_hdrc.0: EHCI Host Controller
[    1.235575] ci_hdrc ci_hdrc.0: new USB bus registered, assigned bus number 1
[    1.260591] ci_hdrc ci_hdrc.0: USB 2.0 started, EHCI 1.00
[    1.269082] hub 1-0:1.0: USB hub found
[    1.275003] hub 1-0:1.0: 1 port detected
[    1.281936] mousedev: PS/2 mouse device common for all mice
[    1.292339] input: AD7879 Touchscreen as /devices/platform/soc/30800000.aips-bus/30a20000.i2c/i2c-0/0-002c/input/input0
[    1.310341] rtc-ds1307 3-0068: oscillator failed, set time!
[    1.318299] rtc-ds1307 3-0068: rtc core: registered m41t0 as rtc0
[    1.327280] snvs_rtc 30370000.snvs:snvs-rtc-lp: rtc core: registered 30370000.snvs:snvs- as rtc1
[    1.340603] i2c /dev entries driver
[    1.349033] imx2-wdt 30280000.wdog: timeout 60 sec (nowayout=0)
[    1.357476] sdhci: Secure Digital Host Controller Interface driver
[    1.365844] sdhci: Copyright(c) Pierre Ossman
[    1.372356] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.381023] /soc/aips-bus@30800000/usdhc@30b40000: voltage-ranges unspecified
[    1.390335] sdhci-esdhc-imx 30b40000.usdhc: Got CD GPIO
[    1.399406] sdhci-esdhc-imx 30b40000.usdhc: No vqmmc regulator found
[    1.450726] mmc0: SDHCI controller on 30b40000.usdhc [30b40000.usdhc] using ADMA
[    1.466539] caam 30900000.caam: Entropy delay = 3200
[    1.473579] caam 30900000.caam: Instantiated RNG4 SH0
[    1.532992] caam 30900000.caam: Instantiated RNG4 SH1
[    1.539945] caam 30900000.caam: device ID = 0x0a16030000000000 (Era -524)
[    1.548645] caam 30900000.caam: job rings = 3, qi = 0
[    1.600598] usb 1-1: new high-speed USB device number 2 using ci_hdrc
[    1.645514] caam algorithms registered in /proc/crypto
[    1.656015] caam_jr 30901000.jr0: registering rng-caam
[    1.663876] hidraw: raw HID events driver (C) Jiri Kosina
[    1.671741] usbcore: registered new interface driver usbhid
[    1.679183] usbhid: USB HID core driver
[    1.689642] coresight-tmc 30086000.etr: TMC initialized
[    1.697106] coresight-tmc 30084000.etf: TMC initialized
[    1.704361] coresight-tpiu 30087000.tpiu: TPIU initialized
[    1.711912] coresight-funnel 30083000.funnel: FUNNEL initialized
[    1.719868] coresight-funnel 30041000.funnel: FUNNEL initialized
[    1.727955] coresight-replicator replicator: REPLICATOR initialized
[    1.736550] coresight-etm3x 3007c000.etm: ETM initialized
[    1.744029] coresight-etm3x 3007d000.etm: ETM initialized
[    1.752291] hub 1-1:1.0: USB hub found
[    1.760663] hub 1-1:1.0: 4 ports detected
[    1.762103] sgtl5000 0-000a: sgtl5000 revision 0x11
[    1.798445] imx-sgtl5000 sound: sgtl5000 <-> 308a0000.sai mapping ok
[    1.807658] Netfilter messages via NETLINK v0.30.
[    1.813924] nfnl_acct: registering with nfnetlink.
[    1.820217] nf_conntrack version 0.5.0 (16085 buckets, 64340 max)
[    1.828427] nf_tables: (c) 2007-2009 Patrick McHardy <kaber@trash.net>
[    1.837026] ip_tables: (C) 2000-2006 Netfilter Core Team
[    1.844728] NET: Registered protocol family 10
[    1.851908] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    1.858937] NET: Registered protocol family 17
[    1.865057] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[    1.881023] Bridge firewalling registered
[    1.886768] 8021q: 802.1Q VLAN Support v1.8
[    1.892675] Key type dns_resolver registered
[    1.905866] Registering SWP/SWPB emulation handler
[    1.913302] registered taskstats version 1
[    1.925517] ci_hdrc ci_hdrc.1: EHCI Host Controller
[    1.931882] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 2
[    1.960689] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00
[    1.968286] hub 2-0:1.0: USB hub found
[    1.973472] hub 2-0:1.0: 1 port detected
[    1.981102] input: gpio-keys as /devices/platform/gpio-keys/input/input1
[    1.991198] rtc-ds1307 3-0068: hctosys: unable to read the hardware clock
[    2.070650] usb 1-1.1: new low-speed USB device number 3 using ci_hdrc
[    2.090744] fec 30be0000.ethernet eth0: Freescale FEC PHY driver [Micrel KSZ8041] (mii_bus:phy_addr=30be0000.etherne:00, irq=-1)
[    2.130727] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    2.210163] input: Logitech USB Optical Mouse as /devices/platform/soc/30800000.aips-bus/30b20000.usb/ci_hdrc.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:046D:C05A.0001/input/input2
[    2.231736] hid-generic 0003:046D:C05A.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-ci_hdrc.0-1.1/input0
[    2.340646] usb 1-1.2: new low-speed USB device number 4 using ci_hdrc
[    2.483598] input: Logitech USB Keyboard as /devices/platform/soc/30800000.aips-bus/30b20000.usb/ci_hdrc.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:046D:C31C.0002/input/input3
[    2.561020] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-ci_hdrc.0-1.2/input0
[    2.587730] input: Logitech USB Keyboard as /devices/platform/soc/30800000.aips-bus/30b20000.usb/ci_hdrc.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:046D:C31C.0003/input/input4
[    2.661007] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-ci_hdrc.0-1.2/input1
[    5.091256] fec 30be0000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[    5.110672] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[    5.130861] IP-Config: Complete:
[    5.136669]      device=eth0, hwaddr=00:14:2d:2f:7b:46, ipaddr=192.168.10.2, mask=255.255.255.0, gw=192.168.10.1
[    5.152029]      host=toradex, domain=, nis-domain=(none)
[    5.159997]      bootserver=192.168.10.1, rootserver=192.168.10.1, rootpath=
[    5.170613] ALSA device list:
[    5.175596]   #0: imx7-colibri-sgtl5000
[    5.216080] VFS: Mounted root (nfs filesystem) on device 0:13.
[    5.225825] devtmpfs: mounted
[    5.231046] Freeing unused kernel memory: 312K
[    5.694838] systemd[1]: System time before build time, advancing clock.
[    5.741814] random: systemd urandom read with 23 bits of entropy available
[    5.765870] systemd[1]: systemd 230 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS -ACL -XZ +LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
[    5.791724] systemd[1]: Detected architecture arm.

Welcome to The �Ångstr�öm Distribution v2016.12!

[    5.827285] systemd[1]: Set hostname to <colibri-imx7>.
[    5.851577] systemd[1]: Initializing machine ID from random generator.
[    7.013084] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[    7.043315] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
[    7.070823] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[    7.101183] systemd[1]: Created slice System Slice.
[  OK  ] Created slice System Slice.
[    7.133591] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[    7.160790] systemd[1]: Reached target Slices.
[  OK  ] Reached target Slices.
[    7.181110] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[    7.312341] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[    7.371602] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[    7.412985] systemd[1]: Mounting Debug File System...
         Mounting Debug File System...
[    7.441391] systemd[1]: Created slice system-getty.slice.
[  OK  ] Created slice system-getty.slice.
[    7.472679] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    7.515923] systemd[1]: Starting Create list of required static device nodes for the current kernel...
         Starting Create list of required st... nodes for the current kernel...
[    7.561179] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password Requests to Console Directory Watch.
[    7.611072] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    7.642794] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems...
[    7.671173] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password Requests to Wall Directory Watch.
[    7.701019] systemd[1]: Reached target Paths.
[  OK  ] Reached target Paths.
[    7.731487] systemd[1]: Created slice system-serial\x2dgetty.slice.
[  OK  ] Created slice system-serial\x2dgetty.slice.
[    7.762931] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    7.792928] systemd[1]: Starting Setup Virtual Console...
         Starting Setup Virtual Console...
[    7.820904] systemd[1]: Reached target Swap.
[  OK  ] Reached target Swap.
[    7.852501] systemd[1]: Mounting Temporary Directory...
         Mounting Temporary Directory...
[    7.883863] systemd[1]: Started Load Kernel Modules.
[  OK  ] Started Load Kernel Modules.
[    7.911436] systemd[1]: sys-kernel-debug.mount: Mount process exited, code=exited status=1
[    7.923980] systemd[1]: Failed to mount Debug File System.
[FAILED] Failed to mount Debug File System.
See 'systemctl status sys-kernel-debug.mount' for details.
[    7.970813] systemd[1]: sys-kernel-debug.mount: Unit entered failed state.
[    7.980653] systemd[1]: Started Create list of required static device nodes for the current kernel.
[  OK  ] Started Create list of required sta...ce nodes for the current kernel.
[    8.021508] systemd[1]: systemd-remount-fs.service: Main process exited, code=exited, status=1/FAILURE
[    8.035904] systemd[1]: Failed to start Remount Root and Kernel File Systems.
[FAILED] Failed to start Remount Root and Kernel File Systems.
See 'systemctl status systemd-remount-fs.service' for details.
[    8.090748] systemd[1]: systemd-remount-fs.service: Unit entered failed state.
[    8.101369] systemd[1]: systemd-remount-fs.service: Failed with result 'exit-code'.
[    8.113190] systemd[1]: Started Setup Virtual Console.
[  OK  ] Started Setup Virtual Console.
[    8.141361] systemd[1]: tmp.mount: Mount process exited, code=exited status=1
[    8.150692] systemd[1]: Failed to mount Temporary Directory.
[FAILED] Failed to mount Temporary Directory.
See 'systemctl status tmp.mount' for details.
[    8.200909] systemd[1]: Dependency failed for Network Time Synchronization.
[DEPEND] Dependency failed for Network Time Synchronization.
[    8.230831] systemd[1]: systemd-timesyncd.service: Job systemd-timesyncd.service/start failed with result 'dependency'.
[    8.245151] systemd[1]: tmp.mount: Unit entered failed state.
[    8.253180] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Reached target System Time Synchronized.
         Starting Flush Journal to Persistent Storage...
         Starting Rebuild Hardware Database...
         Starting Create System Users...
         Starting Apply Kernel Variables...
         Mounting Configuration File System...
         Mounting FUSE Control File System...
[    8.464916] systemd-journald[172]: Received request to flush runtime journal from PID 1
[  OK  ] Started Flush Journal to Persistent Storage.
[FAILED] Failed to mount Configuration File System.
See 'systemctl status sys-kernel-config.mount' for details.
[  OK  ] Started Apply Kernel Variables.
[FAILED] Failed to mount FUSE Control File System.
See 'systemctl status sys-fs-fuse-connections.mount' for details.
[  OK  ] Started Create System Users.
         Starting Create Static Device Nodes in /dev...
[  OK  ] Started Create Static Device Nodes in /dev.
[  OK  ] Reached target Local File Systems (Pre).
         Mounting /var/volatile...
         Starting udev Kernel Device Manager...
[FAILED] Failed to mount /var/volatile.
See 'systemctl status var-volatile.mount' for details.
[DEPEND] Dependency failed for Bind mount volatile /var/lib.
[DEPEND] Dependency failed for Bind mount volatile /srv.
[DEPEND] Dependency failed for Bind mount volatile /var/cache.
[DEPEND] Dependency failed for Bind mount volatile /var/spool.
[DEPEND] Dependency failed for Local File Systems.
[  OK  ] Reached target Timers.
[  OK  ] Reached target Login Prompts.
[  OK  ] Reached target Sockets.
[  OK  ] Started Emergency Shell.
[  OK  ] Reached target Emergency Mode.
         Starting Rebuild Journal Catalog...
         Starting Create Volatile Files and Directories...
         Starting Rebuild Dynamic Linker Cache...
         Starting Load/Save Random Seed...
[  OK  ] Started Load/Save Random Seed.
[  OK  ] Started Rebuild Journal Catalog.
[  OK  ] Started udev Kernel Device Manager.
         Starting Network Service...
[  OK  ] Started Create Volatile Files and Directories.
         Starting Opkg first boot configure...
         Starting Update UTMP about System Boot/Shutdown...
         Starting Run pending postinsts...
[  OK  ] Started Update UTMP about System Boot/Shutdown.
         Starting Update UTMP about System Runlevel Changes...
[  OK  ] Started Update UTMP about System Runlevel Changes.
[  OK  ] Started Network Service.
[  OK  ] Reached target Network.
[  OK  ] Started Rebuild Hardware Database.
         Starting udev Coldplug all Devices...
[   11.175475] random: nonblocking pool is initialized
[  OK  ] Started udev Coldplug all Devices.
[  OK  ] Found device /dev/ttymxc0.
[   12.147221] CAN device driver interface
[   12.212498] spi2.0 supply vdd not found, using dummy regulator
[   12.248472] spi2.0 supply xceiver not found, using dummy regulator
[  OK  ] Created slice system-systemd\x2dbacklight.slice.
         Starting Load/Save Screen Backlight...htness of backlight:backlight...
         Mounting FUSE Control File System...
         Mounting Configuration File System...
[  OK  ] Started Load/Save Screen Backlight Brightness of backlight:backlight.
[FAILED] Failed to mount FUSE Control File System.
See 'systemctl status sys-fs-fuse-connections.mount' for details.
[FAILED] Failed to mount Configuration File System.
See 'systemctl status sys-kernel-config.mount' for details.
[  OK  ] Reached target Sound Card.
[  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[  OK  ] Started Opkg first boot configure.
[  OK  ] Started Run pending postinsts.
Welcome to emergency mode! After Press Enter for maintenance

So, I press enter, then journalctl -xb to see what happened.

Welcome to emergency mode! After Press Enter for maintenance
(or press Control-D to continue): 
sh-4.3# journalctl -xb
-- Logs begin at Thu 2017-10-05 02:33:16 UTC, end at Thu 2017-10-05 02:33:23 UTC
Oct 05 02:33:16 colibri-imx7 systemd-journald[172]: Runtime journal (/run/log/jo
-- Subject: Disk space used by the journal
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Runtime journal (/run/log/journal/) is currently using 6.2M.
-- Maximum allowed usage is set to 50.2M.
-- Leaving at least 75.4M free (of currently available 496.5M of disk space).
-- Enforced usage limit is thus 50.2M, of which 43.9M are still available.
-- 
-- The limits controlling how much disk space is used by the journal may
-- be configured with SystemMaxUse=, SystemKeepFree=, SystemMaxFileSize=,
-- RuntimeMaxUse=, RuntimeKeepFree=, RuntimeMaxFileSize= settings in
-- /etc/systemd/journald.conf. See journald.conf(5) for details.
Oct 05 02:33:16 colibri-imx7 systemd-journald[172]: System journal (/var/log/jou
-- Subject: Disk space used by the journal
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- System journal (/var/log/journal/) is currently using 2.0M.
-- Maximum allowed usage is set to 16.0M.
-- Leaving at least 1.5G free (of currently available 64.5G of disk space).
-- Enforced usage limit is thus 16.0M, of which 14.0M are still available.
-- 
-- The limits controlling how much disk space is used by the journal may
-- be configured with SystemMaxUse=, SystemKeepFree=, SystemMaxFileSize=,
-- RuntimeMaxUse=, RuntimeKeepFree=, RuntimeMaxFileSize= settings in
-- /etc/systemd/journald.conf. See journald.conf(5) for details.
Oct 05 02:33:16 colibri-imx7 systemd-journald[172]: Time spent on flushing to /v
Oct 05 02:33:16 colibri-imx7 kernel: Booting Linux on physical CPU 0x0
Oct 05 02:33:16 colibri-imx7 kernel: Initializing cgroup subsys cpu
Oct 05 02:33:16 colibri-imx7 kernel: Initializing cgroup subsys cpuacct
Oct 05 02:33:16 colibri-imx7 kernel: Linux version 4.1.44-2.7.4+gb1555bf (yocto@
Oct 05 02:33:16 colibri-imx7 kernel: CPU: ARMv7 Processor [410fc075] revision 5 
Oct 05 02:33:16 colibri-imx7 kernel: CPU: PIPT / VIPT nonaliasing data cache, VI
Oct 05 02:33:16 colibri-imx7 kernel: Machine model: Toradex Colibri iMX7D on Col
Oct 05 02:33:16 colibri-imx7 kernel: Reserved memory: created CMA memory pool at
Oct 05 02:33:16 colibri-imx7 kernel: Reserved memory: initialized node linux,cma
Oct 05 02:33:16 colibri-imx7 kernel: Memory policy: Data cache writealloc
Oct 05 02:33:16 colibri-imx7 kernel: PERCPU: Embedded 12 pages/cpu @b777f000 s16
Oct 05 02:33:16 colibri-imx7 kernel: Built 1 zonelists in Zone order, mobility g
Oct 05 02:33:16 colibri-imx7 kernel: Kernel command line: root=/dev/nfs rw nfsro
Oct 05 02:33:16 colibri-imx7 kernel: PID hash table entries: 4096 (order: 2, 163
Oct 05 02:33:16 colibri-imx7 kernel: Dentry cache hash table entries: 131072 (or
Oct 05 02:33:16 colibri-imx7 kernel: Inode-cache hash table entries: 65536 (orde
Oct 05 02:33:16 colibri-imx7 kernel: Memory: 898408K/1048576K available (6414K k
Oct 05 02:33:16 colibri-imx7 kernel: Virtual kernel memory layout:
                                         vector  : 0xffff0000 - 0xffff1000   (  
                                         fixmap  : 0xffc00000 - 0xfff00000   (30
                                         vmalloc : 0xc0800000 - 0xff000000   (10
                                         lowmem  : 0x80000000 - 0xc0000000   (10
                                         modules : 0x7f000000 - 0x80000000   (  
                                           .text : 0x80008000 - 0x80861c68   (85
                                           .init : 0x80862000 - 0x808b0000   ( 3
                                           .data : 0x808b0000 - 0x808f8dc0   ( 2
                                            .bss : 0x808fb000 - 0x8095a1ac   ( 3
Oct 05 02:33:16 colibri-imx7 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, 
Oct 05 02:33:16 colibri-imx7 kernel: Hierarchical RCU implementation.
Oct 05 02:33:16 colibri-imx7 kernel:         RCU restricting CPUs from NR_CPUS=4
Oct 05 02:33:16 colibri-imx7 kernel: RCU: Adjusting geometry for rcu_fanout_leaf
Oct 05 02:33:16 colibri-imx7 kernel: NR_IRQS:16 nr_irqs:16 16
Oct 05 02:33:16 colibri-imx7 kernel: Architected cp15 timer(s) running at 8.00MH
Oct 05 02:33:16 colibri-imx7 kernel: clocksource arch_sys_counter: mask: 0xfffff
Oct 05 02:33:16 colibri-imx7 kernel: sched_clock: 56 bits at 8MHz, resolution 12
Oct 05 02:33:16 colibri-imx7 kernel: Switching to timer-based delay loop, resolu
Oct 05 02:33:16 colibri-imx7 kernel: mxc_clocksource_init 3000000
Oct 05 02:33:16 colibri-imx7 kernel: Ignoring duplicate/late registration of rea
Oct 05 02:33:16 colibri-imx7 kernel: clocksource mxc_timer1: mask: 0xffffffff ma
Oct 05 02:33:16 colibri-imx7 kernel: Console: colour dummy device 80x30
Oct 05 02:33:16 colibri-imx7 kernel: console [tty1] enabled
Oct 05 02:33:16 colibri-imx7 kernel: Calibrating delay loop (skipped), value cal
Oct 05 02:33:16 colibri-imx7 kernel: pid_max: default: 32768 minimum: 301
Oct 05 02:33:16 colibri-imx7 kernel: Mount-cache hash table entries: 2048 (order
Oct 05 02:33:16 colibri-imx7 kernel: Mountpoint-cache hash table entries: 2048 (
Oct 05 02:33:16 colibri-imx7 kernel: Initializing cgroup subsys freezer
Oct 05 02:33:16 colibri-imx7 kernel: Initializing cgroup subsys debug
Oct 05 02:33:16 colibri-imx7 kernel: CPU: Testing write buffer coherency: ok
Oct 05 02:33:16 colibri-imx7 kernel: Setting up static identity map for 0x800082
Oct 05 02:33:16 colibri-imx7 kernel: Brought up 2 CPUs
Oct 05 02:33:16 colibri-imx7 kernel: SMP: Total of 2 processors activated (32.00
Oct 05 02:33:16 colibri-imx7 kernel: CPU: All CPU(s) started in SVC mode.
Oct 05 02:33:16 colibri-imx7 kernel: devtmpfs: initialized
Oct 05 02:33:16 colibri-imx7 kernel: VFP support v0.3: implementor 41 architectu
Oct 05 02:33:16 colibri-imx7 kernel: clocksource jiffies: mask: 0xffffffff max_c
Oct 05 02:33:16 colibri-imx7 kernel: futex hash table entries: 512 (order: 3, 32
Oct 05 02:33:16 colibri-imx7 kernel: pinctrl core: initialized pinctrl subsystem
Oct 05 02:33:16 colibri-imx7 kernel: NET: Registered protocol family 16
Oct 05 02:33:16 colibri-imx7 kernel: DMA: preallocated 256 KiB pool for atomic c
Oct 05 02:33:16 colibri-imx7 kernel: cpuidle: using governor ladder
Oct 05 02:33:16 colibri-imx7 kernel: cpuidle: using governor menu
Oct 05 02:33:16 colibri-imx7 kernel: DDR type is DDR3!
Oct 05 02:33:16 colibri-imx7 kernel: imx7d_enet_clk_sel: failed to get enet_out 
Oct 05 02:33:16 colibri-imx7 kernel: hw-breakpoint: found 5 (+1 reserved) breakp
Oct 05 02:33:16 colibri-imx7 kernel: hw-breakpoint: maximum watchpoint size is 8
Oct 05 02:33:16 colibri-imx7 kernel: imx7d-pinctrl 30270000.lpsr-gpr: initialize
Oct 05 02:33:16 colibri-imx7 kernel: imx7d-pinctrl 302c0000.iomuxc-lpsr: initial
Oct 05 02:33:16 colibri-imx7 kernel: imx7d-pinctrl 30330000.iomuxc: initialized 
Oct 05 02:33:16 colibri-imx7 kernel: MU is ready for cross core communication!
Oct 05 02:33:16 colibri-imx7 kernel: mxs-dma 33000000.dma-apbh: initialized
Oct 05 02:33:16 colibri-imx7 kernel: VCC_USB[1-4]: supplied by 5V
Oct 05 02:33:16 colibri-imx7 kernel: SCSI subsystem initialized
Oct 05 02:33:16 colibri-imx7 kernel: usbcore: registered new interface driver us
Oct 05 02:33:16 colibri-imx7 kernel: usbcore: registered new interface driver hu
Oct 05 02:33:16 colibri-imx7 kernel: usbcore: registered new device driver usb
Oct 05 02:33:16 colibri-imx7 kernel: 30800000.aips-bus:usbphy_nop1 supply vcc no
Oct 05 02:33:16 colibri-imx7 kernel: 30800000.aips-bus:usbphy_nop2 supply vcc no
Oct 05 02:33:16 colibri-imx7 kernel: i2c i2c-0: IMX I2C adapter registered
Oct 05 02:33:16 colibri-imx7 kernel: i2c i2c-0: can't use DMA
Oct 05 02:33:16 colibri-imx7 kernel: i2c i2c-3: IMX I2C adapter registered
Oct 05 02:33:16 colibri-imx7 kernel: i2c i2c-3: can't use DMA
Oct 05 02:33:16 colibri-imx7 kernel: Linux video capture interface: v2.00
Oct 05 02:33:16 colibri-imx7 kernel: pps_core: LinuxPPS API ver. 1 registered
Oct 05 02:33:16 colibri-imx7 kernel: pps_core: Software ver. 5.3.6 - Copyright 2
Oct 05 02:33:16 colibri-imx7 kernel: PTP clock support registered
Oct 05 02:33:16 colibri-imx7 kernel: Advanced Linux Sound Architecture Driver In
Oct 05 02:33:16 colibri-imx7 kernel: Switched to clocksource arch_sys_counter
Oct 05 02:33:16 colibri-imx7 kernel: NET: Registered protocol family 2
Oct 05 02:33:16 colibri-imx7 kernel: TCP established hash table entries: 8192 (o
Oct 05 02:33:16 colibri-imx7 kernel: TCP bind hash table entries: 8192 (order: 4
Oct 05 02:33:16 colibri-imx7 kernel: TCP: Hash tables configured (established 81
Oct 05 02:33:16 colibri-imx7 kernel: UDP hash table entries: 512 (order: 2, 1638
Oct 05 02:33:16 colibri-imx7 kernel: UDP-Lite hash table entries: 512 (order: 2,
Oct 05 02:33:16 colibri-imx7 kernel: NET: Registered protocol family 1
Oct 05 02:33:16 colibri-imx7 kernel: RPC: Registered named UNIX socket transport
Oct 05 02:33:16 colibri-imx7 kernel: RPC: Registered udp transport module.
Oct 05 02:33:16 colibri-imx7 kernel: RPC: Registered tcp transport module.
Oct 05 02:33:16 colibri-imx7 kernel: RPC: Registered tcp NFSv4.1 backchannel tra
Oct 05 02:33:16 colibri-imx7 kernel: imx rpmsg driver is registered.
Oct 05 02:33:16 colibri-imx7 kernel: Bus freq driver module loaded
Oct 05 02:33:16 colibri-imx7 kernel: VFS: Disk quotas dquot_6.6.0
Oct 05 02:33:16 colibri-imx7 kernel: VFS: Dquot-cache hash table entries: 1024 (
Oct 05 02:33:16 colibri-imx7 kernel: NFS: Registering the id_resolver key type
Oct 05 02:33:16 colibri-imx7 kernel: Key type id_resolver registered
Oct 05 02:33:16 colibri-imx7 kernel: Key type id_legacy registered
Oct 05 02:33:16 colibri-imx7 kernel: nfs4filelayout_init: NFSv4 File Layout Driv
Oct 05 02:33:16 colibri-imx7 kernel: ntfs: driver 2.1.32 [Flags: R/W].
Oct 05 02:33:16 colibri-imx7 kernel: fuse init (API version 7.23)
Oct 05 02:33:16 colibri-imx7 kernel: io scheduler noop registered
Oct 05 02:33:16 colibri-imx7 kernel: io scheduler deadline registered
Oct 05 02:33:16 colibri-imx7 kernel: io scheduler cfq registered (default)
Oct 05 02:33:16 colibri-imx7 kernel: backlight supply power not found, using dum
Oct 05 02:33:16 colibri-imx7 kernel: 30730000.lcdif supply lcd not found, using 
Oct 05 02:33:16 colibri-imx7 kernel: fbcvt: 640x480@60: CVT Name - .307M3
Oct 05 02:33:16 colibri-imx7 kernel: mxsfb 30730000.lcdif: failed to find mxc di
Oct 05 02:33:16 colibri-imx7 kernel: Console: switching to colour frame buffer d
Oct 05 02:33:16 colibri-imx7 kernel: mxsfb 30730000.lcdif: initialized
Oct 05 02:33:16 colibri-imx7 kernel: imx-sdma 30bd0000.sdma: no event needs to b
Oct 05 02:33:16 colibri-imx7 kernel: imx-sdma 30bd0000.sdma: loaded firmware 4.2
Oct 05 02:33:16 colibri-imx7 kernel: imx-sdma 30bd0000.sdma: initialized
Oct 05 02:33:16 colibri-imx7 kernel: 30860000.serial: ttymxc0 at MMIO 0x30860000
Oct 05 02:33:16 colibri-imx7 kernel: console [ttymxc0] enabled
Oct 05 02:33:16 colibri-imx7 kernel: 30890000.serial: ttymxc1 at MMIO 0x30890000
Oct 05 02:33:16 colibri-imx7 kernel: 30880000.serial: ttymxc2 at MMIO 0x30880000
Oct 05 02:33:16 colibri-imx7 kernel: loop: module loaded
Oct 05 02:33:16 colibri-imx7 kernel: nand: No NAND device found
Oct 05 02:33:16 colibri-imx7 kernel: spi_imx 30840000.ecspi: probed
Oct 05 02:33:16 colibri-imx7 kernel: pps pps0: new PPS source ptp0
Oct 05 02:33:16 colibri-imx7 kernel: libphy: fec_enet_mii_bus: probed
Oct 05 02:33:16 colibri-imx7 kernel: fec 30be0000.ethernet eth0: registered PHC 
Oct 05 02:33:16 colibri-imx7 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controlle
Oct 05 02:33:16 colibri-imx7 kernel: ehci-mxc: Freescale On-Chip EHCI Host drive
Oct 05 02:33:16 colibri-imx7 kernel: usbcore: registered new interface driver us
Oct 05 02:33:16 colibri-imx7 kernel: usbcore: registered new interface driver us
Oct 05 02:33:16 colibri-imx7 kernel: usbcore: registered new interface driver us
Oct 05 02:33:16 colibri-imx7 kernel: usbserial: USB Serial support registered fo
Oct 05 02:33:16 colibri-imx7 kernel: usbcore: registered new interface driver ft
Oct 05 02:33:16 colibri-imx7 kernel: usbserial: USB Serial support registered fo
Oct 05 02:33:16 colibri-imx7 kernel: usbcore: registered new interface driver pl
Oct 05 02:33:16 colibri-imx7 kernel: usbserial: USB Serial support registered fo
Oct 05 02:33:16 colibri-imx7 kernel: 30b10200.usbmisc supply vbus-wakeup not fou
Oct 05 02:33:16 colibri-imx7 kernel: 30b30200.usbmisc supply vbus-wakeup not fou
Oct 05 02:33:16 colibri-imx7 kernel: 30b20200.usbmisc supply vbus-wakeup not fou
Oct 05 02:33:16 colibri-imx7 kernel: imx_usb 30b10000.usb: Can't register ci_hdr
Oct 05 02:33:16 colibri-imx7 kernel: ci_hdrc ci_hdrc.0: EHCI Host Controller
Oct 05 02:33:16 colibri-imx7 kernel: ci_hdrc ci_hdrc.0: new USB bus registered, 
Oct 05 02:33:16 colibri-imx7 kernel: ci_hdrc ci_hdrc.0: USB 2.0 started, EHCI 1.
Oct 05 02:33:16 colibri-imx7 kernel: hub 1-0:1.0: USB hub found
Oct 05 02:33:16 colibri-imx7 kernel: hub 1-0:1.0: 1 port detected
Oct 05 02:33:16 colibri-imx7 kernel: mousedev: PS/2 mouse device common for all 
Oct 05 02:33:16 colibri-imx7 kernel: input: AD7879 Touchscreen as /devices/platf
Oct 05 02:33:16 colibri-imx7 kernel: rtc-ds1307 3-0068: oscillator failed, set t
Oct 05 02:33:16 colibri-imx7 kernel: rtc-ds1307 3-0068: rtc core: registered m41
Oct 05 02:33:16 colibri-imx7 kernel: snvs_rtc 30370000.snvs:snvs-rtc-lp: rtc cor
Oct 05 02:33:16 colibri-imx7 kernel: i2c /dev entries driver
Oct 05 02:33:16 colibri-imx7 kernel: imx2-wdt 30280000.wdog: timeout 60 sec (now
Oct 05 02:33:16 colibri-imx7 kernel: sdhci: Secure Digital Host Controller Inter
Oct 05 02:33:16 colibri-imx7 kernel: sdhci: Copyright(c) Pierre Ossman
Oct 05 02:33:16 colibri-imx7 kernel: sdhci-pltfm: SDHCI platform and OF driver h
Oct 05 02:33:16 colibri-imx7 kernel: /soc/aips-bus@30800000/usdhc@30b40000: volt
Oct 05 02:33:16 colibri-imx7 kernel: sdhci-esdhc-imx 30b40000.usdhc: Got CD GPIO
Oct 05 02:33:16 colibri-imx7 kernel: sdhci-esdhc-imx 30b40000.usdhc: No vqmmc re
Oct 05 02:33:16 colibri-imx7 kernel: mmc0: SDHCI controller on 30b40000.usdhc [3
Oct 05 02:33:16 colibri-imx7 kernel: caam 30900000.caam: Entropy delay = 3200
Oct 05 02:33:16 colibri-imx7 kernel: caam 30900000.caam: Instantiated RNG4 SH0
Oct 05 02:33:16 colibri-imx7 kernel: caam 30900000.caam: Instantiated RNG4 SH1
Oct 05 02:33:16 colibri-imx7 kernel: caam 30900000.caam: device ID = 0x0a1603000
Oct 05 02:33:16 colibri-imx7 kernel: caam 30900000.caam: job rings = 3, qi = 0
Oct 05 02:33:16 colibri-imx7 kernel: usb 1-1: new high-speed USB device number 2
Oct 05 02:33:16 colibri-imx7 kernel: caam algorithms registered in /proc/crypto
Oct 05 02:33:16 colibri-imx7 kernel: caam_jr 30901000.jr0: registering rng-caam
Oct 05 02:33:16 colibri-imx7 kernel: hidraw: raw HID events driver (C) Jiri Kosi
Oct 05 02:33:16 colibri-imx7 kernel: usbcore: registered new interface driver us
Oct 05 02:33:16 colibri-imx7 kernel: usbhid: USB HID core driver
Oct 05 02:33:16 colibri-imx7 kernel: coresight-tmc 30086000.etr: TMC initialized
Oct 05 02:33:16 colibri-imx7 kernel: coresight-tmc 30084000.etf: TMC initialized
Oct 05 02:33:16 colibri-imx7 kernel: coresight-tpiu 30087000.tpiu: TPIU initiali
Oct 05 02:33:16 colibri-imx7 kernel: coresight-funnel 30083000.funnel: FUNNEL in
Oct 05 02:33:16 colibri-imx7 kernel: coresight-funnel 30041000.funnel: FUNNEL in
Oct 05 02:33:16 colibri-imx7 kernel: coresight-replicator replicator: REPLICATOR
Oct 05 02:33:16 colibri-imx7 kernel: coresight-etm3x 3007c000.etm: ETM initializ
Oct 05 02:33:16 colibri-imx7 kernel: coresight-etm3x 3007d000.etm: ETM initializ
Oct 05 02:33:16 colibri-imx7 kernel: hub 1-1:1.0: USB hub found
Oct 05 02:33:16 colibri-imx7 kernel: hub 1-1:1.0: 4 ports detected
Oct 05 02:33:16 colibri-imx7 kernel: sgtl5000 0-000a: sgtl5000 revision 0x11
Oct 05 02:33:16 colibri-imx7 kernel: imx-sgtl5000 sound: sgtl5000 <-> 308a0000.s
Oct 05 02:33:16 colibri-imx7 kernel: Netfilter messages via NETLINK v0.30.
Oct 05 02:33:16 colibri-imx7 kernel: nfnl_acct: registering with nfnetlink.
Oct 05 02:33:16 colibri-imx7 kernel: nf_conntrack version 0.5.0 (16085 buckets, 
Oct 05 02:33:16 colibri-imx7 kernel: nf_tables: (c) 2007-2009 Patrick McHardy <k
Oct 05 02:33:16 colibri-imx7 kernel: ip_tables: (C) 2000-2006 Netfilter Core Tea
Oct 05 02:33:16 colibri-imx7 kernel: NET: Registered protocol family 10
Oct 05 02:33:16 colibri-imx7 kernel: ip6_tables: (C) 2000-2006 Netfilter Core Te
Oct 05 02:33:16 colibri-imx7 kernel: NET: Registered protocol family 17
Oct 05 02:33:16 colibri-imx7 kernel: bridge: automatic filtering via arp/ip/ip6t
Oct 05 02:33:16 colibri-imx7 kernel: Bridge firewalling registered
Oct 05 02:33:16 colibri-imx7 kernel: 8021q: 802.1Q VLAN Support v1.8
Oct 05 02:33:16 colibri-imx7 kernel: Key type dns_resolver registered
Oct 05 02:33:16 colibri-imx7 kernel: Registering SWP/SWPB emulation handler
Oct 05 02:33:16 colibri-imx7 kernel: registered taskstats version 1
Oct 05 02:33:16 colibri-imx7 kernel: ci_hdrc ci_hdrc.1: EHCI Host Controller
Oct 05 02:33:16 colibri-imx7 kernel: ci_hdrc ci_hdrc.1: new USB bus registered, 
Oct 05 02:33:16 colibri-imx7 kernel: ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.
Oct 05 02:33:16 colibri-imx7 kernel: hub 2-0:1.0: USB hub found
Oct 05 02:33:16 colibri-imx7 kernel: hub 2-0:1.0: 1 port detected
Oct 05 02:33:16 colibri-imx7 kernel: input: gpio-keys as /devices/platform/gpio-
Oct 05 02:33:16 colibri-imx7 kernel: rtc-ds1307 3-0068: hctosys: unable to read 
Oct 05 02:33:16 colibri-imx7 kernel: usb 1-1.1: new low-speed USB device number 
Oct 05 02:33:16 colibri-imx7 kernel: fec 30be0000.ethernet eth0: Freescale FEC P
Oct 05 02:33:16 colibri-imx7 kernel: IPv6: ADDRCONF(NETDEV_UP): eth0: link is no
Oct 05 02:33:16 colibri-imx7 kernel: input: Logitech USB Optical Mouse as /devic
Oct 05 02:33:16 colibri-imx7 kernel: hid-generic 0003:046D:C05A.0001: input,hidr
Oct 05 02:33:16 colibri-imx7 kernel: usb 1-1.2: new low-speed USB device number 
Oct 05 02:33:16 colibri-imx7 kernel: input: Logitech USB Keyboard as /devices/pl
Oct 05 02:33:16 colibri-imx7 kernel: hid-generic 0003:046D:C31C.0002: input,hidr
Oct 05 02:33:16 colibri-imx7 kernel: input: Logitech USB Keyboard as /devices/pl
Oct 05 02:33:16 colibri-imx7 kernel: hid-generic 0003:046D:C31C.0003: input,hidr
Oct 05 02:33:16 colibri-imx7 kernel: fec 30be0000.ethernet eth0: Link is Up - 10
Oct 05 02:33:16 colibri-imx7 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link b
Oct 05 02:33:16 colibri-imx7 kernel: IP-Config: Complete:
Oct 05 02:33:16 colibri-imx7 kernel:      device=eth0, hwaddr=00:14:2d:2f:7b:46,
Oct 05 02:33:16 colibri-imx7 kernel:      host=toradex, domain=, nis-domain=(non
Oct 05 02:33:16 colibri-imx7 kernel:      bootserver=192.168.10.1, rootserver=19
Oct 05 02:33:16 colibri-imx7 kernel: ALSA device list:
Oct 05 02:33:16 colibri-imx7 kernel:   #0: imx7-colibri-sgtl5000
Oct 05 02:33:16 colibri-imx7 kernel: VFS: Mounted root (nfs filesystem) on devic
Oct 05 02:33:16 colibri-imx7 kernel: devtmpfs: mounted
Oct 05 02:33:16 colibri-imx7 kernel: Freeing unused kernel memory: 312K
Oct 05 02:33:16 colibri-imx7 systemd[1]: System time before build time, advancin
Oct 05 02:33:16 colibri-imx7 kernel: random: systemd urandom read with 23 bits o
Oct 05 02:33:16 colibri-imx7 systemd[1]: systemd 230 running in system mode. (+P
Oct 05 02:33:16 colibri-imx7 systemd[1]: Detected architecture arm.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Set hostname to <colibri-imx7>.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Initializing machine ID from random gen
Oct 05 02:33:16 colibri-imx7 systemd[1]: Created slice User and Session Slice.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Listening on /dev/initctl Compatibility
Oct 05 02:33:16 colibri-imx7 systemd[1]: Reached target Remote File Systems.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Created slice System Slice.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Listening on Journal Socket (/dev/log).
Oct 05 02:33:16 colibri-imx7 systemd[1]: Reached target Slices.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Listening on Network Service Netlink So
Oct 05 02:33:16 colibri-imx7 systemd[1]: Listening on Journal Socket.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Starting Load Kernel Modules...
Oct 05 02:33:16 colibri-imx7 systemd[1]: Mounting Debug File System...
Oct 05 02:33:16 colibri-imx7 systemd[1]: Created slice system-getty.slice.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Listening on udev Control Socket.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Starting Create list of required static
Oct 05 02:33:16 colibri-imx7 systemd[1]: Started Dispatch Password Requests to C
Oct 05 02:33:16 colibri-imx7 systemd[1]: Listening on udev Kernel Socket.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Starting Remount Root and Kernel File S
Oct 05 02:33:16 colibri-imx7 systemd[1]: Started Forward Password Requests to Wa
Oct 05 02:33:16 colibri-imx7 systemd[1]: Reached target Paths.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Created slice system-serial\x2dgetty.sl
Oct 05 02:33:16 colibri-imx7 systemd[1]: Starting Journal Service...
Oct 05 02:33:16 colibri-imx7 systemd[1]: Starting Setup Virtual Console...
Oct 05 02:33:16 colibri-imx7 systemd[1]: Reached target Swap.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Mounting Temporary Directory...
Oct 05 02:33:16 colibri-imx7 systemd[1]: Started Load Kernel Modules.
Oct 05 02:33:16 colibri-imx7 systemd[1]: sys-kernel-debug.mount: Mount process e
Oct 05 02:33:16 colibri-imx7 systemd[1]: Failed to mount Debug File System.
Oct 05 02:33:16 colibri-imx7 systemd[1]: sys-kernel-debug.mount: Unit entered fa
Oct 05 02:33:16 colibri-imx7 systemd[1]: Started Create list of required static 
Oct 05 02:33:16 colibri-imx7 systemd[1]: systemd-remount-fs.service: Main proces
Oct 05 02:33:16 colibri-imx7 systemd[1]: Failed to start Remount Root and Kernel
Oct 05 02:33:16 colibri-imx7 systemd[1]: systemd-remount-fs.service: Unit entere
Oct 05 02:33:16 colibri-imx7 systemd[1]: systemd-remount-fs.service: Failed with
Oct 05 02:33:16 colibri-imx7 systemd[1]: Started Setup Virtual Console.
Oct 05 02:33:16 colibri-imx7 systemd[1]: tmp.mount: Mount process exited, code=e
Oct 05 02:33:16 colibri-imx7 systemd[1]: Failed to mount Temporary Directory.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Dependency failed for Network Time Sync
Oct 05 02:33:16 colibri-imx7 systemd-journald[172]: Journal started
-- Subject: The journal has been started
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- The system journal process has started up, opened the journal
-- files for writing and is now ready to process requests.
Oct 05 02:33:16 colibri-imx7 systemd-modules-load[159]: Inserted module 'libcomp
Oct 05 02:33:16 colibri-imx7 systemd-remount-fs[166]: /bin/mount for /proc exite
Oct 05 02:33:16 colibri-imx7 mount[160]: mount: only root can use "--types" opti
Oct 05 02:33:16 colibri-imx7 systemd-remount-fs[166]: /bin/mount for / exited wi
Oct 05 02:33:16 colibri-imx7 systemd-remount-fs[166]: /bin/mount for /dev/pts ex
Oct 05 02:33:16 colibri-imx7 systemd-remount-fs[166]: /bin/mount for /run exited
Oct 05 02:33:16 colibri-imx7 systemd-remount-fs[166]: mount: only root can use "
Oct 05 02:33:16 colibri-imx7 systemd-remount-fs[166]: mount: only root can use "
Oct 05 02:33:16 colibri-imx7 mount[175]: mount: only root can use "--options" op
Oct 05 02:33:16 colibri-imx7 systemd-remount-fs[166]: mount: only root can use "
Oct 05 02:33:16 colibri-imx7 systemd-remount-fs[166]: mount: only root can use "
Oct 05 02:33:16 colibri-imx7 systemd[1]: systemd-timesyncd.service: Job systemd-
Oct 05 02:33:16 colibri-imx7 systemd[1]: tmp.mount: Unit entered failed state.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Started Journal Service.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Reached target System Time Synchronized
-- Subject: Unit time-sync.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit time-sync.target has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Starting Flush Journal to Persistent St
-- Subject: Unit systemd-journal-flush.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-journal-flush.service has begun starting up.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Starting Rebuild Hardware Database...
-- Subject: Unit systemd-hwdb-update.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-hwdb-update.service has begun starting up.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Starting Create System Users...
-- Subject: Unit systemd-sysusers.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-sysusers.service has begun starting up.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Starting Apply Kernel Variables...
-- Subject: Unit systemd-sysctl.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-sysctl.service has begun starting up.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Mounting Configuration File System...
-- Subject: Unit sys-kernel-config.mount has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sys-kernel-config.mount has begun starting up.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Mounting FUSE Control File System...
-- Subject: Unit sys-fs-fuse-connections.mount has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sys-fs-fuse-connections.mount has begun starting up.
Oct 05 02:33:16 colibri-imx7 systemd[1]: Started Flush Journal to Persistent Sto
-- Subject: Unit systemd-journal-flush.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-journal-flush.service has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:16 colibri-imx7 mount[181]: mount: only root can use "--types" opti
Oct 05 02:33:16 colibri-imx7 mount[182]: mount: only root can use "--types" opti
Oct 05 02:33:16 colibri-imx7 systemd[1]: sys-kernel-config.mount: Mount process 
Oct 05 02:33:16 colibri-imx7 systemd[1]: Failed to mount Configuration File Syst
-- Subject: Unit sys-kernel-config.mount has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sys-kernel-config.mount has failed.
-- 
-- The result is failed.
Oct 05 02:33:16 colibri-imx7 systemd-sysctl[180]: Couldn't write 'fq_codel' to '
Oct 05 02:33:16 colibri-imx7 systemd-sysctl[180]: Couldn't write '16' to 'kernel
Oct 05 02:33:16 colibri-imx7 systemd[1]: sys-kernel-config.mount: Unit entered f
Oct 05 02:33:16 colibri-imx7 systemd[1]: Started Apply Kernel Variables.
-- Subject: Unit systemd-sysctl.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-sysctl.service has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:16 colibri-imx7 systemd[1]: sys-fs-fuse-connections.mount: Mount pr
Oct 05 02:33:16 colibri-imx7 systemd[1]: Failed to mount FUSE Control File Syste
-- Subject: Unit sys-fs-fuse-connections.mount has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sys-fs-fuse-connections.mount has failed.
-- 
-- The result is failed.
Oct 05 02:33:16 colibri-imx7 systemd[1]: sys-fs-fuse-connections.mount: Unit ent
Oct 05 02:33:16 colibri-imx7 systemd-sysusers[179]: Creating group wheel with gi
Oct 05 02:33:16 colibri-imx7 systemd-sysusers[179]: Creating group nobody with g
Oct 05 02:33:17 colibri-imx7 systemd[1]: Started Create System Users.
-- Subject: Unit systemd-sysusers.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-sysusers.service has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Starting Create Static Device Nodes in 
-- Subject: Unit systemd-tmpfiles-setup-dev.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-setup-dev.service has begun starting up.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Started Create Static Device Nodes in /
-- Subject: Unit systemd-tmpfiles-setup-dev.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-setup-dev.service has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Reached target Local File Systems (Pre)
-- Subject: Unit local-fs-pre.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit local-fs-pre.target has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Mounting /var/volatile...
-- Subject: Unit var-volatile.mount has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit var-volatile.mount has begun starting up.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Starting udev Kernel Device Manager...
-- Subject: Unit systemd-udevd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-udevd.service has begun starting up.
Oct 05 02:33:17 colibri-imx7 mount[191]: mount: only root can use "--types" opti
Oct 05 02:33:17 colibri-imx7 systemd[1]: var-volatile.mount: Mount process exite
Oct 05 02:33:17 colibri-imx7 systemd[1]: Failed to mount /var/volatile.
-- Subject: Unit var-volatile.mount has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit var-volatile.mount has failed.
-- 
-- The result is failed.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Dependency failed for Bind mount volati
-- Subject: Unit var-volatile-lib.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit var-volatile-lib.service has failed.
-- 
-- The result is dependency.
Oct 05 02:33:17 colibri-imx7 systemd[1]: var-volatile-lib.service: Job var-volat
Oct 05 02:33:17 colibri-imx7 systemd[1]: Dependency failed for Bind mount volati
-- Subject: Unit var-volatile-srv.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit var-volatile-srv.service has failed.
-- 
-- The result is dependency.
Oct 05 02:33:17 colibri-imx7 systemd[1]: var-volatile-srv.service: Job var-volat
Oct 05 02:33:17 colibri-imx7 systemd[1]: Dependency failed for Bind mount volati
-- Subject: Unit var-volatile-cache.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit var-volatile-cache.service has failed.
-- 
-- The result is dependency.
Oct 05 02:33:17 colibri-imx7 systemd[1]: var-volatile-cache.service: Job var-vol
Oct 05 02:33:17 colibri-imx7 systemd[1]: Dependency failed for Bind mount volati
-- Subject: Unit var-volatile-spool.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit var-volatile-spool.service has failed.
-- 
-- The result is dependency.
Oct 05 02:33:17 colibri-imx7 systemd[1]: var-volatile-spool.service: Job var-vol
Oct 05 02:33:17 colibri-imx7 systemd[1]: Dependency failed for Local File System
-- Subject: Unit local-fs.target has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit local-fs.target has failed.
-- 
-- The result is dependency.
Oct 05 02:33:17 colibri-imx7 systemd[1]: local-fs.target: Job local-fs.target/st
Oct 05 02:33:17 colibri-imx7 systemd[1]: local-fs.target: Triggering OnFailure= 
Oct 05 02:33:17 colibri-imx7 systemd[1]: var-volatile.mount: Unit entered failed
Oct 05 02:33:17 colibri-imx7 systemd[1]: Reached target Timers.
-- Subject: Unit timers.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit timers.target has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Reached target Login Prompts.
-- Subject: Unit getty.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit getty.target has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Reached target Sockets.
-- Subject: Unit sockets.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sockets.target has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Started Emergency Shell.
-- Subject: Unit emergency.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit emergency.service has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Reached target Emergency Mode.
-- Subject: Unit emergency.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit emergency.target has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Starting Rebuild Journal Catalog...
-- Subject: Unit systemd-journal-catalog-update.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-journal-catalog-update.service has begun starting up.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Starting Create Volatile Files and Dire
-- Subject: Unit systemd-tmpfiles-setup.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-setup.service has begun starting up.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Starting Rebuild Dynamic Linker Cache..
-- Subject: Unit ldconfig.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit ldconfig.service has begun starting up.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Starting Load/Save Random Seed...
-- Subject: Unit systemd-random-seed.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-random-seed.service has begun starting up.
Oct 05 02:33:17 colibri-imx7 systemd[1]: Started Load/Save Random Seed.
-- Subject: Unit systemd-random-seed.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-random-seed.service has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:17 colibri-imx7 systemd-udevd[192]: Invalid rule /lib/udev/rules.d/
Oct 05 02:33:18 colibri-imx7 systemd[1]: Started Rebuild Journal Catalog.
-- Subject: Unit systemd-journal-catalog-update.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-journal-catalog-update.service has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:18 colibri-imx7 systemd[1]: Started udev Kernel Device Manager.
-- Subject: Unit systemd-udevd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-udevd.service has finished starting up.
-- 
-- The start-up result is done.
Oct 05 02:33:18 colibri-imx7 systemd[1]: Starting Network Service...

I assume there is problem to mount other fs as said by the log and journalctl.

Many thanks in advance !

Finally I solved the problem myself.

I had to copy the rootfs to /srv/nfs with root user.

Glad you got it solved and thanks for the feedback!

Hi @arnaud_infoteam
Can you please elaborate how to do this ? i am having the same problem, the kernel goes into the Emergency mode.
I copied the files as a root user. Is that what you meant by the answer or something else ?
Thanks.

Yes exactly !

But I haven’t use yocto for a long time. I use buildroot. But the command should be similar:

sudo tar xvf output/images/rootfs.tar -C /srv/nfs/

If you have the emergency mode. That might mean the kernel is just unable to mount the rootfs. So check whether the nfs server is running correctly.

@arnaud_infoteam
This worked out.
Thank you.

@mtlc you’re welcome. I’m glad to see other persons stuck with same problems