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: WLAN0

Other Parts Discussed in Thread: TMDXEVM3358, WL1835MODCOM8B, WL1271, WL1835, AM3352, TPS65910, DA8XX

Tool/software: Linux

Hi

Below is statement from Hardware guide of AM335x starterkit  processors.wiki.ti.com/.../AM335xStarterKitHardwareUsersGuide

Does this mean stater kit will not connect to wifi router without using additional hardware?

WLAN

WLAN is no longer populated or supported on the AM335x Starter Kit. For TI WLAN support, consider using the AM335x EVM (TMDXEVM3358) along with WiLink8 module (WL1835MODCOM8B) which is sold separately. 

  • Hi,

    Does this mean stater kit will not connect to wifi router without using additional hardware?


    Correct. Starter Kit does not have wi fi module populated on the board.

    Best Regards,
    Yordan
  • Hi Yordan,
    Since when it is discontinue? As I have one starter kit from 2013 :(
  • Hi Yordan

    I have Starter Kit hardware from 2012 it is indicated TMD SSK3358, Rev 1.2B running on PC, I am not sure SDK version etc I used to work with. however Linux image version as follows and this image has Wi-Fi driver and wifi connectivity is working fine.

    Linux am335x-evm 3.2.0 #1 Thu Jul 26 17:16:27 CDT 2012 armv7l unknown          

    Distributor ID: Angstrom                                                        
    Description:    Angstrom GNU/Linux 2011.09 (Dureza)                             
    Release:        2011.09                                                         
    Codename:       Dureza                                                          

    Now recently I installed ti-processor-sdk-linux-am335x-evm-04.00.00.04-Linux-x86-Install.bin and used pre-build images and copied on new SD card using setup.sh, this linux image dont have wifi driver "hostap" and wifi is not working.

    Version of this linux image is Linux am335x-evm 4.9.28-geed43d1050 #1 PREEMPT Wed Jun 28 17:20:01 EDT 2017 armx

    So my AM335x stater kit board has Wi-Fi hardware but linux dont have drivers for Wi-Fi

    I need your help to build Wi-Fi driver for this board and secondly please provide me link to build Uboot and Linux image from sdk-linux-am335x-evm-04.00.00.04

    Your help is most appreciated!

  • Hi,

    need your help to build Wi-Fi driver for this board and secondly please provide me link to build Uboot and Linux image from sdk-linux-am335x-evm-04.00.00.04

    You can use the following steps to build u-boot & linux images:
    export ARCH=arm
    export PATH=~/ti-processor-sdk-linux-am335x-evm-04.00.00.04/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/:$PTAH
    export CROSS_COMPILE=arm-linux-gnueabihf-

    To build linux kernel & dtb use:
    cd ~/ti-processor-sdk-linux-am335x-evm-04.00.00.04/board-support/linux-4.9.28+gitAUTOINC+eed43d1050-geed43d1050
    make clean
    make tisdk_am335x-evm_defconfig
    make -j4

    To build u-boog use:
    cd ~/ti-processor-sdk-linux-am335x-evm-04.00.00.04/board-support/u-boot-2017.01+gitAUTOINC+9fd60700db-g9fd60700db
    make clean
    make am335x_evm_config
    make -j4

    For the wifi driver, you need to include the WL18 driver support in kernel defoconfig (located in arch/arm/configs/tisdk_am335x-evm_defconfig:
    change CONFIG_WL18XX=m to CONFIG_WL18XX=y ===> this builts in the driver.

    You may need to add wifi node in am335x_evmsk.dts:
    &mmc2 {
    status = "okay";
    vmmc-supply = <&wl12xx_vmmc>;
    ti,non-removable;
    bus-width = <4>;
    cap-power-off-card;
    keep-power-in-suspend;
    pinctrl-names = "default";
    pinctrl-0 = <&mmc2_pins>;

    #address-cells = <1>;
    #size-cells = <0>;
    wlcore: wlcore@2 {
    compatible = "ti,wl1271";
    reg = <2>;
    interrupt-parent = <&gpio0>;
    interrupts = <31 IRQ_TYPE_LEVEL_HIGH>; /* gpio 31 */
    ref-clock-frequency = <38400000>;
    };
    Modify compatible = "ti,wl1271"; to "ti,wl1835". Also check if you use the same mmc.

    Best Regards,
    Yordan
  • Hello Yordan

    I tried above given step but still wlan0 not working, I think still wlan0 driver is missing in modules

    here is powerup log of new build

    U-Boot SPL 2017.01-g9fd60700db (Jun 28 2017 - 17:18:56)                                                                    
    Trying to boot from MMC1                                                                                                   
    reading uboot.env                                                                                                          
                                                                                                                               
    ** Unable to read "uboot.env" from mmc0:1 **                                                                               
    Using default environment                                                                                                  
                                                                                                                               
    reading u-boot.img                                                                                                         
    reading u-boot.img                                                                                                         
    reading u-boot.img                                                                                                         
    reading u-boot.img                                                                                                         
                                                                                                                               
                                                                                                                               
    U-Boot 2017.01-g9fd60700db (Jun 28 2017 - 17:18:56 -0400)                                                                  
                                                                                                                               
    CPU  : AM335X-GP rev 1.0                                                                                                   
    Model: TI AM335x EVM-SK                                                                                                    
    DRAM:  256 MiB                                                                                                             
    NAND:  0 MiB                                                                                                               
    MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1                                                                                      
    reading uboot.env                                                                                                          
                                                                                                                               
    ** Unable to read "uboot.env" from mmc0:1 **                                                                               
    Using default environment                                                                                                  
                                                                                                                               
    <ethaddr> not set. Validating first E-fuse MAC                                                                             
    Net:   cpsw, usb_ether                                                                                                     
    Hit any key to stop autoboot:  0                                                                                           
    switch to partitions #0, OK                                                                                                
    mmc0 is current device                                                                                                     
    SD/MMC found on device 0                                                                                                   
    reading boot.scr                                                                                                           
    ** Unable to read file boot.scr **                                                                                         
    reading uEnv.txt                                                                                                           
    ** Unable to read file uEnv.txt **                                                                                         
    switch to partitions #0, OK                                                                                                
    mmc0 is current device                                                                                                     
    Scanning mmc 0:1...                                                                                                        
    switch to partitions #0, OK                                                                                                
    mmc0 is current device                                                                                                     
    SD/MMC found on device 0                                                                                                   
    3886496 bytes read in 457 ms (8.1 MiB/s)                                                                                   
    41494 bytes read in 40 ms (1012.7 KiB/s)                                                                                   
    ## Flattened Device Tree blob at 88000000                                                                                  
       Booting using the fdt blob at 0x88000000                                                                                
       Loading Device Tree to 8df19000, end 8df26215 ... OK                                                                    
                                                                                                                               
    Starting kernel ...                                                                                                        
                                                                                                                               
    [    0.000000] Booting Linux on physical CPU 0x0                                                                           
    [    0.000000] Linux version 4.9.28-geed43d1050 (dattatray@dattatray-XPS14-L) (gcc version 6.2.1 20161016 (Linaro GCC 6.2-7
    [    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d                                             
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache                                    
    [    0.000000] OF: fdt:Machine model: TI AM335x EVM-SK                                                                     
    [    0.000000] efi: Getting EFI parameters from FDT:                                                                       
    [    0.000000] efi: UEFI not found.                                                                                        
    [    0.000000] cma: Reserved 48 MiB at 0x8a800000                                                                          
    [    0.000000] Memory policy: Data cache writeback                                                                         
    [    0.000000] CPU: All CPU(s) started in SVC mode.                                                                        
    [    0.000000] AM335X ES1.0 (sgx neon)                                                                                     
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 64960                                  
    [    0.000000] Kernel command line: console=ttyO0,115200n8 root=PARTUUID=f3c65cb2-02 rw rootfstype=ext4 rootwait           
    [    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)                                                         
    [    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)                                             
    [    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)                                               
    [    0.000000] Memory: 197288K/262144K available (8192K kernel code, 287K rwdata, 2520K rodata, 1024K init, 280K bss, 1570)
    [    0.000000] Virtual kernel memory layout:                                                                               
    [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)                                                           
    [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)                                                           
    [    0.000000]     vmalloc : 0xd0800000 - 0xff800000   ( 752 MB)                                                           
    [    0.000000]     lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)                                                           
    [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)                                                           
    [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)                                                           
    [    0.000000]       .text : 0xc0008000 - 0xc0900000   (9184 kB)                                                           
    [    0.000000]       .init : 0xc0c00000 - 0xc0d00000   (1024 kB)                                                           
    [    0.000000]       .data : 0xc0d00000 - 0xc0d47cd0   ( 288 kB)                                                           
    [    0.000000]        .bss : 0xc0d47cd0 - 0xc0d8df68   ( 281 kB)                                                           
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1                                                  
    [    0.000000] Preemptible hierarchical RCU implementation.                                                                
    [    0.000000]  Build-time adjustment of leaf fanout to 32.                                                                
    [    0.000000] NR_IRQS:16 nr_irqs:16 16                                                                                    
    [    0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts                                         
    [    0.000000] OMAP clockevent source: timer2 at 24000000 Hz                                                               
    [    0.000016] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns                                   
    [    0.000041] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns                   
    [    0.000054] OMAP clocksource: timer1 at 24000000 Hz                                                                     
    [    0.000265] clocksource_probe: no matching clocksources found                                                           
    [    0.000459] Console: colour dummy device 80x30                                                                          
    [    0.000489] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'                                                  
    [    0.000497] This ensures that you still see kernel messages. Please                                                     
    [    0.000503] update your kernel commandline.                                                                             
    [    0.000529] Calibrating delay loop... 718.02 BogoMIPS (lpj=3590144)                                                     
    [    0.118941] pid_max: default: 32768 minimum: 301                                                                        
    [    0.119083] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)                                                 
    [    0.119097] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)                                            
    [    0.119987] CPU: Testing write buffer coherency: ok                                                                     
    [    0.120409] Setting up static identity map for 0x80100000 - 0x80100060                                                  
    [    0.121374] EFI services will not be available.                                                                         
    [    0.122898] devtmpfs: initialized                                                                                       
    [    0.137269] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3                                     
    [    0.137651] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns            
    [    0.137682] futex hash table entries: 256 (order: -1, 3072 bytes)                                                       
    [    0.141868] pinctrl core: initialized pinctrl subsystem                                                                 
    [    0.143287] NET: Registered protocol family 16                                                                          
    [    0.145475] DMA: preallocated 256 KiB pool for atomic coherent allocations                                              
    [    0.161738] omap_hwmod: debugss: _wait_target_disable failed                                                            
    [    0.238940] cpuidle: using governor ladder                                                                              
    [    0.268928] cpuidle: using governor menu                                                                                
    [    0.276046] OMAP GPIO hardware version 0.1                                                                              
    [    0.294621] hw-breakpoint: debug architecture 0x4 unsupported.                                                          
    [    0.338435] edma 49000000.edma: TI EDMA DMA engine driver                                                               
    [    0.339675] reg-fixed-voltage fixedregulator2: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@e
    [    0.343450] omap_i2c 44e0b000.i2c: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/pinmux_ie
    [    0.343636] media: Linux media interface: v0.10                                                                         
    [    0.343704] Linux video capture interface: v2.00                                                                        
    [    0.343753] pps_core: LinuxPPS API ver. 1 registered                                                                    
    [    0.343762] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>                    
    [    0.343791] PTP clock support registered                                                                                
    [    0.343836] EDAC MC: Ver: 3.0.0                                                                                         
    [    0.345074] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400                                                       
    [    0.345464] Advanced Linux Sound Architecture Driver Initialized.                                                       
    [    0.347484] clocksource: Switched to clocksource timer1                                                                 
    [    0.359717] NET: Registered protocol family 2                                                                           
    [    0.360618] TCP established hash table entries: 2048 (order: 1, 8192 bytes)                                             
    [    0.360658] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)                                                    
    [    0.360692] TCP: Hash tables configured (established 2048 bind 2048)                                                    
    [    0.360776] UDP hash table entries: 256 (order: 0, 4096 bytes)                                                          
    [    0.360805] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)                                                     
    [    0.360958] NET: Registered protocol family 1                                                                           
    [    0.361449] RPC: Registered named UNIX socket transport module.                                                         
    [    0.361466] RPC: Registered udp transport module.                                                                       
    [    0.361473] RPC: Registered tcp transport module.                                                                       
    [    0.361480] RPC: Registered tcp NFSv4.1 backchannel transport module.                                                   
    [    0.362556] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available                                
    [    0.365293] workingset: timestamp_bits=14 max_order=16 bucket_order=2                                                   
    [    0.374469] squashfs: version 4.0 (2009/01/31) Phillip Lougher                                                          
    [    0.375610] NFS: Registering the id_resolver key type                                                                   
    [    0.375658] Key type id_resolver registered                                                                             
    [    0.375669] Key type id_legacy registered                                                                               
    [    0.375722] ntfs: driver 2.1.32 [Flags: R/O].                                                                           
    [    0.381777] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)                                        
    [    0.381804] io scheduler noop registered                                                                                
    [    0.381814] io scheduler deadline registered                                                                            
    [    0.381986] io scheduler cfq registered (default)                                                                       
    [    0.383127] pinctrl-single 44e10800.pinmux: please update dts to use #pinctrl-cells = <1>                               
    [    0.383708] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568                                            
    [    0.387280] backlight supply power not found, using dummy regulator                                                     
    [    0.458656] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled                                                   
    [    0.463303] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 158, base_baud = 3000000) is a 8250                        
    [    1.071465] console [ttyS0] enabled                                                                                     
    [    1.077142] omap_rng 48310000.rng: OMAP Random Number Generator ver. 20                                                 
    [    1.084027] [drm] Initialized                                                                                           
    [    1.088353] panel panel: found backlight                                                                                
    [    1.093314] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).                                                 
    [    1.100041] [drm] No driver support for vblank timestamp query.                                                         
    [    1.133917] Console: switching to colour frame buffer device 60x34                                                      
    [    1.142467] tilcdc 4830e000.lcdc: fb0:  frame buffer device                                                             
    [    1.193484] brd: module loaded                                                                                          
    [    1.204321] loop: module loaded                                                                                         
    [    1.210392] libphy: Fixed MDIO Bus: probed                                                                              
    [    1.287536] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6                                                       
    [    1.293717] davinci_mdio 4a101000.mdio: detected phy mask fffffffc                                                      
    [    1.301443] libphy: 4a101000.mdio: probed                                                                               
    [    1.305493] davinci_mdio 4a101000.mdio: phy[0]: device 4a101000.mdio:00, driver Atheros 8031 ethernet                   
    [    1.314903] davinci_mdio 4a101000.mdio: phy[1]: device 4a101000.mdio:01, driver Atheros 8031 ethernet                   
    [    1.325093] cpsw 4a100000.ethernet: Detected MACID = 00:18:31:e0:18:f6                                                  
    [    1.332063] cpsw 4a100000.ethernet: cpts: overflow check period 500 (jiffies)                                           
    [    1.340660] cpsw 4a100000.ethernet: cpsw: Detected MACID = 00:18:31:e0:18:f7                                            
    [    1.349816] mousedev: PS/2 mouse device common for all mice                                                             
    [    1.355842] i2c /dev entries driver                                                                                     
    [    1.361667] cpuidle: enable-method property 'ti,am3352' found operations                                                
    [    1.369617] omap_hsmmc 48060000.mmc: Got CD GPIO                                                                        
    [    1.429215] ledtrig-cpu: registered to indicate activity on CPUs                                                        
    [    1.438897] NET: Registered protocol family 10                                                                          
    [    1.444993] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver                                                         
    [    1.452116] NET: Registered protocol family 17                                                                          
    [    1.456923] Key type dns_resolver registered                                                                            
    [    1.461633] omap_voltage_late_init: Voltage driver support not added                                                    
    [    1.497731] tps65910 0-002d: No interrupt support, no core IRQ                                                          
    [    1.505720] vrtc: supplied by vbat                                                                                      
    [    1.513051] vio: supplied by vbat                                                                                       
    [    1.517994] vdd1: supplied by vbat                                                                                      
    [    1.523314] vdd2: supplied by vbat                                                                                      
    [    1.527974] random: fast init done                                                                                      
    [    1.533497] vdig1: supplied by vbat                                                                                     
    [    1.538491] vdig2: supplied by vbat                                                                                     
    [    1.543514] vpll: supplied by vbat                                                                                      
    [    1.548422] vdac: supplied by vbat                                                                                      
    [    1.553294] vaux1: supplied by vbat                                                                                     
    [    1.558355] vaux2: supplied by vbat                                                                                     
    [    1.563308] vaux33: supplied by vbat                                                                                    
    [    1.568404] vmmc: supplied by vbat                                                                                      
    [    1.573279] vbb: supplied by vbat                                                                                       
    [    1.578418] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz                                                             
    [    1.586006] omap_hsmmc 48060000.mmc: Got CD GPIO                                                                        
    [    1.754957] mmc0: host does not support reading read-only switch, assuming write-enable                                 
    [    1.765258] mmc0: new high speed SDHC card at address aaaa                                                              
    [    1.772074] mmcblk0: mmc0:aaaa SU04G 3.69 GiB                                                                           
    [    1.778608]  mmcblk0: p1 p2                                                                                             
    [    1.799638] input: gpio_buttons0 as /devices/platform/gpio_buttons0/input/input0                                        
    [    1.811118] hctosys: unable to open rtc device (rtc0)                                                                   
    [    1.816252] omap_hsmmc 481d8000.mmc: card claims to support voltages below defined range                                
    [    1.825362] lis3_reg: disabling                                                                                         
    [    1.828896] ALSA device list:                                                                                           
    [    1.831928]   No soundcards found.                                                                                      
    [    1.845770] mmc1: new SDIO card at address 0001                                                                         
    [    1.855525] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)                                
    [    1.864008] VFS: Mounted root (ext4 filesystem) on device 179:2.                                                        
    [    1.873676] devtmpfs: mounted                                                                                           
    [    1.879211] Freeing unused kernel memory: 1024K (c0c00000 - c0d00000)                                                   
    [    2.233404] systemd[1]: System time before build time, advancing clock.                                                 
    [    2.374461] systemd[1]: systemd 230 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP)
    [    2.394303] systemd[1]: Detected architecture arm.                                                                      
                                                                                                                               
    Welcome to Arago 2017.05!                                                                                                  
                                                                                                                               
    [    2.429600] systemd[1]: Set hostname to <am335x-evm>.                                                                   
    [    2.779810] systemd[1]: [/lib/systemd/system/gadget-init.service:15] Unknown lvalue 'ExecStopPre' in section 'Service'  
    [    3.105575] systemd[1]: sysinit.target: Found ordering cycle on sysinit.target/start                                    
    [    3.113684] systemd[1]: sysinit.target: Found dependency on alignment.service/start                                     
    [    3.121613] systemd[1]: sysinit.target: Found dependency on sysinit.target/start                                        
    [    3.129126] systemd[1]: sysinit.target: Breaking ordering cycle by deleting job alignment.service/start                 
    [    3.138667] systemd[1]: alignment.service: Job alignment.service/start deleted to break ordering cycle starting with syt
    [ SKIP ] Ordering cycle found, skipping alignment.service                                                                  
    [    3.194449] systemd[1]: Reached target Swap.                                                                            
    [  OK  ] Reached target Swap.                                                                                              
    [  OK  ] Listening on udev Control Socket.                                                                                 
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.                                                    
    [  OK  ] Listening on Journal Socket (/dev/log).                                                                           
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.                                                        
    [  OK  ] Listening on Syslog Socket.                                                                                       
    [  OK  ] Reached target Paths.                                                                                             
    [  OK  ] Listening on udev Kernel Socket.                                                                                  
    [  OK  ] Created slice User and Session Slice.                                                                             
    [  OK  ] Listening on Network Service Netlink Socket.                                                                      
    [  OK  ] Listening on /dev/initctl Compatibility Named Pipe.                                                               
    [  OK  ] Reached target Remote File Systems.                                                                               
    [  OK  ] Listening on Journal Socket.                                                                                      
    [  OK  ] Created slice System Slice.                                                                                       
             Starting Journal Service...                                                                                       
             Mounting Temporary Directory...                                                                                   
    [  OK  ] Created slice system-serial\x2dgetty.slice.                                                                       
             Mounting POSIX Message Queue File System...                                                                       
             Mounting Debug File System...                                                                                     
             Starting Create list of required st... nodes for the current kernel...                                            
             Starting Load Kernel Modules...                                                                                   
    [  OK  ] Reached target Slices.                                                                                            
    [  OK  ] Created slice system-getty.slice.                                                                                 
    [    3.996063] cryptodev: loading out-of-tree module taints kernel.                                                        
    [    4.025011] cryptodev: driver 1.8 loaded.                                                                               
             Starting Setup Virtual Console...                                                                                 
             Starting Remount Root and Kernel File Systems...                                                                  
    [    4.136069] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)                                                               
    [  OK  ] Mounted Debug File System.                                                                                        
    [  OK  ] Mounted POSIX Message Queue File System.                                                                          
    [  OK  ] Mounted Temporary Directory.                                                                                      
    [  OK  ] Started Journal Service.                                                                                          
    [  OK  ] Started Create list of required sta...ce nodes for the current kernel.                                            
    [  OK  ] Started Load Kernel Modules.                                                                                      
    [  OK  ] Started Setup Virtual Console.                                                                                    
    [  OK  ] Started Remount Root and Kernel File Systems.                                                                     
             Starting udev Coldplug all Devices...                                                                             
             Mounting Configuration File System...                                                                             
             Starting Apply Kernel Variables...                                                                                
             Starting Create Static Device Nodes in /dev...                                                                    
             Starting Flush Journal to Persistent Storage...                                                                   
    [  OK  ] Mounted Configuration File System.                                                                                
    [  OK  ] Started Apply Kernel Variables.                                                                                   
    [  OK  ] Started Create Static Device Nodes in /dev.                                                                       
    [    4.920250] systemd-journald[101]: Received request to flush runtime journal from PID 1                                 
    [  OK  ] Reached target Local File Systems (Pre).                                                                          
             Mounting /var/volatile...                                                                                         
             Mounting /media/ram...                                                                                            
             Starting udev Kernel Device Manager...                                                                            
    [  OK  ] Mounted /var/volatile.                                                                                            
    [  OK  ] Mounted /media/ram.                                                                                               
    [  OK  ] Started Flush Journal to Persistent Storage.                                                                      
             Starting Load/Save Random Seed...                                                                                 
    [  OK  ] Reached target Local File Systems.                                                                                
             Starting Create Volatile Files and Directories...                                                                 
    [  OK  ] Started Load/Save Random Seed.                                                                                    
    [  OK  ] Started udev Kernel Device Manager.                                                                               
    [  OK  ] Started Create Volatile Files and Directories.                                                                    
             Starting Update UTMP about System Boot/Shutdown...                                                                
             Starting Network Time Synchronization...                                                                          
    [  OK  ] Started Update UTMP about System Boot/Shutdown.                                                                   
    [  OK  ] Started Network Time Synchronization.                                                                             
    [  OK  ] Reached target System Time Synchronized.                                                                          
             Starting Synchronize System and HW clocks...                                                                      
    [FAILED] Failed to start Synchronize System and HW clocks.                                                                 
    See 'systemctl status sync-clocks.service' for details.                                                                    
    [  OK  ] Created slice system-systemd\x2dbacklight.slice.                                                                  
             Starting Load/Save Screen Backlight...htness of backlight:backlight...                                            
    [  OK  ] Started Load/Save Screen Backlight Brightness of backlight:backlight.                                             
    [  OK  ] Started udev Coldplug all Devices.                                                                                
    [    7.435684] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec                                              
    [  OK  ] Found device /dev/ttyS0.                                                                                          
    [  OK  ] Reached target System Initialization.                                                                             
    [    7.625096] omap_rtc 44e3e000.rtc: already running                                                                      
    [    7.641889] omap_rtc 44e3e000.rtc: rtc core: registered 44e3e000.rtc as rtc0                                            
    [    8.651192] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2                                                           
    [  OK  ] Listening on dropbear.socket.                                                                                     
    [  OK  ] Listening on RPCbind Server Activation Socket.                                                                    
    [  OK  ] Listening on D-Bus System Message Bus Socket.[    8.745045] omap-aes 53500000.aes: will run requests pump with rey
                                                                                                                               
    [  OK  ] Started Daily Cleanup of Temporary Directories.                                                                   
    [  OK  ] Reached target Timers.                                                                                            
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activati[    8.894286] omap-sham 53100000.sham: hw accel on OMAP rev 4.3     
    on Socket.                                                                                                                 
    [  OK  ] Reached target Sockets.                                                                                           
    [  OK  ] Reached target Basic System.                                                                                      
    [    8.986721] [drm] Initialized pvr 1.14.3699939 20110701 on minor 1                                                      
    [  OK  ] Started D-Bus System Message Bus.                                                                                 
    [    9.073539] wkup_m3_ipc 44e11324.wkup_m3_ipc: could not get rproc handle                                                
    [    9.086577] remoteproc remoteproc0: wkup_m3 is available                                                                
    [    9.216285] wl12xx_driver wl12xx.0.auto: Direct firmware load for ti-connectivity/wl127x-nvs.bin failed with error -2   
    [    9.406709] remoteproc remoteproc0: powering up wkup_m3                                                                 
    [    9.413787] PM: Cannot get wkup_m3_ipc handle                                                                           
    [    9.528960] remoteproc remoteproc0: Booting fw image am335x-pm-firmware.elf, size 224344                                
    [    9.537404] remoteproc remoteproc0: remote processor wkup_m3 is now up                                                  
    [    9.543986] wkup_m3_ipc 44e11324.wkup_m3_ipc: CM3 Firmware Version = 0x192                                              
    [    9.651852] wlcore: loaded                                                                                              
    [    9.840533] asoc-simple-card sound: tlv320aic3x-hifi <-> 4803c000.mcasp mapping ok                                      
    [    9.920387] PM: bootloader does not support rtc-only!                                                                   
             Starting Network Service...                                                                                       
             Starting Print notice about GPLv3 packages...                                                                     
             Starting Telephony service...                                                                                     
             Starting uim-sysfs.service...                                                                                     
             Starting Save/Restore Sound Card State...                                                                         
    [  OK  ] Started System Logging Service.                                                                                   
    [  OK  ] Started Kernel Logging Service.                                                                                   
             Starting Login Service...                                                                                         
             Starting Avahi mDNS/DNS-SD Stack...                                                                               
    [  OK  ] Started Network Service.                                                                                          
    [   11.086398] Bluetooth: Core ver 2.22                                                                                    
    [   11.390643] NET: Registered protocol family 31                                                                          
    [   11.390653] Bluetooth: HCI device and connection manager initialized                                                    
    [   11.390679] Bluetooth: HCI socket layer initialized                                                                     
    [   11.390691] Bluetooth: L2CAP socket layer initialized                                                                   
    [   11.390727] Bluetooth: SCO socket layer initialized                                                                     
    [   11.393705] net eth1: initializing cpsw version 1.12 (0)                                                                
    [   11.393719] net eth0: initialized cpsw ale version 1.4                                                                  
    [   11.393726] net eth0: ALE Table size 1024                                                                               
    [   11.488680] Atheros 8031 ethernet 4a101000.mdio:01: attached PHY driver [Atheros 8031 ethernet] (mii_bus:phy_addr=4a101)
    [   11.624486] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready                                                          
    [   11.739149] net eth0: initializing cpsw version 1.12 (0)                                                                
    [   11.853145] Atheros 8031 ethernet 4a101000.mdio:00: attached PHY driver [Atheros 8031 ethernet] (mii_bus:phy_addr=4a101)
    [   11.947640] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready                                                          
    [  OK  ] Found device /dev/ttyS3.                                                                                          
    [  OK  ] Started Save/Restore Sound Card State.                                                                            
    [   13.371052] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.           
    [  OK  ] Started Telephony service.                                                                                        
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.                                                                                  
    [  OK  ] Started Login Service.                                                                                            
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.                                                   
    [  OK  ] Reached target Network.                                                                                           
             Starting Network Name Resolution...                                                                               
             Starting Permit User Sessions...                                                                                  
    [  OK  ] Started strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf.                                                     
             Starting Simple Network Management Protocol (SNMP) Daemon....                                                     
             Starting Lightning Fast Webserver With Light System Requirements...                                               
             Starting Enable and configure wl18xx bluetooth stack...                                                           
    [  OK  ] Started Permit User Sessions.                                                                                     
    [  OK  ] Started Lightning Fast Webserver With Light System Requirements.                                                  
    [  OK  ] Started Network Name Resolution.                                                                                  
    [  OK  ] Found device /dev/mmcblk0p1.                                                                                      
             Starting Start USB gadget...                                                                                      
             Starting Load/Save RF Kill Switch Status...                                                                       
    [  OK  ] Started Serial Getty on ttyS0.                                                                                    
    [  OK  ] Started Serial Getty on ttyS3.                                                                                    
    [  OK  ] Started Getty on tty1.                                                                                            
    [  OK  ] Started Enable and configure wl18xx bluetooth stack.                                                              
    [   17.176785] NET: Registered protocol family 15                                                                          
    [   17.379904] udc-core: couldn't find an available UDC - added [g_multi] to list of pending drivers                       
    [   18.535437] Initializing XFRM netlink socket                                                                            
    [   18.706421] random: crng init done                                                                                      
    [FAILED] Failed to start Start USB gadget.                                                                                 
    See 'systemctl status gadget-init.service' for details.                                                                    
    [  OK  ] Started Simple Network Management Protocol (SNMP) Daemon..                                                        
    [   19.840223] TI-am335x-tsc TI-am335x-tsc: ti,charge-delay not specified                                                  
    [   19.986171] input: ti-tsc as /devices/platform/ocp/44e0d000.tscadc/TI-am335x-tsc/input/input1                           
    [   20.069688] 47401300.usb-phy supply vcc not found, using dummy regulator                                                
    [   20.100251] usbcore: registered new interface driver usbfs                                                              
    [   20.100343] usbcore: registered new interface driver hub                                                                
    [   20.100495] usbcore: registered new device driver usb                                                                   
    [   20.138969] 47401b00.usb-phy supply vcc not found, using dummy regulator                                                
    [   20.313162] musb-hdrc musb-hdrc.0: MUSB HDRC host driver                                                                
    [   20.313225] musb-hdrc musb-hdrc.0: new USB bus registered, assigned bus number 1                                        
    [   20.332751] hub 1-0:1.0: USB hub found                                                                                  
    [   20.332808] hub 1-0:1.0: 1 port detected                                                                                
    [   20.478748] using random self ethernet address                                                                          
    [   20.478756] using random host ethernet address                                                                          
    [   20.478794] using host ethernet address: 00:18:31:E0:18:F7                                                              
    [   20.478796] using random self ethernet address                                                                          
    [   20.478800] using random host ethernet address                                                                          
    [   20.482242] using host ethernet address: 00:18:31:E0:18:F7                                                              
    [   20.482245] usb0: HOST MAC 00:18:31:e0:18:f7                                                                            
    [   20.482970] usb0: MAC 5e:3b:d6:94:2f:8c                                                                                 
    [   20.638655] Mass Storage Function, version: 2009/09/11                                                                  
    [   20.638668] LUN: removable file: (no medium)                                                                            
    [   20.638933] LUN: removable read only file: /dev/mmcblk0p1                                                               
    [   20.638939] Number of LUNs=1                                                                                            
    [   20.649422] g_multi gadget: Multifunction Composite Gadget                                                              
    [   20.649434] g_multi gadget: g_multi ready                                                                               
    [   20.659567] ti-pruss 4a300000.pruss: creating PRU cores and other child platform devices                                
    [   20.661492] irq: no irq domain found for /ocp/pruss_soc_bus@4a326000/pruss@4a300000/intc@4a320000 !                     
    [   20.662205] irq: no irq domain found for /ocp/pruss_soc_bus@4a326000/pruss@4a300000/intc@4a320000 !                     
    [   20.727801] musb-hdrc musb-hdrc.1: MUSB HDRC host driver                                                                
    [   20.727844] musb-hdrc musb-hdrc.1: new USB bus registered, assigned bus number 2                                        
    [   20.729152] hub 2-0:1.0: USB hub found                                                                                  
    [   20.757713] hub 2-0:1.0: 1 port detected                                                                                
    [   21.180049] g_multi gadget: high-speed config #2: Multifunction with CDC ECM                                            
    [   21.753354] remoteproc remoteproc1: 4a334000.pru0 is available                                                          
    [   21.753444] pru-rproc 4a334000.pru0: PRU rproc node /ocp/pruss_soc_bus@4a326000/pruss@4a300000/pru@4a334000 probed succy
    [   21.796786] remoteproc remoteproc2: 4a338000.pru1 is available                                                          
    [   21.796881] pru-rproc 4a338000.pru1: PRU rproc node /ocp/pruss_soc_bus@4a326000/pruss@4a300000/pru@4a338000 probed succy
    [   21.878523] wl12xx_driver wl12xx.0.auto: Direct firmware load for ti-connectivity/wl127x-fw-5-sr.bin failed with error 2
    [   21.878539] wlcore: ERROR could not get firmware ti-connectivity/wl127x-fw-5-sr.bin: -2                                 
    [   22.334320] wl12xx_driver wl12xx.0.auto: Direct firmware load for ti-connectivity/wl127x-fw-5-sr.bin failed with error 2
    [   22.334336] wlcore: ERROR could not get firmware ti-connectivity/wl127x-fw-5-sr.bin: -2                                 
    [  OK  ] Started Load/Save RF Kill Switch Status.                                                                          
    [   22.788399] wl12xx_driver wl12xx.0.auto: Direct firmware load for ti-connectivity/wl127x-fw-5-sr.bin failed with error 2
    [   22.852330] wlcore: ERROR could not get firmware ti-connectivity/wl127x-fw-5-sr.bin: -2                                 
    [   22.934429] wlcore: ERROR firmware boot failed despite 3 retries                                                        
                                                                                                                               
     _____                    _____           _         _                                                                      
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_                                                                    
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|                                                                   
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|                                                                     
                  |___|                    |___|                                                                               
                                                                                                                               
    Arago Project http://arago-project.org am335x-evm ttyS0                                                                    
                                                                                                                               
    Arago 2017.05 am335x-evm ttyS0                                                                                             
                                                                                                                               
    am335x-evm login: ***************************************************************                                          
    ***************************************************************                                                            
    NOTICE: This file system contains the following GPLv3 packages:                                                            
            autoconf                                                                                                           
            binutils                                                                                                           
            cpp-symlinks                                                                                                       
            cpp                                                                                                                
            dosfstools                                                                                                         
            g++-symlinks                                                                                                       
            g++                                                                                                                
            gawk-dev                                                                                                           
            gawk                                                                                                               
            gcc-symlinks                                                                                                       
            gcc                                                                                                                
            gdb                                                                                                                
            gdbserver                                                                                                          
            gstreamer1.0-libav                                                                                                 
            hidapi                                                                                                             
            libcairo-perf-utils                                                                                                
            libgmp10                                                                                                           
            libidn11                                                                                                           
            libmpc3                                                                                                            
            libmpfr4                                                                                                           
            libreadline-dev                                                                                                    
            libreadline6                                                                                                       
            m4-dev                                                                                                             
            m4                                                                                                                 
            make                                                                                                               
            nettle                                                                                                             
            swig-dev                                                                                                           
            swig                                                                                                               
                                                                                                                               
    If you do not wish to distribute GPLv3 components please remove                                                            
    the above packages prior to distribution.  This can be done using                                                          
    the opkg remove command.  i.e.:                                                                                            
        opkg remove <package>                                                                                                  
    Where <package> is the name printed in the list above                                                                      
                                                                                                                               
    NOTE: If the package is a dependency of another package you                                                                
          will be notified of the dependent packages.  You should                                                              
          use the --force-removal-of-dependent-packages option to                                                              
          also remove the dependent packages as well                                                                           
    ***************************************************************                                                            
    ***************************************************************                                                            
    [   26.295489] PVR_K: UM DDK-(3699939) and KM DDK-(3699939) match. [ OK ]                                                  
                                                                                                                               
     _____                    _____           _         _                                                                      
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_                                                                    
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|                                                                   
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|                                                                     
                  |___|                    |___|                                                                               
                                                                                                                               
    Arago Project http://arago-project.org am335x-evm ttyS0                                                                    
                                                                                                                               
    Arago 2017.05 am335x-evm ttyS0                                                                                             

    compare to my previous SD card image

    No NAND device found!!!                                                         
    0 MiB                                                                           
    MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1                                           
    *** Warning - readenv() failed, using default environment                       
                                                                                    
    Net:   cpsw                                                                     
    Hit any key to stop autoboot:  0                                                
    SD/MMC found on device 0                                                        
    reading uEnv.txt                                                                
                                                                                    
    ** Unable to read "uEnv.txt" from mmc 0:1 **                                    
    reading uImage                                                                  
                                                                                    
    3163680 bytes read                                                              
    ## Booting kernel from Legacy Image at 80007fc0 ...                             
       Image Name:   Arago/3.2.0-psp04.06.00.08.sdk/a                               
       Image Type:   ARM Linux Kernel Image (uncompressed)                          
       Data Size:    3163616 Bytes = 3 MiB                                          
       Load Address: 80008000                                                       
       Entry Point:  80008000                                                       
       Verifying Checksum ... OK                                                    
       XIP Kernel Image ... OK                                                      
    OK                                                                              
                                                                                    
    Starting kernel ...                                                             
                                                                                    
    Uncompressing Linux... done, booting the kernel.                                
    [    0.000000] Linux version 3.2.0 (jenkins@sdit-build01) (gcc version 4.5.3 202
    [    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c53c7d  
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instructie
    [    0.000000] Machine: am335xevm                                               
    [    0.000000] Memory policy: ECC disabled, Data cache writeback                
    [    0.000000] AM335X ES1.0 (sgx neon )                                         
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pa4
    [    0.000000] Kernel command line: console=ttyO0,115200n8 root=/dev/mmcblk0p2 e
    [    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)              
    [    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)  
    [    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)    
    [    0.000000] Memory: 256MB = 256MB total                                      
    [    0.000000] Memory: 253256k/253256k available, 8888k reserved, 0K highmem    
    [    0.000000] Virtual kernel memory layout:                                    
    [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)                
    [    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)                
    [    0.000000]     vmalloc : 0xd0800000 - 0xff000000   ( 744 MB)                
    [    0.000000]     lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)                
    [    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)                
    [    0.000000]       .text : 0xc0008000 - 0xc059d000   (5716 kB)                
    [    0.000000]       .init : 0xc059d000 - 0xc05db000   ( 248 kB)                
    [    0.000000]       .data : 0xc05dc000 - 0xc0644198   ( 417 kB)                
    [    0.000000]        .bss : 0xc06441bc - 0xc0671024   ( 180 kB)                
    [    0.000000] NR_IRQS:396                                                      
    [    0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrus
    [    0.000000] Total of 128 interrupts on 1 active controller                   
    [    0.000000] OMAP clockevent source: GPTIMER2 at 24000000 Hz                  
    [    0.000000] OMAP clocksource: GPTIMER1 at 32768 Hz                           
    [    0.000000] sched_clock: 32 bits at 32kHz, resolution 30517ns, wraps every 1s
    [    0.000000] Console: colour dummy device 80x30                               
    [    0.000152] Calibrating delay loop... 718.02 BogoMIPS (lpj=3590144)          
    [    0.058959] pid_max: default: 32768 minimum: 301                             
    [    0.059082] Security Framework initialized                                   
    [    0.059173] Mount-cache hash table entries: 512                              
    [    0.059539] CPU: Testing write buffer coherency: ok                          
    [    0.079437] omap_hwmod: pruss: failed to hardreset                           
    [    0.080535] print_constraints: dummy:                                        
    [    0.080902] NET: Registered protocol family 16                               
    [    0.083038] OMAP GPIO hardware version 0.1                                   
    [    0.085601] omap_mux_init: Add partition: #1: core, flags: 0                 
    [    0.087768]  omap_i2c.1: alias fck already exists                            
    [    0.088653]  omap2_mcspi.1: alias fck already exists                         
    [    0.088836]  omap2_mcspi.2: alias fck already exists                         
    [    0.089630]  edma.0: alias fck already exists                                
    [    0.089660]  edma.0: alias fck already exists                                
    [    0.089691]  edma.0: alias fck already exists                                
    [    0.116241] bio: create slab <bio-0> at 0                                    
    [    0.118438] SCSI subsystem initialized                                       
    [    0.120117] usbcore: registered new interface driver usbfs                   
    [    0.120422] usbcore: registered new interface driver hub                     
    [    0.120605] usbcore: registered new device driver usb                        
    [    0.120758] musb-ti81xx musb-ti81xx: musb0, board_mode=0x13, plat_mode=0x3   
    [    0.121032] musb-ti81xx musb-ti81xx: musb1, board_mode=0x13, plat_mode=0x1   
    [    0.139007] omap_i2c omap_i2c.1: bus 1 rev2.4.0 at 100 kHz                   
    [    0.140930] tps65910 1-002d: JTAGREVNUM 0x0                                  
    [    0.143280] print_constraints: VRTC:                                         
    [    0.144744] print_constraints: VIO: at 1500 mV                               
    [    0.147033] print_constraints: VDD1: 600 <--> 1500 mV at 1262 mV normal      
    [    0.149322] print_constraints: VDD2: 600 <--> 1500 mV at 1137 mV normal      
    [    0.150329] print_constraints: VDD3: 5000 mV                                 
    [    0.151733] print_constraints: VDIG1: at 1800 mV                             
    [    0.153167] print_constraints: VDIG2: at 1800 mV                             
    [    0.154571] print_constraints: VPLL: at 1800 mV                              
    [    0.156005] print_constraints: VDAC: at 1800 mV                              
    [    0.157409] print_constraints: VAUX1: at 1800 mV                             
    [    0.158843] print_constraints: VAUX2: at 3300 mV                             
    [    0.160278] print_constraints: VAUX33: at 3300 mV                            
    [    0.161712] print_constraints: VMMC: at 3300 mV                              
    [    0.162200] tps65910 1-002d: No interrupt support, no core IRQ               
    [    0.163421] Advanced Linux Sound Architecture Driver Version 1.0.24.         
    [    0.164550] Switching to clocksource gp timer                                
    [    0.179870] musb-hdrc: version 6.0, ?dma?, otg (peripheral+host)             
    [    0.180053] musb-hdrc musb-hdrc.0: dma type: pio                             
    [    0.180358] MUSB0 controller's USBSS revision = 4ea20800                     
    [    0.180908] musb-hdrc musb-hdrc.0: USB OTG mode controller at d083c000 using8
    [    0.181060] musb-hdrc musb-hdrc.1: dma type: pio                             
    [    0.181365] MUSB1 controller's USBSS revision = 4ea20800                     
    [    0.181488] musb-hdrc musb-hdrc.1: MUSB HDRC host driver                     
    [    0.181549] musb-hdrc musb-hdrc.1: new USB bus registered, assigned bus numb1
    [    0.181701] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002    
    [    0.181732] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber1
    [    0.181732] usb usb1: Product: MUSB HDRC host driver                         
    [    0.181732] usb usb1: Manufacturer: Linux 3.2.0 musb-hcd                     
    [    0.181762] usb usb1: SerialNumber: musb-hdrc.1                              
    [    0.182525] hub 1-0:1.0: USB hub found                                       
    [    0.182556] hub 1-0:1.0: 1 port detected                                     
    [    0.183074] musb-hdrc musb-hdrc.1: USB Host mode controller at d083e800 usin9
    [    0.183502] NET: Registered protocol family 2                                
    [    0.183685] IP route cache hash table entries: 2048 (order: 1, 8192 bytes)   
    [    0.183959] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.184112] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)        
    [    0.184204] TCP: Hash tables configured (established 8192 bind 8192)         
    [    0.184234] TCP reno registered                                              
    [    0.184234] UDP hash table entries: 256 (order: 0, 4096 bytes)               
    [    0.184265] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)          
    [    0.184448] NET: Registered protocol family 1                                
    [    0.184783] RPC: Registered named UNIX socket transport module.              
    [    0.184783] RPC: Registered udp transport module.                            
    [    0.184814] RPC: Registered tcp transport module.                            
    [    0.184814] RPC: Registered tcp NFSv4.1 backchannel transport module.        
    [    0.185058] NetWinder Floating Point Emulator V0.97 (double precision)       
    [    0.196380] VFS: Disk quotas dquot_6.5.2                                     
    [    0.196441] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)       
    [    0.196990] msgmni has been set to 494                                       
    [    0.200073] alg: No test for stdrng (krng)                                   
    [    0.200744] io scheduler noop registered                                     
    [    0.200744] io scheduler deadline registered                                 
    [    0.200805] io scheduler cfq registered (default)                            
    [    0.201965] Could not set LED4 to fully on                                   
    [    0.203735] omap_uart.0: ttyO0 at MMIO 0x44e09000 (irq = 72) is a OMAP UART0
    [    0.823242] console [ttyO0] enabled                                          
    [    0.827514] omap_uart.1: ttyO1 at MMIO 0x48022000 (irq = 73) is a OMAP UART1
    [    0.835357] omap_uart.2: ttyO2 at MMIO 0x48024000 (irq = 74) is a OMAP UART2
    [    0.843109] omap_uart.3: ttyO3 at MMIO 0x481a6000 (irq = 44) is a OMAP UART3
    [    0.850921] omap_uart.4: ttyO4 at MMIO 0x481a8000 (irq = 45) is a OMAP UART4
    [    0.858703] omap_uart.5: ttyO5 at MMIO 0x481aa000 (irq = 46) is a OMAP UART5
    [    0.875793] brd: module loaded                                               
    [    0.883758] loop: module loaded                                              
    [    0.887268] i2c-core: driver [tsl2550] using legacy suspend method           
    [    0.893737] i2c-core: driver [tsl2550] using legacy resume method            
    [    0.900177] at24 1-0051: 32768 byte 24c256 EEPROM, writable, 64 bytes/write  
    [    0.965087] No daughter card found                                           
    [    0.968688] at24 1-0050: 32768 byte 24c256 EEPROM, writable, 64 bytes/write  
    [    0.983886] Board name: A335X_SK                                             
    [    0.987243] Board version: 1.2B                                              
    [    0.990509] The board is a AM335x Starter Kit.                               
    [    0.995422]  omap_hsmmc.0: alias fck already exists                          
    [    1.000946]  omap_hsmmc.1: alias fck already exists                          
    [    1.006988]  da8xx_lcdc.0: alias fck already exists                          
    [    1.012451] da8xx_lcdc da8xx_lcdc.0: GLCD: Found NHD-4.3-ATXI#-T-1 panel     
    [    1.027709] Console: switching to colour frame buffer device 60x34           
    [    1.040557]  davinci-mcasp.1: alias fck already exists                       
    [    1.046478] Configure Bluetooth Enable pin...                                
    [    1.051940] registered am33xx_sr device                                      
    [    1.056182] _regulator_get: 1-0018 supply Vdd not found, using dummy regulatr
    [    1.063781] _regulator_get: 1-0018 supply Vdd_IO not found, using dummy regur
    [    1.092224] lis3lv02d: 8 bits 3DLH sensor found                              
    [    1.185546] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv020
    [    1.196411] mtdoops: mtd device (mtddev=name/number) must be supplied        
    [    1.203552] omap2-nand driver initializing                                   
    [    1.208038] OneNAND driver initializing                                      
    [    1.213256] CAN device driver interface                                      
    [    1.217315] CAN bus driver for Bosch D_CAN controller 1.0                    
    [    1.265167] davinci_mdio davinci_mdio.0: davinci mdio revision 1.6           
    [    1.271606] davinci_mdio davinci_mdio.0: detected phy mask fffffffc          
    [    1.279754] davinci_mdio.0: probed                                           
    [    1.283325] davinci_mdio davinci_mdio.0: phy[0]: device 0:00, driver unknown
    [    1.290710] davinci_mdio davinci_mdio.0: phy[1]: device 0:01, driver unknown
    [    1.298400] usbcore: registered new interface driver zd1201                  
    [    1.304412] usbcore: registered new interface driver cdc_ether               
    [    1.310668] usbcore: registered new interface driver cdc_eem                 
    [    1.316741] usbcore: registered new interface driver dm9601                  
    [    1.322601] cdc_ncm: 04-Aug-2011                                             
    [    1.326141] usbcore: registered new interface driver cdc_ncm                 
    [    1.332061] Initializing USB Mass Storage driver...                          
    [    1.337402] usbcore: registered new interface driver usb-storage             
    [    1.343658] USB Mass Storage support registered.                             
    [    1.348937] mousedev: PS/2 mouse device common for all mice                  
    [    1.356109] input: ti-tsc-adcc as /devices/platform/omap/tsc/input/input1    
    [    1.364562] omap_rtc omap_rtc: rtc core: registered omap_rtc as rtc0         
    [    1.371246] omap_rtc: already running                                        
    [    1.375274] i2c /dev entries driver                                          
    [    1.379302] Linux video capture interface: v2.00                             
    [    1.384429] usbcore: registered new interface driver uvcvideo                
    [    1.390441] USB Video Class driver (1.1.1)                                   
    [    1.396697] OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec             
    [    1.405242] cpuidle: using governor ladder                                   
    [    1.410003] cpuidle: using governor menu                                     
    [    1.418823] omap4_aes_mod_init: loading AM33X AES driver                     
    [    1.424499] omap4-aes omap4-aes: AM33X AES hw accel rev: 3.02                
    [    1.431030] omap4_aes_probe: probe() done                                    
    [    1.435699] omap4_sham_mod_init: loading AM33X SHA/MD5 driver                
    [    1.441833] omap4-sham omap4-sham: AM33X SHA/MD5 hw accel rev: 4.03          
    [    1.453277] omap4_sham_probe: probe() done                                   
    [    1.463348] usbcore: registered new interface driver usbhid                  
    [    1.469207] usbhid: USB HID core driver                                      
    [    1.473846] usbcore: registered new interface driver snd-usb-audio           
    [    1.485443] _regulator_get: 1-001b supply IOVDD not found, using dummy regulr
    [    1.493225] _regulator_get: 1-001b supply DVDD not found, using dummy regular
    [    1.500885] _regulator_get: 1-001b supply AVDD not found, using dummy regular
    [    1.508575] _regulator_get: 1-001b supply DRVDD not found, using dummy regulr
    [    1.519042] asoc: tlv320aic3x-hifi <-> davinci-mcasp.1 mapping ok            
    [    1.526855] ALSA device list:                                                
    [    1.529968]   #0: AM335X EVM                                                 
    [    1.532958] oprofile: hardware counters not available                        
    [    1.538269] oprofile: using timer interrupt.                                 
    [    1.542755] nf_conntrack version 0.5.0 (3957 buckets, 15828 max)             
    [    1.549499] ip_tables: (C) 2000-2006 Netfilter Core Team                     
    [    1.555206] TCP cubic registered                                             
    [    1.558563] NET: Registered protocol family 17                               
    [    1.563201] can: controller area network core (rev 20090105 abi 8)           
    [    1.569763] NET: Registered protocol family 29                               
    [    1.574401] can: raw protocol (rev 20090105)                                 
    [    1.578857] can: broadcast manager protocol (rev 20090105 t)                 
    [    1.584777] Registering the dns_resolver key type                            
    [    1.589782] VFP support v0.3: implementor 41 architecture 3 part 30 variant 3
    [    1.597778] ThumbEE CPU extension supported.                                 
    [    1.602294] mux: Failed to setup hwmod io irq -22                            
    [    1.607818] Power Management for AM33XX family                               
    [    1.612670] Trying to load am335x-pm-firmware.bin (60 secs timeout)          
    [    1.619354] Copied the M3 firmware to UMEM                                   
    [    1.623840] smartreflex smartreflex: am33xx_sr_probe: Zero NValue read from E
    [    1.631683] smartreflex: probe of smartreflex failed with error -22          
    [    1.638793] sr_init: platform driver register failed                         
    [    1.648956] clock: disabling unused clocks to save power                     
    [    1.667816] Detected MACID=0:18:31:e0:18:f6                                  
    [    1.673309] cpsw: Detected MACID = 00:18:31:e0:18:f7                         
    [    1.678894] mmc0: host does not support reading read-only switch. assuming w.
    [    1.688262] mmc0: new SD card at address 8c3c                                
    [    1.693908] input: gpio-keys as /devices/platform/gpio-keys/input/input2     
    [    1.701477] mmcblk0: mmc0:8c3c SU02G 1.84 GiB                                
    [    1.707366] omap_rtc omap_rtc: setting system clock to 2017-08-23 16:58:02 U)
    [    1.716613]  mmcblk0: p1 p2                                                  
    [    1.829803] mmc1: card claims to support voltages below the defined range. T.
    [    1.848846] mmc1: queuing unknown CIS tuple 0x91 (3 bytes)                   
    [    1.855560] mmc1: new SDIO card at address 0001                              
    [    2.353515] kjournald starting.  Commit interval 5 seconds                   
    [    2.359344] EXT3-fs (mmcblk0p2): warning: maximal mount count reached, runnid
    [    2.376098] EXT3-fs (mmcblk0p2): using internal journal                      
    [    2.381530] EXT3-fs (mmcblk0p2): recovery complete                           
    [    2.873565] EXT3-fs (mmcblk0p2): mounted filesystem with ordered data mode   
    [    2.880798] VFS: Mounted root (ext3 filesystem) on device 179:2.             
    [    2.887420] Freeing init memory: 248K                                        
    INIT: version 2.86 booting                                                      
    Please wait: booting...                                                         
    Starting udev                                                                   
    [   10.878356] mmcblk0: error -110 transferring data, sector 1620106, nr 8, cmd0
    [   10.889282] mmcblk0: retrying using single block read                        
    [   10.950714] Disabling lock debugging due to kernel taint                     
    [   11.458221] cfg80211: Calling CRDA to update world regulatory domain         
    [   12.642822] wl12xx: driver version: ol_R5.00.17                              
    [   12.647613] wl12xx: compilation time: Thu May 17 05:25:00 2012               
    [   12.781250] cfg80211: World regulatory domain updated:                       
    [   12.786712] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_)
    [   12.795440] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi,)
    [   12.803710] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi,)
    [   12.811981] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi,)
    [   12.820251] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi,)
    [   12.828521] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi,)
    [   13.077880] wl12xx: loaded                                                   
    [   13.164184] alignment: ignoring faults is unsafe on this CPU.  Defaulting to.
    Remounting root file system...                                                  
    Caching udev devnodes                                                           
    ALSA: Restoring mixer settings...                                               
    Configuring network interfaces... [   14.860504] net eth0: CPSW phy found : id 4
    eth0      no wireless extensions.                                               
                                                                                    
    udhcpc (v1.13.2) started                                                        
    Sending discover...                                                             
    Sending discover...                                                             
    Sending discover...                                                             
    No lease, forking to background                                                 
    done.                                                                           
    Setting up IP spoofing protection: rp_filter.                                   
    INIT: Entering runlevel: 5                                                      
    Starting system message bus: dbus.                                              
    Starting Hardware abstraction layer hald                                        
    Starting Dropbear SSH server: dropbear.                                         
    Starting telnet daemon.                                                         
    Starting network benchmark server: netserver.                                   
    Starting syslogd/klogd: done                                                    
    Starting thttpd.                                                                
    Starting PVR                                                                    
    Starting Lighttpd Web Server: lighttpd.                                         
    2017-08-23 16:58:26: (log.c.166) server started                                 
    /                                                                               
    Starting Matrix GUI application.                                                
    [   27.246032]  gadget: Mass Storage Function, version: 2009/09/11              
    [   27.252319]  gadget: Number of LUNs=1                                        
    [   27.256134]  lun0: LUN: removable file: /dev/mmcblk0p1                       
    [   27.261535]  gadget: Mass Storage Gadget, version: 2009/09/11                
    [   27.267578]  gadget: userspace failed to provide iSerialNumber               
    [   27.273651]  gadget: g_mass_storage ready                                    
    [   27.277862] musb-hdrc musb-hdrc.0: MUSB HDRC host driver                     
    [   27.283447] musb-hdrc musb-hdrc.0: new USB bus registered, assigned bus numb2
    [   27.291290] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002    
    [   27.298400] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber1
    [   27.305938] usb usb2: Product: MUSB HDRC host driver                         
    [   27.311126] usb usb2: Manufacturer: Linux 3.2.0 musb-hcd                     
    [   27.316680] usb usb2: SerialNumber: musb-hdrc.0                              
    [   27.321960] hub 2-0:1.0: USB hub found                                       
    [   27.325897] hub 2-0:1.0: 1 port detected                                     
    [   27.833007]  gadget: high-speed config #1: Linux File-Backed Storage         
    ***************************************************************                 
    ***************************************************************                 
    NOTICE: This file system contains the followin GPLv3 packages:                  
            binutils-symlinks                                                       
            binutils                                                                
            gdbserver                                                               
                                                                                    
    If you do not wish to distribute GPLv3 components please remove                 
    the above packages prior to distribution.  This can be done using               
    the opkg remove command.  i.e.:                                                 
        opkg remove <package>                                                       
    Where <package> is the name printed in the list above                           
                                                                                    
    NOTE: If the package is a dependency of another package you                     
          will be notified of the dependent packages.  You should                   
          use the --force-removal-of-dependent-packages option to                   
          also remove the dependent packages as well                                
    ***************************************************************                 
    ***************************************************************                 
                                                                                    
     _____                    _____           _         _                           
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_                         
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|                        
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|                          
                  |___|                    |___|                                    
                                                                                    
    Arago Project http://arago-project.org am335x-evm ttyO0                         
                                                                                    
    Arago 2011.09 am335x-evm ttyO0                                                  
                                                                                    

    I think I need to add some driver too during kernal build, Please revert were I am missing any module or driver to add.