This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Linux boot failure: "mount: mounting proc on /proc failed: No such file or directory"

Having downloaded the following SDK, I am trying to boot Linux on the Keystone 2 EVM using pre-built components within the SDK.  

ti-processor-sdk-linux-k2hk-evm-02.00.01.07-Linux-x86-Install.bin

Linux boot fails with the error message "mount: mounting proc on /proc failed: No such file or directory" and additional error messages (excerpt below; full earlyprintk attached).

/cfs-file/__key/communityserver-discussions-components-files/791/3482.2016_2D00_03_2D00_23_5F00_earlyprintk.txt

I'm using the following components:
from the ti-processor-sdk-linux-k2hk-evm-02.00.01.07/board-support/prebuilt-images folder:
k2hk-evm.dtb, skern-k2hk.bin, zImage-k2hk-evm.bin


from the ti-processor-sdk-linux-k2hk-evm-02.00.01.07/filesystem folder:
arago-base-tisdk-image-k2hk-evm.tar.gz

Are any of the above components incompatible with each other or with the Keystone 2 EVM?

Thanks,
John

[ 8.380055] IP-Config: Complete:
[ 8.383295] device=eth0, hwaddr=20:c3:8f:48:02:7e, ipaddr=192.168.168.25, mask=255.255.255.0, gw=255.255.255.255
[ 8.393983] host=tmac-evm, domain=, nis-domain=(none)
[ 8.399485] bootserver=192.168.168.2, rootserver=192.168.168.2, rootpath=
[ 8.417933] Freeing unused kernel memory: 248K (c06ce000 - c070c000)
INIT: version 2.88 booting
mount: mounting proc on /proc failed: No such file or directory
/etc/rcS.d/S00psplash.sh: line 10: /proc/cmdline: No such file or directory
/etc/rcS.d/S00psplash.sh: line 28: cannot redirect standard input from /dev/null: No such file or directory
Error Cannot open /dev/tty0: No such file or directory
Error opening /dev/fb0: No such file or directory
mount: can't read '/proc/mounts': No such file or directory

  • Hi John,

    Please ensure that the correct filesystem is used to boot. Are you working on NFS, ramfs or ubifs booting?
    From the above message, I understand that rootpath variable is empty which means filesystem path is not defined in u-boot.

    There are plenty of threads discussed in e2e on this issue. I recommend you to search on e2e for solutions. Please get back to us if you can not solve issue.

    Thank you.
  • Dear John,
    The problem seems to be problem with permission issue in filesystem.

    Can you please set full permission to filesystem (files & folders) ?

    chmod 777 -R filesystem
  • Titus, I did as you suggest but the failure mode is the same.

    Thanks,

    John

  • Raja, I am using ramfs.  I have previously been able to boot Linux without defining the rootpath variable in u-boot.  Does u-boot use reasonable defaults when the variable is undefined?

    Here is the value of bootargs:

    bootargs=console=ttyS0,115200n8 rootwait=1 earlyprintk rdinit=/sbin/init rw root=/dev/ram0 initrd=0x802000000,30M ip=192.168.168.25:192.168.168.2::255.255.255.0:tmac-evm:eth0:off panic=1

    u-boot retrieves the following files via FTP to the following addresses:

    getfdt=tftp 0x87000000 k2hk-evm.dtb
    getfs=tftp 0x82000000 arago-base-tisdk-image-k2hk-evm.cpio.gz
    getkern=tftp 0x88000000 uImage-k2hk-evm.bin
    getmon=tftp 0x0c5f0000 skern-k2hk.bin

    All of those files are from ti-processor-sdk-linux-k2hk-evm-02.00.01.07-Linux-x86.  Are the target addresses correct?

    Unpacking the filesystem, I see that the /proc directory is empty.  Should it contain something?

    Thanks,

    John

  • Dear John,

    Unpacking the filesystem, I see that the /proc directory is empty. Should it contain something?

    You won't see anything in proc directory for filesystem, it is (proc) pseudo filesystem, it would create while booting.


    I am using ramfs. I have previously been able to boot Linux without defining the rootpath variable in u-boot. Does u-boot use reasonable defaults when the variable is undefined?

    processors.wiki.ti.com/.../MCSDK_UG_Chapter_Exploring
  • Titus, the first sign of failure I see is "mounting proc on /proc failed".  Does this mean that the boot sequence failed to create the pseudo filesystem?  What's the next step for debugging this?

    [ 8.380055] IP-Config: Complete:
    [ 8.383295] device=eth0, hwaddr=20:c3:8f:48:02:7e, ipaddr=192.168.168.25, mask=255.255.255.0, gw=255.255.255.255
    [ 8.393983] host=tmac-evm, domain=, nis-domain=(none)
    [ 8.399485] bootserver=192.168.168.2, rootserver=192.168.168.2, rootpath=
    [ 8.417933] Freeing unused kernel memory: 248K (c06ce000 - c070c000)
    INIT: version 2.88 booting
    mount: mounting proc on /proc failed: No such file or directory

    Thanks,

    John

  • Dear John,
    Can you please do UBIFS booting from NAND flash ?
    I've tried the NAND boot with UBI image given by TI processor SDK package, didn't get any problem.
  • Titus, I will try to run UBIFS from NAND flash as you suggest, but it's important that I also implement TFTP booting using ramfs because our application will use it.  Is this a use case TI Linux does not intend to support?  

    Thanks,
    John

  • Dear John,

    TFTP booting using ramfs because our application will use it. Is this a use case TI Linux does not intend to support?

    No.
    I will also try RAMFS booting and update you.
  • Thanks, Titus.  Getting this running will be a huge step forward for our project.

    John

  • I tried to update the EVM for UBI as follows but something went wrong:

    - rename  to keystone-evm-ubifs.ubi on the TFTP host

    - from u-boot:
       tftp ${addr_ubi} ${name_ubi}
      run burn_ubi
      reset

    Here's the result:

    TCI6638 EVM # tftp ${addr_ubi} ${name_ubi}
    Using TCI6638_EMAC device
    TFTP from server 192.168.168.2; our IP address is 192.168.168.25
    Filename 'keystone-evm-ubifs.ubi'.
    Load address: 0x82000000
    Loading: #################################################################
    ...
           ###############################################################
           1.8 MiB/s
    done

    Bytes transferred = 41943040 (2800000 hex)

    TCI6638 EVM # run burn_ubi
    NAND erase.part: device 0 offset 0x180000, size 0x7e80000
    Skipping bad block at  0x00c80000
    Skipping bad block at  0x00ca0000
    Erasing at 0x7fe0000 -- 100% complete.
    OK

    NAND write: device 0 offset 0x180000, size 0x2800000
    Skip bad block 0x00c80000
    Skip bad block 0x00ca0000
    41943040 bytes written: OK

    TCI6638 EVM # reset

    resetting ...
    U-Boot SPL 2013.01-00004-g0c2f8a2 (Aug 16 2013 - 19:04:15)
    SF: Detected N25Q128A with page size 64 KiB, total 16 MiB
    U-Boot 2013.01-00004-g0c2f8a2 (Aug 16 2013 - 19:04:15)
    I2C:   ready
    DRAM:  2 GiB
    NAND:  512 MiB
    Net:   TCI6638_EMAC, TCI6638_EMAC1
    Hit any key to stop autoboot:  0

    Creating 1 MTD partitions on "nand0":
    0x000000180000-0x000008000000 : "mtd=2"
    UBI: attaching mtd1 to ubi0
    UBI: physical eraseblock size:   131072 bytes (128 KiB)
    UBI: logical eraseblock size:    126976 bytes
    UBI: smallest flash I/O unit:    2048
    UBI: VID header offset:          2048 (aligned 2048)
    UBI: data offset:                4096
    UBI: fixable bit-flip detected at PEB 281
    UBI: volume 0 ("rootfs") re-sized from 318 to 996 LEBs
    UBI: attached mtd1 to ubi0
    UBI: MTD device name:            "mtd=2"
    UBI: MTD device size:            126 MiB
    UBI: number of good PEBs:        1010
    UBI: number of bad PEBs:         2
    UBI: max. allowed volumes:       128
    UBI: wear-leveling threshold:    4096
    UBI: number of internal volumes: 1
    UBI: number of user volumes:     1
    UBI: available PEBs:             0
    UBI: total number of reserved PEBs: 1010
    UBI: number of PEBs reserved for bad PEB handling: 10
    UBI: max/mean erase counter: 1/0
    UBIFS error (pid 0): ubifs_get_sb: cannot open "ubi:boot", error -19
    UBIFS error (pid 0): ubifs_mount: Error reading superblock on volume 'ubi:boot' errno=-19!
    ubifsmount - mount UBIFS volume

    Usage:
    ubifsmount <volume-name>
      - mount 'volume-name' volume

    TCI6638 EVM #

    Thanks,

    John

  • Please make sure that you are using appropriate u-boot on your board.
    Use processor SDK u-boot.

    u-boot# env default -a
    u-boot# setenv ipaddr 10.100.1.10
    u-boot# setenv serverip 10.100.1.20
    u-boot# saveenv
    u-boot# run get_ubi_net
    u-boot# run burn_ubi
  • Dear John,

    I was able to boot RAMFS along with zImage using processor SDK package.

    The following boot command and args I used to do boot the RAMFS.

    I have rebuilt the kernel along with RAMFS files and folders. (I built kernel image with initramfs )

    make menuconfig ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-

    General Setup ->

      Initramfs source file(s)   -->

    Provide the location where you have filesystem.

    U-Boot SPL 2015.07 (Apr 05 2016 - 20:26:28)
    
    
    U-Boot 2015.07 (Apr 05 2016 - 20:26:28 -0400)
    
    CPU: 66AK2Hx SR1.1
    I2C:   ready
    DRAM:  DDR3A Speed will be configured for 1333 Operation.
    Detected SO-DIMM [SQR-SD3T-2G1333SED]
    DRAM: 2 GiB (includes reported below)
    2 GiB
    NAND:  512 MiB
    Net:   Phy 2 not found
    Phy 3 not found
    K2HK_EMAC, K2HK_EMAC1
    Error: K2HK_EMAC1 address not set.
    , K2HK_EMAC2
    Error: K2HK_EMAC2 address not set.
    , K2HK_EMAC3
    Error: K2HK_EMAC3 address not set.
    
    Hit any key to stop autoboot:  0
    U-Boot#
    U-Boot# setenv bootcmd 'tftpboot 0x88000000 ${tftp_root}/k2hk-evm_own.dtb;tftpboot 0x82000000 ${tftp_root}/zImage_own_ram;tftpboot 0x0c5f0000 ${tftp_root}/skern-k2hk.bin;mon_install 0x0c5f0000;bootz 0x82000000 0x88080000 0x88000000'
    U-Boot# saveenv
    Saving Environment to NAND...
    Erasing NAND...
    Erasing at 0x120000 -- 100% complete.
    Writing to NAND... OK
    U-Boot# boot
    
    K2HK_EMAC Waiting for SGMII auto negotiation to complete. done
    Using K2HK_EMAC device
    TFTP from server 10.100.1.36; our IP address is 10.100.1.38
    Filename 'processor_sdk_02_00_01_07/k2hk-evm_own.dtb'.
    Load address: 0x88000000
    Loading: #########
             500 KiB/s
    done
    Bytes transferred = 40992 (a020 hex)
    
    K2HK_EMAC Waiting for SGMII auto negotiation to complete. done
    Using K2HK_EMAC device
    TFTP from server 10.100.1.36; our IP address is 10.100.1.38
    Filename 'processor_sdk_02_00_01_07/zImage_own_ram'.
    Load address: 0x82000000
    Loading: #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #################################################################
             #########################
             1.6 MiB/s
    done
    Bytes transferred = 32406256 (1ee7af0 hex)
    
    K2HK_EMAC Waiting for SGMII auto negotiation to complete. done
    Using K2HK_EMAC device
    TFTP from server 10.100.1.36; our IP address is 10.100.1.38
    Filename 'processor_sdk_02_00_01_07/skern-k2hk.bin'.
    Load address: 0xc5f0000
    Loading: #########
             1.4 MiB/s
    done
    Bytes transferred = 45056 (b000 hex)
    K2_BM_15.07-39-g035329c SoC:k2hk built:17:53:33, Jan  8 2016
    
    ## installed monitor, freq [200000000], status 0
    Kernel image @ 0x82000000 [ 0x000000 - 0x1ee7af0 ]
    ## Loading init Ramdisk from Legacy Image at 88080000 ...
       Image Name:   initramfs
       Created:      2016-05-06   9:34:58 UTC
       Image Type:   ARM Linux RAMDisk Image (gzip compressed)
       Data Size:    58161725 Bytes = 55.5 MiB
       Load Address: 00000000
       Entry Point:  00000000
       Verifying Checksum ... OK
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       Loading Ramdisk to 8c888000, end 8ffffa3d ... OK
       Loading Device Tree to 8c87a000, end 8c88701f ... OK
    
    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.13-g8dc6617 (root@e2e) (gcc version 4.8.3 20140401 (prerelease) (crosstool-NG linaro-1.13.1-4.8-2014.04 - Linaro GCC 4.8-2014.04) ) #5 SMP PREEMPT Fri May 6 15:12:11 IST 2016
    [    0.000000] CPU: ARMv7 Processor [412fc0f4] revision 4 (ARMv7), cr=30c5387d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
    [    0.000000] Machine model: Texas Instruments Keystone 2 Kepler/Hawking EVM
    [    0.000000] Switching physical address space to 0x800000000
    [    0.000000] INITRD: 0x88080000+0x03c00000 is not a memory region - disabling initrd
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000081f800000, size 8 MiB
    [    0.000000] Reserved memory: initialized node dsp_common_cma_pool, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000820000000, size 512 MiB
    [    0.000000] Reserved memory: initialized node dsp_reserved_mpm_area, compatible id shared-dma-pool
    [    0.000000] cma: Reserved 16 MiB at 0x000000085f000000
    [    0.000000] Forcing write-allocate cache policy for SMP
    [    0.000000] Memory policy: Data cache writealloc
    [    0.000000] PERCPU: Embedded 12 pages/cpu @deb9e000 s17536 r8192 d23424 u49152
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 260624
    [    0.000000] Kernel command line: console=ttyS0,115200n8 rootwait=1 earlyprintk rdinit=/sbin/init rw root=/dev/ram0 initrd=0x88080000,60M ip=dhcp panic=1
    [    0.000000] log_buf_len individual max cpu contribution: 4096 bytes
    [    0.000000] log_buf_len total cpu_extra contributions: 12288 bytes
    [    0.000000] log_buf_len min size: 16384 bytes
    [    0.000000] log_buf_len: 32768 bytes
    [    0.000000] early log buf free: 14080(85%)
    [    0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
    [    0.000000] Memory: 922156K/1048576K available (5177K kernel code, 343K rwdata, 1844K rodata, 28424K init, 174K bss, 101844K reserved, 24576K cma-reserved, 507904K highmem)
    [    0.000000] Virtual kernel memory layout:
    [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
    [    0.000000]     vmalloc : 0xf0000000 - 0xff000000   ( 240 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xef800000   ( 760 MB)
    [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
    [    0.000000]       .text : 0xc0008000 - 0xc06e3800   (7022 kB)
    [    0.000000]       .init : 0xc06e4000 - 0xc22a6000   (28424 kB)
    [    0.000000]       .data : 0xc22a6000 - 0xc22fbc14   ( 344 kB)
    [    0.000000]        .bss : 0xc22fe000 - 0xc23299f0   ( 175 kB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [    0.000000] Preemptible hierarchical RCU implementation.
    [    0.000000]  Additional per-CPU info printed with stalls.
    [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [    0.000000] Architected cp15 timer(s) running at 200.00MHz (virt).
    [    0.000000] clocksource arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000003] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.000012] Switching to timer-based delay loop, resolution 5ns
    [    0.000168] keystone timer clock @200000000 Hz
    [    0.000355] Console: colour dummy device 80x30
    [    0.000370] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000)
    [    0.000381] pid_max: default: 4096 minimum: 301
    [    0.000449] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [    0.000457] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [    0.000905] Initializing cgroup subsys blkio
    [    0.000918] Initializing cgroup subsys devices
    [    0.000930] Initializing cgroup subsys freezer
    [    0.000948] CPU: Testing write buffer coherency: ok
    [    0.001142] /cpus/cpu@0 missing clock-frequency property
    [    0.001166] /cpus/cpu@1 missing clock-frequency property
    [    0.001188] /cpus/cpu@2 missing clock-frequency property
    [    0.001210] /cpus/cpu@3 missing clock-frequency property
    [    0.001219] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    [    0.001255] Setting up static identity map for 0x800082c0 - 0x800083cc
    [    0.066346] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
    [    0.086355] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002
    [    0.106385] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003
    [    0.106474] Brought up 4 CPUs
    [    0.106490] SMP: Total of 4 processors activated (1600.00 BogoMIPS).
    [    0.106496] CPU: All CPU(s) started in SVC mode.
    [    0.106916] devtmpfs: initialized
    [    0.115948] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
    [    0.116270] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.116975] pinctrl core: initialized pinctrl subsystem
    [    0.117226] NET: Registered protocol family 16
    [    0.118023] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.126294] irq: no irq domain found for /soc/keystone_irq@26202a0 !
    [    0.126513] irq: no irq domain found for /soc/keystone_irq@26202a0 !
    [    0.126728] irq: no irq domain found for /soc/keystone_irq@26202a0 !
    [    0.126943] irq: no irq domain found for /soc/keystone_irq@26202a0 !
    [    0.127166] irq: no irq domain found for /soc/keystone_irq@26202a0 !
    [    0.127381] irq: no irq domain found for /soc/keystone_irq@26202a0 !
    [    0.127597] irq: no irq domain found for /soc/keystone_irq@26202a0 !
    [    0.127813] irq: no irq domain found for /soc/keystone_irq@26202a0 !
    [    0.133989] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
    [    0.133997] hw-breakpoint: maximum watchpoint size is 8 bytes.
    [    0.143516] vgaarb: loaded
    [    0.143814] SCSI subsystem initialized
    [    0.144232] usbcore: registered new interface driver usbfs
    [    0.144323] usbcore: registered new interface driver hub
    [    0.144421] usbcore: registered new device driver usb
    [    0.146426] Switched to clocksource arch_sys_counter
    [    0.177209] NET: Registered protocol family 2
    [    0.177698] TCP established hash table entries: 4096 (order: 2, 16384 bytes)
    [    0.177731] TCP bind hash table entries: 4096 (order: 3, 32768 bytes)
    [    0.177786] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.177833] UDP hash table entries: 256 (order: 1, 8192 bytes)
    [    0.177849] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
    [    0.177978] NET: Registered protocol family 1
    [    0.178164] RPC: Registered named UNIX socket transport module.
    [    0.178170] RPC: Registered udp transport module.
    [    0.178176] RPC: Registered tcp transport module.
    [    0.178181] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    1.432412] CPU PMU: Failed to parse /pmu/interrupt-affinity[0]
    [    1.432451] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
    [    1.433462] platform alarmtimer: set dma_pfn_offset00780000
    [    1.434162] futex hash table entries: 16 (order: -2, 1024 bytes)
    [    1.446406] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
    [    1.446548] ntfs: driver 2.1.32 [Flags: R/O].
    [    1.446895] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
    [    1.448515] NET: Registered protocol family 38
    [    1.448585] bounce: pool size: 64 pages
    [    1.448765] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [    1.448779] io scheduler noop registered
    [    1.448792] io scheduler deadline registered
    [    1.448822] io scheduler cfq registered (default)
    [    1.448966] keystone_irq soc:keystone_irq@26202a0: irqchip registered, nr_irqs 28
    [    1.450582] keystone-navigator-qmss soc:qmss@2a40000: qmgr start queue 0, number of queues 8192
    [    1.450704] keystone-navigator-qmss soc:qmss@2a40000: added qmgr start queue 0, num of queues 8192, reg_peek f01c0000, reg_status f01e2000, reg_config f01e4000, reg_region f01e6000, reg_push f0200000, reg_pop f0240000
    [    1.450715] keystone-navigator-qmss soc:qmss@2a40000: qmgr start queue 8192, number of queues 8192
    [    1.450827] keystone-navigator-qmss soc:qmss@2a40000: added qmgr start queue 8192, num of queues 8192, reg_peek f0280000, reg_status f01e8400, reg_config f01ea000, reg_region f01ec000, reg_push f02c0000, reg_pop f0300000
    [    1.450957] keystone-navigator-qmss soc:qmss@2a40000: failed to get firmware for pdsp
    [    1.451681] keystone-navigator-qmss soc:qmss@2a40000: pdsp id 0 not started for range acc-low-0
    [    1.452299] keystone-navigator-dma soc:knav_dmas@0: DMA dma_gbe registered 41 logical channels, flows 32, tx chans: 9, rx chans: 24
    [    1.452409] keystone-navigator-dma soc:knav_dmas@0: DMA dma_xgbe registered 48 logical channels, flows 32, tx chans: 16, rx chans: 16
    [    1.499714] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [    1.499799] platform serial8250: set dma_pfn_offset00780000
    [    1.501247] console [ttyS0] disabled
    [    1.501299] 2530c00.serial: ttyS0 at MMIO 0x2530c00 (irq = 26, base_baud = 12500000) is a 16550A
    [    2.330967] console [ttyS0] enabled
    [    2.335120] 2531000.serial: ttyS1 at MMIO 0x2531000 (irq = 27, base_baud = 12500000) is a 16550A
    [    2.348596] loop: module loaded
    [    2.351902] at24 0-0050: 131072 byte 24c1024 EEPROM, writable, 1 bytes/write
    [    2.360261] m25p80 spi32766.0: n25q128a11 (16384 Kbytes)
    [    2.365606] 2 ofpart partitions found on MTD device spi32766.0
    [    2.371474] Creating 2 MTD partitions on "spi32766.0":
    [    2.376643] 0x000000000000-0x000000080000 : "u-boot-spl"
    [    2.382706] 0x000000080000-0x000001000000 : "misc"
    [    2.388206] spi_davinci 21000400.spi: Controller at 0xf0234400
    [    2.394410] spi_davinci 21000600.spi: Controller at 0xf0236600
    [    2.400625] spi_davinci 21000800.spi: Controller at 0xf0238800
    [    2.456442] davinci_mdio 2090300.mdio: davinci mdio revision 1.5
    [    2.462468] libphy: 2090300.mdio: probed
    [    2.471492] davinci_mdio 2090300.mdio: phy[0]: device 2090300.mdio:00, driver Marvell 88E1111
    [    2.480071] davinci_mdio 2090300.mdio: phy[1]: device 2090300.mdio:01, driver Marvell 88E1111
    [    3.494420] netcp-1.0 2620110.netcp: module(netcp-xgbe) not used for device
    [    3.902418] platform xhci-hcd.0.auto: set dma_pfn_offset00780000
    [    3.909084] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
    [    3.914729] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
    [    3.922725] xhci-hcd xhci-hcd.0.auto: hcc params 0x0298f06d hci version 0x100 quirks 0x00210010
    [    3.931478] xhci-hcd xhci-hcd.0.auto: irq 34, io mem 0x02690000
    [    3.937562] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
    [    3.944375] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    3.951633] usb usb1: Product: xHCI Host Controller
    [    3.956536] usb usb1: Manufacturer: Linux 4.1.13-g8dc6617 xhci-hcd
    [    3.962736] usb usb1: SerialNumber: xhci-hcd.0.auto
    [    3.968058] hub 1-0:1.0: USB hub found
    [    3.971841] hub 1-0:1.0: 1 port detected
    [    3.976040] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
    [    3.981678] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
    [    3.989427] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [    3.997653] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
    [    4.004465] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    4.011722] usb usb2: Product: xHCI Host Controller
    [    4.016646] usb usb2: Manufacturer: Linux 4.1.13-g8dc6617 xhci-hcd
    [    4.022845] usb usb2: SerialNumber: xhci-hcd.0.auto
    [    4.028152] hub 2-0:1.0: USB hub found
    [    4.031934] hub 2-0:1.0: 1 port detected
    [    4.036261] usbcore: registered new interface driver usb-storage
    [    4.042537] mousedev: PS/2 mouse device common for all mice
    [    4.048338] i2c /dev entries driver
    [    4.052482] davinci-wdt 22f0080.wdt: heartbeat 60 sec
    [    4.071696] keystone-crypto 20c0000.crypto: crypto accelerator enabled
    [    4.078511] usbcore: registered new interface driver usbhid
    [    4.084101] usbhid: USB HID core driver
    [    4.088836] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xac
    [    4.095211] nand: Micron MT29F4G08ABBDAHC
    [    4.099243] nand: 512 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
    [    4.107147] Bad block table found at page 262080, version 0x01
    [    4.113521] Bad block table found at page 262016, version 0x01
    [    4.119707] 3 ofpart partitions found on MTD device 30000000.nand
    [    4.125819] Creating 3 MTD partitions on "30000000.nand":
    [    4.131340] 0x000000000000-0x000000100000 : "u-boot"
    [    4.137030] 0x000000100000-0x000000180000 : "params"
    [    4.142668] 0x000000180000-0x000020000000 : "ubifs"
    [    4.148464] davinci_nand 30000000.nand: controller rev. 2.5
    [    4.154319] platform oprofile-perf.0: set dma_pfn_offset00780000
    [    4.160513] oprofile: using timer interrupt.
    [    4.164822] Netfilter messages via NETLINK v0.30.
    [    4.169565] nf_conntrack version 0.5.0 (14792 buckets, 59168 max)
    [    4.176065] ctnetlink v0.93: registering with nfnetlink.
    [    4.181680] ipip: IPv4 over IPv4 tunneling driver
    [    4.186813] gre: GRE over IPv4 demultiplexor driver
    [    4.191861] ip_tables: (C) 2000-2006 Netfilter Core Team
    [    4.197282] ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully
    [    4.203682] arp_tables: (C) 2002 David S. Miller
    [    4.208372] Initializing XFRM netlink socket
    [    4.212676] NET: Registered protocol family 17
    [    4.217161] NET: Registered protocol family 15
    [    4.221624] 8021q: 802.1Q VLAN Support v1.8
    [    4.225897] Registering SWP/SWPB emulation handler
    [    4.316955] netcp-1.0 2620110.netcp eth0: Link is Down
    [    4.323401] 8021q: adding VLAN 0 to HW filter on device eth0
    [    4.416945] netcp-1.0 2620110.netcp eth1: Link is Down
    [    4.422867] 8021q: adding VLAN 0 to HW filter on device eth1
    [    8.316729] netcp-1.0 2620110.netcp eth0: Link is Up - 1Gbps/Full - flow control off
    [    8.346434] Sending DHCP requests ., OK
    [    8.416694] IP-Config: Got DHCP answer from 10.100.1.1, my address is 10.100.1.38
    [    8.597232] IP-Config: Complete:
    [    8.600471]      device=eth0, hwaddr=c4:ed:ba:a9:a3:6b, ipaddr=10.100.1.38, mask=255.255.255.0, gw=10.100.1.1
    [    8.610448]      host=10.100.1.38, domain=lnties.com, nis-domain=(none)
    [    8.617110]      bootserver=0.0.0.0, rootserver=0.0.0.0, rootpath=
    [    8.623136]      nameserver0=10.9.48.31, nameserver1=10.7.116.20
    [    8.639689] Warning: unable to open an initial console.
    [    8.658957] Freeing unused kernel memory: 28424K (c06e4000 - c22a6000)
    [    9.360477] udevd[1219]: starting version 182
    [    9.434048] virtio_ring: disagrees about version of symbol module_layout
    [    9.434080] virtio_ring: disagrees about version of symbol module_layout
    [    9.435216] virtio_ring: disagrees about version of symbol module_layout
    [    9.436329] virtio_ring: disagrees about version of symbol module_layout
    [    9.441066] virtio_ring: disagrees about version of symbol module_layout
    [    9.447912] virtio_ring: disagrees about version of symbol module_layout
    [    9.452950] virtio_ring: disagrees about version of symbol module_layout
    [    9.459924] virtio_ring: disagrees about version of symbol module_layout
    [    9.481740] virtio_ring: disagrees about version of symbol module_layout
    [    9.486836] virtio_ring: disagrees about version of symbol module_layout
    [    9.502302] virtio_ring: disagrees about version of symbol module_layout
    [    9.514995] virtio_ring: disagrees about version of symbol module_layout
    [    9.515112] virtio_ring: disagrees about version of symbol module_layout
    [    9.529758] virtio_ring: disagrees about version of symbol module_layout
    [    9.553879] keystone_dsp_mem: disagrees about version of symbol module_layout
    [    9.558047] virtio_ring: disagrees about version of symbol module_layout
    [    9.644940] keystone_dsp_mem: disagrees about version of symbol module_layout
    [    9.661426] virtio_ring: disagrees about version of symbol module_layout
    [    9.897833] virtio_ring: disagrees about version of symbol module_layout
    [    9.957906] random: dd urandom read with 0 bits of entropy available
    [   10.800388] ipv6: disagrees about version of symbol module_layout
    [   10.833916] ipv6: disagrees about version of symbol module_layout
    rpcbind: cannot create socket for udp6
    [   10.858702] ipv6: disagrees about version of symbol module_layout
    rpcbind: cannot create socket for tcp6
    [   10.894184] ipv6: disagrees about version of symbol module_layout
    [   10.948873] ipv6: disagrees about version of symbol module_layout
    [   10.960441] ipv6: disagrees about version of symbol module_layout
    
     _____                    _____           _         _
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|
                  |___|                    |___|
    
    Arago Project http://arago-project.org k2hk-evm /dev/ttyS0
    
    Arago 2015.12 k2hk-evm /dev/ttyS0
    
    k2hk-evm login:
     _____                    _____           _         _
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|
                  |___|                    |___|
    
    Arago Project http://arago-project.org k2hk-evm /dev/ttyS0
    
    Arago 2015.12 k2hk-evm /dev/ttyS0
    
    k2hk-evm login: root
    root@k2hk-evm:~# cd /
    root@k2hk-evm:/# ls
    bin    dev    home   media  proc   sbin   sys    usr
    boot   etc    lib    mnt    run    srv    tmp    var
    root@k2hk-evm:/#
    root@k2hk-evm:/#
    root@k2hk-evm:/# mount
    rootfs on / type rootfs (rw)
    proc on /proc type proc (rw,relatime)
    sysfs on /sys type sysfs (rw,relatime)
    debugfs on /sys/kernel/debug type debugfs (rw,relatime)
    tmpfs on /run type tmpfs (rw,nosuid,nodev,mode=755)
    tmpfs on /var/volatile type tmpfs (rw,relatime,size=51200k)
    none on /dev type devtmpfs (rw,relatime,size=461076k,nr_inodes=103563,mode=755)
    devpts on /dev/pts type devpts (rw,relatime,gid=5,mode=620)
    root@k2hk-evm:/#
    root@k2hk-evm:/#