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/PROCESSOR-SDK-AM335X: Qt application load issue

Part Number: PROCESSOR-SDK-AM335X

Tool/software: Linux

Hi,

I using ti-processor-sdk-linux-am335x-evm-04.01.00.06 , kernel is 4.9.41 .

QT application is loading after PVR module is loaded. Since PVR gets loaded after 1mintue from the power up. QT application is taking around 90 seconds to starts. I want QT application to start within 10 seconds after power up.

Appreciate your support..

  • Hi Madhu,

    I was wondering if your QT application has any hardware accelerator (SGX) dependencies because PVR module needs to get loaded before accessing SGX . Also, for the QT application could you please list all the components (wayland, SGX, DSS, etc) you are trying to access.

    Regards,
    Krunal

  • Hi Krunal Bhargav,

    We are trying to access SGX.

    In device tree we enabled the SGX .
    &sgx {
    status = "okay";
    };

    We are runing Qt-QML apllication with eglfs platform
    ./app -platform eglfs
  • Hi Rahul,

    Upon boot, do you have an automated script to run your application? Also, are you using any services such as systemd to activate your script?

    Regards,
    Krunal
  • yes i am using systemd service to run qt/qml application.
    since my graphics driver was loading at last so i run pvrsrvctl in pvr service.
    now my graphics driver loading early as compare to previous but Qt app is taking same time to run.

    PVR Service
    ===========
    [Unit]
    Description=PVR Services

    [Service]
    Type=oneshot
    RemainAfterExit=yes
    ExecStart=/usr/bin/pvrsrvctl --start
    ExecStop=/usr/bin/pvrsrvctl --stop

    [Install]
    WantedBy=multi-user.target


    Qt/QML Application launch service
    =======================
    [Unit]
    Description=QT Service
    After=pvr.service

    [Service]
    #Type=forking
    Environment="QT_QPA_EGLFS_KMS_CONFIG=/etc/qt5/eglfs_kms_cfg.json"
    ExecStart=/home/root/Sample_Application/app/Tadano -platform eglfs
    Restart=always
    #StandardOutput=syslog
    #StandardError=inherit

    [Install]
    WantedBy=multi-user.target
  • Hi Rahul,

    To better understand your problem, I have modified your script to run out of box QT demo application (/usr/share/qt5/examples/quick/demos/clocks/clocks -platform eglfs). I have attached my boot time log and in the log, the QT service started around 17:11:20 and after 25 seconds, I noticed the QT application running on the LCD.

    I was wondering if your goal is to reduce the time from 25 seconds to 10 seconds.

    After the QT service gets initiated, you will notice other services and drivers (Bluetooth, PRU, USB and etc) are still getting installed. The following training series, https://training.ti.com/designing-quick-starting-embedded-systems-hardware-and-software-elements?cu=1128548, gives a good insight on reducing the boot time.

    [Thu Aug 09 17:11:04.044 2018] 
    [Thu Aug 09 17:11:04.044 2018] U-Boot SPL 2017.01-g590c7d7fe1 (Sep 26 2017 - 18:28:01)
    [Thu Aug 09 17:11:04.107 2018] Trying to boot from MMC1
    [Thu Aug 09 17:11:04.185 2018] reading uboot.env
    [Thu Aug 09 17:11:04.185 2018] 
    [Thu Aug 09 17:11:04.185 2018] ** Unable to read "uboot.env" from mmc0:1 **
    [Thu Aug 09 17:11:04.201 2018] Using default environment
    [Thu Aug 09 17:11:04.201 2018] 
    [Thu Aug 09 17:11:04.201 2018] reading u-boot.img
    [Thu Aug 09 17:11:04.201 2018] reading u-boot.img
    [Thu Aug 09 17:11:04.201 2018] reading u-boot.img
    [Thu Aug 09 17:11:04.248 2018] reading u-boot.img
    [Thu Aug 09 17:11:04.417 2018] 
    [Thu Aug 09 17:11:04.417 2018] 
    [Thu Aug 09 17:11:04.417 2018] U-Boot 2017.01-g590c7d7fe1 (Sep 26 2017 - 18:28:01 -0400)
    [Thu Aug 09 17:11:04.417 2018] 
    [Thu Aug 09 17:11:04.417 2018] CPU  : AM335X-GP rev 1.0
    [Thu Aug 09 17:11:04.417 2018] Model: TI AM335x EVM-SK
    [Thu Aug 09 17:11:04.417 2018] DRAM:  256 MiB
    [Thu Aug 09 17:11:04.545 2018] NAND:  0 MiB
    [Thu Aug 09 17:11:04.545 2018] MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
    [Thu Aug 09 17:11:04.641 2018] reading uboot.env
    [Thu Aug 09 17:11:04.657 2018] 
    [Thu Aug 09 17:11:04.657 2018] ** Unable to read "uboot.env" from mmc0:1 **
    [Thu Aug 09 17:11:04.657 2018] Using default environment
    [Thu Aug 09 17:11:04.657 2018] 
    [Thu Aug 09 17:11:04.721 2018] <ethaddr> not set. Validating first E-fuse MAC
    [Thu Aug 09 17:11:04.737 2018] Net:   cpsw, usb_ether
    [Thu Aug 09 17:11:04.753 2018] Hit any key to stop autoboot:  2  1  0 
    [Thu Aug 09 17:11:06.844 2018] switch to partitions #0, OK
    [Thu Aug 09 17:11:06.844 2018] mmc0 is current device
    [Thu Aug 09 17:11:06.920 2018] SD/MMC found on device 0
    [Thu Aug 09 17:11:06.936 2018] reading boot.scr
    [Thu Aug 09 17:11:06.936 2018] ** Unable to read file boot.scr **
    [Thu Aug 09 17:11:06.936 2018] reading uEnv.txt
    [Thu Aug 09 17:11:06.936 2018] ** Unable to read file uEnv.txt **
    [Thu Aug 09 17:11:07.030 2018] switch to partitions #0, OK
    [Thu Aug 09 17:11:07.030 2018] mmc0 is current device
    [Thu Aug 09 17:11:07.123 2018] Scanning mmc 0:1...
    [Thu Aug 09 17:11:07.248 2018] switch to partitions #0, OK
    [Thu Aug 09 17:11:07.264 2018] mmc0 is current device
    [Thu Aug 09 17:11:07.342 2018] SD/MMC found on device 0
    [Thu Aug 09 17:11:07.767 2018] 3607512 bytes read in 431 ms (8 MiB/s)
    [Thu Aug 09 17:11:07.829 2018] 41541 bytes read in 43 ms (943.4 KiB/s)
    [Thu Aug 09 17:11:07.829 2018] ## Flattened Device Tree blob at 88000000
    [Thu Aug 09 17:11:07.829 2018]    Booting using the fdt blob at 0x88000000
    [Thu Aug 09 17:11:07.845 2018]    Loading Device Tree to 8df19000, end 8df26244 ... OK
    [Thu Aug 09 17:11:07.860 2018] 
    [Thu Aug 09 17:11:07.860 2018] Starting kernel ...
    [Thu Aug 09 17:11:07.860 2018] 
    [Thu Aug 09 17:11:11.059 2018] [    0.000000] Booting Linux on physical CPU 0x0
    [Thu Aug 09 17:11:11.075 2018] [    0.000000] Linux version 4.9.41-ge3a80a1c5c (gtbldadm@ubuntu-16) (gcc version 6.2.1 20161016 (Linaro GCC 6.2-2016.11) ) #1 PREEMPT Tue Sep 26 18:31:42 EDT 2017
    [Thu Aug 09 17:11:11.106 2018] [    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d
    [Thu Aug 09 17:11:11.106 2018] [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
    [Thu Aug 09 17:11:11.122 2018] [    0.000000] OF: fdt:Machine model: TI AM335x EVM-SK
    [Thu Aug 09 17:11:11.122 2018] [    0.000000] efi: Getting EFI parameters from FDT:
    [Thu Aug 09 17:11:11.122 2018] [    0.000000] efi: UEFI not found.
    [Thu Aug 09 17:11:11.122 2018] [    0.000000] cma: Reserved 48 MiB at 0x8a800000
    [Thu Aug 09 17:11:11.137 2018] [    0.000000] Memory policy: Data cache writeback
    [Thu Aug 09 17:11:11.137 2018] [    0.000000] CPU: All CPU(s) started in SVC mode.
    [Thu Aug 09 17:11:11.137 2018] [    0.000000] AM335X ES1.0 (sgx neon)
    [Thu Aug 09 17:11:11.137 2018] [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 64960
    [Thu Aug 09 17:11:11.153 2018] [    0.000000] Kernel command line: console=ttyO0,115200n8 root=PARTUUID=0001031b-02 rw rootfstype=ext4 rootwait
    [Thu Aug 09 17:11:11.169 2018] [    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)
    [Thu Aug 09 17:11:11.169 2018] [    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
    [Thu Aug 09 17:11:11.169 2018] [    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
    [Thu Aug 09 17:11:11.184 2018] [    0.000000] Memory: 198316K/262144K available (7168K kernel code, 281K rwdata, 2432K rodata, 1024K init, 280K bss, 14676K reserved, 49152K cma-reserved, 0K highmem)
    [Thu Aug 09 17:11:11.200 2018] [    0.000000] Virtual kernel memory layout:
    [Thu Aug 09 17:11:11.200 2018] [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    [Thu Aug 09 17:11:11.200 2018] [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
    [Thu Aug 09 17:11:11.215 2018] [    0.000000]     vmalloc : 0xd0800000 - 0xff800000   ( 752 MB)
    [Thu Aug 09 17:11:11.215 2018] [    0.000000]     lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)
    [Thu Aug 09 17:11:11.215 2018] [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    [Thu Aug 09 17:11:11.231 2018] [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
    [Thu Aug 09 17:11:11.231 2018] [    0.000000]       .text : 0xc0008000 - 0xc0800000   (8160 kB)
    [Thu Aug 09 17:11:11.231 2018] [    0.000000]       .init : 0xc0b00000 - 0xc0c00000   (1024 kB)
    [Thu Aug 09 17:11:11.247 2018] [    0.000000]       .data : 0xc0c00000 - 0xc0c46410   ( 282 kB)
    [Thu Aug 09 17:11:11.247 2018] [    0.000000]        .bss : 0xc0c46410 - 0xc0c8c674   ( 281 kB)
    [Thu Aug 09 17:11:11.262 2018] [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [Thu Aug 09 17:11:11.262 2018] [    0.000000] Preemptible hierarchical RCU implementation.
    [Thu Aug 09 17:11:11.262 2018] [    0.000000] 	Build-time adjustment of leaf fanout to 32.
    [Thu Aug 09 17:11:11.278 2018] [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [Thu Aug 09 17:11:11.278 2018] [    0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
    [Thu Aug 09 17:11:11.278 2018] [    0.000000] OMAP clockevent source: timer2 at 24000000 Hz
    [Thu Aug 09 17:11:11.294 2018] [    0.000017] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns
    [Thu Aug 09 17:11:11.294 2018] [    0.000039] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns
    [Thu Aug 09 17:11:11.309 2018] [    0.000051] OMAP clocksource: timer1 at 24000000 Hz
    [Thu Aug 09 17:11:11.309 2018] [    0.000255] clocksource_probe: no matching clocksources found
    [Thu Aug 09 17:11:11.309 2018] [    0.000445] Console: colour dummy device 80x30
    [Thu Aug 09 17:11:11.325 2018] [    0.000474] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
    [Thu Aug 09 17:11:11.325 2018] [    0.000482] This ensures that you still see kernel messages. Please
    [Thu Aug 09 17:11:11.325 2018] [    0.000489] update your kernel commandline.
    [Thu Aug 09 17:11:11.341 2018] [    0.000515] Calibrating delay loop... 718.02 BogoMIPS (lpj=3590144)
    [Thu Aug 09 17:11:11.341 2018] [    0.118996] pid_max: default: 32768 minimum: 301
    [Thu Aug 09 17:11:11.341 2018] [    0.119146] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [Thu Aug 09 17:11:11.356 2018] [    0.119158] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [Thu Aug 09 17:11:11.356 2018] [    0.120048] CPU: Testing write buffer coherency: ok
    [Thu Aug 09 17:11:11.372 2018] [    0.120469] Setting up static identity map for 0x80100000 - 0x80100060
    [Thu Aug 09 17:11:11.372 2018] [    0.121426] EFI services will not be available.
    [Thu Aug 09 17:11:11.372 2018] [    0.122947] devtmpfs: initialized
    [Thu Aug 09 17:11:11.372 2018] [    0.137372] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
    [Thu Aug 09 17:11:11.397 2018] [    0.137776] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [Thu Aug 09 17:11:11.410 2018] [    0.137809] futex hash table entries: 256 (order: -1, 3072 bytes)
    [Thu Aug 09 17:11:11.410 2018] [    0.141964] pinctrl core: initialized pinctrl subsystem
    [Thu Aug 09 17:11:11.410 2018] [    0.143393] NET: Registered protocol family 16
    [Thu Aug 09 17:11:11.419 2018] [    0.145581] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [Thu Aug 09 17:11:11.419 2018] [    0.162169] omap_hwmod: debugss: _wait_target_disable failed
    [Thu Aug 09 17:11:11.419 2018] [    0.239000] cpuidle: using governor ladder
    [Thu Aug 09 17:11:11.435 2018] [    0.268985] cpuidle: using governor menu
    [Thu Aug 09 17:11:11.435 2018] [    0.276110] OMAP GPIO hardware version 0.1
    [Thu Aug 09 17:11:11.435 2018] [    0.294769] No ATAGs?
    [Thu Aug 09 17:11:11.435 2018] [    0.294800] hw-breakpoint: debug architecture 0x4 unsupported.
    [Thu Aug 09 17:11:11.458 2018] [    0.338665] edma 49000000.edma: TI EDMA DMA engine driver
    [Thu Aug 09 17:11:11.458 2018] [    0.339902] reg-fixed-voltage fixedregulator2: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/pinmux_wl12xx_gpio, deferring probe
    [Thu Aug 09 17:11:11.473 2018] [    0.343606] omap_i2c 44e0b000.i2c: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/pinmux_i2c0_pins, deferring probe
    [Thu Aug 09 17:11:11.490 2018] [    0.343785] media: Linux media interface: v0.10
    [Thu Aug 09 17:11:11.490 2018] [    0.343861] Linux video capture interface: v2.00
    [Thu Aug 09 17:11:11.490 2018] [    0.343927] pps_core: LinuxPPS API ver. 1 registered
    [Thu Aug 09 17:11:11.496 2018] [    0.343936] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [Thu Aug 09 17:11:11.496 2018] [    0.343964] PTP clock support registered
    [Thu Aug 09 17:11:11.496 2018] [    0.344009] EDAC MC: Ver: 3.0.0
    [Thu Aug 09 17:11:11.512 2018] [    0.345272] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400
    [Thu Aug 09 17:11:11.512 2018] [    0.345669] Advanced Linux Sound Architecture Driver Initialized.
    [Thu Aug 09 17:11:11.512 2018] [    0.347042] clocksource: Switched to clocksource timer1
    [Thu Aug 09 17:11:11.528 2018] [    0.359241] NET: Registered protocol family 2
    [Thu Aug 09 17:11:11.528 2018] [    0.360132] TCP established hash table entries: 2048 (order: 1, 8192 bytes)
    [Thu Aug 09 17:11:11.528 2018] [    0.360173] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
    [Thu Aug 09 17:11:11.543 2018] [    0.360205] TCP: Hash tables configured (established 2048 bind 2048)
    [Thu Aug 09 17:11:11.543 2018] [    0.360284] UDP hash table entries: 256 (order: 0, 4096 bytes)
    [Thu Aug 09 17:11:11.559 2018] [    0.360305] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
    [Thu Aug 09 17:11:11.559 2018] [    0.360458] NET: Registered protocol family 1
    [Thu Aug 09 17:11:11.559 2018] [    0.360951] RPC: Registered named UNIX socket transport module.
    [Thu Aug 09 17:11:11.575 2018] [    0.360969] RPC: Registered udp transport module.
    [Thu Aug 09 17:11:11.575 2018] [    0.360977] RPC: Registered tcp transport module.
    [Thu Aug 09 17:11:11.575 2018] [    0.360984] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [Thu Aug 09 17:11:11.590 2018] [    0.362032] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available
    [Thu Aug 09 17:11:11.590 2018] [    0.364749] workingset: timestamp_bits=14 max_order=16 bucket_order=2
    [Thu Aug 09 17:11:11.590 2018] [    0.373968] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [Thu Aug 09 17:11:11.620 2018] [    0.375105] NFS: Registering the id_resolver key type
    [Thu Aug 09 17:11:11.620 2018] [    0.375152] Key type id_resolver registered
    [Thu Aug 09 17:11:11.620 2018] [    0.375162] Key type id_legacy registered
    [Thu Aug 09 17:11:11.636 2018] [    0.375214] ntfs: driver 2.1.32 [Flags: R/O].
    [Thu Aug 09 17:11:11.636 2018] [    0.377622] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
    [Thu Aug 09 17:11:11.636 2018] [    0.377647] io scheduler noop registered
    [Thu Aug 09 17:11:11.639 2018] [    0.377655] io scheduler deadline registered
    [Thu Aug 09 17:11:11.639 2018] [    0.377833] io scheduler cfq registered (default)
    [Thu Aug 09 17:11:11.639 2018] [    0.379463] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568
    [Thu Aug 09 17:11:11.655 2018] [    0.383006] backlight supply power not found, using dummy regulator
    [Thu Aug 09 17:11:11.655 2018] [    0.454425] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [Thu Aug 09 17:11:11.655 2018] [    0.459032] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 158, base_baud = 3000000) is a 8250
    [Thu Aug 09 17:11:11.671 2018] [    1.060481] console [ttyS0] enabled
    [Thu Aug 09 17:11:11.671 2018] [    1.066090] omap_rng 48310000.rng: OMAP Random Number Generator ver. 20
    [Thu Aug 09 17:11:11.686 2018] [    1.072992] [drm] Initialized
    [Thu Aug 09 17:11:11.686 2018] [    1.077323] panel panel: found backlight
    [Thu Aug 09 17:11:11.686 2018] [    1.082313] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [Thu Aug 09 17:11:11.717 2018] [    1.089044] [drm] No driver support for vblank timestamp query.
    [Thu Aug 09 17:11:11.733 2018] [    1.123081] Console: switching to colour frame buffer device 60x34
    [Thu Aug 09 17:11:11.733 2018] [    1.131810] tilcdc 4830e000.lcdc: fb0:  frame buffer device
    [Thu Aug 09 17:11:11.796 2018] [    1.183317] brd: module loaded
    [Thu Aug 09 17:11:11.796 2018] [    1.194040] loop: module loaded
    [Thu Aug 09 17:11:11.811 2018] [    1.200153] libphy: Fixed MDIO Bus: probed
    [Thu Aug 09 17:11:11.905 2018] [    1.277094] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6
    [Thu Aug 09 17:11:11.905 2018] [    1.283272] davinci_mdio 4a101000.mdio: detected phy mask fffffffc
    [Thu Aug 09 17:11:11.905 2018] [    1.290994] libphy: 4a101000.mdio: probed
    [Thu Aug 09 17:11:11.921 2018] [    1.295040] davinci_mdio 4a101000.mdio: phy[0]: device 4a101000.mdio:00, driver Atheros 8031 ethernet
    [Thu Aug 09 17:11:11.921 2018] [    1.304464] davinci_mdio 4a101000.mdio: phy[1]: device 4a101000.mdio:01, driver Atheros 8031 ethernet
    [Thu Aug 09 17:11:11.936 2018] [    1.314639] cpsw 4a100000.ethernet: Detected MACID = d4:94:a1:87:2b:14
    [Thu Aug 09 17:11:11.936 2018] [    1.321617] cpsw 4a100000.ethernet: cpts: overflow check period 500 (jiffies)
    [Thu Aug 09 17:11:11.952 2018] [    1.330196] cpsw 4a100000.ethernet: cpsw: Detected MACID = d4:94:a1:87:2b:15
    [Thu Aug 09 17:11:11.952 2018] [    1.339117] mousedev: PS/2 mouse device common for all mice
    [Thu Aug 09 17:11:11.967 2018] [    1.345144] i2c /dev entries driver
    [Thu Aug 09 17:11:11.967 2018] [    1.351036] cpuidle: enable-method property 'ti,am3352' found operations
    [Thu Aug 09 17:11:11.983 2018] [    1.358999] omap_hsmmc 48060000.mmc: Got CD GPIO
    [Thu Aug 09 17:11:11.983 2018] [    1.366535] ledtrig-cpu: registered to indicate activity on CPUs
    [Thu Aug 09 17:11:11.999 2018] [    1.376250] NET: Registered protocol family 10
    [Thu Aug 09 17:11:11.999 2018] [    1.382510] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
    [Thu Aug 09 17:11:12.014 2018] [    1.389642] NET: Registered protocol family 17
    [Thu Aug 09 17:11:12.014 2018] [    1.394441] Key type dns_resolver registered
    [Thu Aug 09 17:11:12.014 2018] [    1.399257] omap_voltage_late_init: Voltage driver support not added
    [Thu Aug 09 17:11:12.061 2018] [    1.437312] tps65910 0-002d: No interrupt support, no core IRQ
    [Thu Aug 09 17:11:12.061 2018] [    1.445432] vrtc: supplied by vbat
    [Thu Aug 09 17:11:12.077 2018] [    1.452734] vio: supplied by vbat
    [Thu Aug 09 17:11:12.077 2018] [    1.457750] vdd1: supplied by vbat
    [Thu Aug 09 17:11:12.077 2018] [    1.463076] vdd2: supplied by vbat
    [Thu Aug 09 17:11:12.077 2018] [    1.468270] random: fast init done
    [Thu Aug 09 17:11:12.092 2018] [    1.473287] vdig1: supplied by vbat
    [Thu Aug 09 17:11:12.092 2018] [    1.478335] vdig2: supplied by vbat
    [Thu Aug 09 17:11:12.092 2018] [    1.483287] vpll: supplied by vbat
    [Thu Aug 09 17:11:12.108 2018] [    1.488181] vdac: supplied by vbat
    [Thu Aug 09 17:11:12.108 2018] [    1.493062] vaux1: supplied by vbat
    [Thu Aug 09 17:11:12.108 2018] [    1.498004] vaux2: supplied by vbat
    [Thu Aug 09 17:11:12.124 2018] [    1.502903] vaux33: supplied by vbat
    [Thu Aug 09 17:11:12.124 2018] [    1.508040] vmmc: supplied by vbat
    [Thu Aug 09 17:11:12.124 2018] [    1.512984] vbb: supplied by vbat
    [Thu Aug 09 17:11:12.139 2018] [    1.518070] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz
    [Thu Aug 09 17:11:12.139 2018] [    1.525661] omap_hsmmc 48060000.mmc: Got CD GPIO
    [Thu Aug 09 17:11:12.249 2018] [    1.634374] mmc0: host does not support reading read-only switch, assuming write-enable
    [Thu Aug 09 17:11:12.264 2018] [    1.644433] mmc0: new high speed SDHC card at address 59b4
    [Thu Aug 09 17:11:12.264 2018] [    1.650978] mmcblk0: mmc0:59b4 NCard 15.0 GiB 
    [Thu Aug 09 17:11:12.264 2018] [    1.657440]  mmcblk0: p1 p2
    [Thu Aug 09 17:11:12.342 2018] [    1.739106] input: gpio_buttons0 as /devices/platform/gpio_buttons0/input/input0
    [Thu Aug 09 17:11:12.358 2018] [    1.750539] hctosys: unable to open rtc device (rtc0)
    [Thu Aug 09 17:11:12.358 2018] [    1.756024] omap_hsmmc 481d8000.mmc: card claims to support voltages below defined range
    [Thu Aug 09 17:11:12.374 2018] [    1.764714] lis3_reg: disabling
    [Thu Aug 09 17:11:12.374 2018] [    1.768174] ALSA device list:
    [Thu Aug 09 17:11:12.374 2018] [    1.768180]   No soundcards found.
    [Thu Aug 09 17:11:12.417 2018] [    1.792512] mmc1: new SDIO card at address 0001
    [Thu Aug 09 17:11:14.828 2018] [    4.209202] EXT4-fs (mmcblk0p2): recovery complete
    [Thu Aug 09 17:11:14.828 2018] [    4.217655] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
    [Thu Aug 09 17:11:14.844 2018] [    4.226032] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [Thu Aug 09 17:11:14.860 2018] [    4.242533] devtmpfs: mounted
    [Thu Aug 09 17:11:14.860 2018] [    4.251170] Freeing unused kernel memory: 1024K (c0b00000 - c0c00000)
    [Thu Aug 09 17:11:15.156 2018] [    4.545837] systemd[1]: System time before build time, advancing clock.
    [Thu Aug 09 17:11:15.250 2018] [    4.641131] systemd[1]: systemd 230 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
    [Thu Aug 09 17:11:15.266 2018] [    4.660466] systemd[1]: Detected architecture arm.
    [Thu Aug 09 17:11:15.297 2018] 
    [Thu Aug 09 17:11:15.297 2018] Welcome to Arago 2017.06!
    [Thu Aug 09 17:11:15.297 2018] 
    [Thu Aug 09 17:11:15.313 2018] [    4.698498] systemd[1]: Set hostname to <am335x-evm>.
    [Thu Aug 09 17:11:15.665 2018] [    5.043718] systemd[1]: [/lib/systemd/system/gadget-init.service:15] Unknown lvalue 'ExecStopPre' in section 'Service'
    [Thu Aug 09 17:11:15.998 2018] [    5.382294] systemd[1]: sysinit.target: Found ordering cycle on sysinit.target/start
    [Thu Aug 09 17:11:16.013 2018] [    5.390388] systemd[1]: sysinit.target: Found dependency on alignment.service/start
    [Thu Aug 09 17:11:16.013 2018] [    5.398249] systemd[1]: sysinit.target: Found dependency on basic.target/start
    [Thu Aug 09 17:11:16.029 2018] [    5.405529] systemd[1]: sysinit.target: Found dependency on sockets.target/start
    [Thu Aug 09 17:11:16.029 2018] [    5.413050] systemd[1]: sysinit.target: Found dependency on rpcbind.socket/start
    [Thu Aug 09 17:11:16.044 2018] [    5.420525] systemd[1]: sysinit.target: Found dependency on sysinit.target/start
    [Thu Aug 09 17:11:16.044 2018] [ SKIP ] Ordering cycle found, skipping alignment.service
    [Thu Aug 09 17:11:16.076 2018] [  OK  ] Listening on Journal Socket.
    [Thu Aug 09 17:11:16.107 2018] [  OK  ] Listening on Process Core Dump Socket.
    [Thu Aug 09 17:11:16.138 2018] [  OK  ] Created slice System Slice.
    [Thu Aug 09 17:11:16.169 2018]          Mounting Debug File System...
    [Thu Aug 09 17:11:16.185 2018] [  OK  ] Reached target Remote File Systems.
    [Thu Aug 09 17:11:16.232 2018]          Starting Load Kernel Modules...
    [Thu Aug 09 17:11:16.263 2018] [  OK  ] Listening on udev Kernel Socket.
    [Thu Aug 09 17:11:16.263 2018] [    5.649054] cryptodev: loading out-of-tree module taints kernel.
    [Thu Aug 09 17:11:16.279 2018] [    5.661874] cryptodev: driver 1.8 loaded.
    [Thu Aug 09 17:11:16.294 2018] [  OK  ] Listening on Journal Socket (/dev/log).
    [Thu Aug 09 17:11:16.341 2018] [  OK  ] Listening on Network Service Netlink Socket.
    [Thu Aug 09 17:11:16.386 2018] [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [Thu Aug 09 17:11:16.417 2018] [  OK  ] Created slice system-getty.slice.
    [Thu Aug 09 17:11:16.419 2018] [  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
    [Thu Aug 09 17:11:16.482 2018]          Starting Setup Virtual Console...
    [Thu Aug 09 17:11:16.482 2018]          Starting Remount Root and Kernel File Systems...
    [Thu Aug 09 17:11:16.529 2018]          Starting Create Static Device Nodes in /dev...
    [Thu Aug 09 17:11:16.544 2018] [  OK  ] Listening on Syslog Socket.
    [Thu Aug 09 17:11:16.576 2018]          Starting Journal Service...
    [Thu Aug 09 17:11:16.623 2018] [  OK  ] Created slice User and Session Slice.
    [Thu Aug 09 17:11:16.640 2018] [  OK  ] Reached target Slices.
    [Thu Aug 09 17:11:16.640 2018] [    6.019174] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
    [Thu Aug 09 17:11:16.655 2018] [  OK  ] Listening on udev Control Socket.
    [Thu Aug 09 17:11:16.655 2018] [  OK  ] Created slice system-serial\x2dgetty.slice.
    [Thu Aug 09 17:11:16.686 2018] [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [Thu Aug 09 17:11:16.702 2018] [  OK  ] Reached target Paths.
    [Thu Aug 09 17:11:16.733 2018]          Mounting POSIX Message Queue File System...
    [Thu Aug 09 17:11:16.749 2018] [  OK  ] Reached target Swap.
    [Thu Aug 09 17:11:16.765 2018]          Mounting Temporary Directory...
    [Thu Aug 09 17:11:16.827 2018] [  OK  ] Mounted POSIX Message Queue File System.
    [Thu Aug 09 17:11:16.843 2018] [  OK  ] Mounted Debug File System.
    [Thu Aug 09 17:11:16.882 2018] [  OK  ] Mounted Temporary Directory.
    [Thu Aug 09 17:11:16.890 2018] [  OK  ] Started Load Kernel Modules.
    [Thu Aug 09 17:11:16.921 2018] [  OK  ] Started Setup Virtual Console.
    [Thu Aug 09 17:11:16.921 2018] [  OK  ] Started Remount Root and Kernel File Systems.
    [Thu Aug 09 17:11:16.953 2018] [  OK  ] Started Create Static Device Nodes in /dev.
    [Thu Aug 09 17:11:16.984 2018] [  OK  ] Started Journal Service.
    [Thu Aug 09 17:11:17.031 2018]          Starting udev Kernel Device Manager...
    [Thu Aug 09 17:11:17.078 2018]          Starting udev Coldplug all Devices...
    [Thu Aug 09 17:11:17.093 2018] [  OK  ] Reached target Local File Systems (Pre).
    [Thu Aug 09 17:11:17.156 2018]          Mounting /media/ram...
    [Thu Aug 09 17:11:17.187 2018]          Mounting /var/volatile...
    [Thu Aug 09 17:11:17.234 2018]          Starting Flush Journal to Persistent Storage...
    [Thu Aug 09 17:11:17.281 2018]          Mounting Configuration File System...
    [Thu Aug 09 17:11:17.359 2018]          Starting Apply Kernel Variables...
    [Thu Aug 09 17:11:17.472 2018] [  OK  ] Mounted Configuration File System.
    [Thu Aug 09 17:11:17.503 2018] [  OK  ] Mounted /var/volatile.
    [Thu Aug 09 17:11:17.535 2018] [  OK  ] Mounted /media/ram.
    [Thu Aug 09 17:11:17.582 2018] [  OK  ] Started udev Kernel Device Manager.
    [Thu Aug 09 17:11:17.613 2018] [  OK  ] Started Apply Kernel Variables.
    [Thu Aug 09 17:11:17.783 2018] [    7.169910] systemd-journald[99]: Received request to flush runtime journal from PID 1
    [Thu Aug 09 17:11:17.830 2018]          Starting Load/Save Random Seed...
    [Thu Aug 09 17:11:17.861 2018] [  OK  ] Reached target Local File Systems.
    [Thu Aug 09 17:11:17.935 2018] [  OK  ] Started Flush Journal to Persistent Storage.
    [Thu Aug 09 17:11:17.982 2018] [  OK  ] Started Load/Save Random Seed.
    [Thu Aug 09 17:11:18.091 2018]          Starting Create Volatile Files and Directories...
    [Thu Aug 09 17:11:18.279 2018] [  OK  ] Started Create Volatile Files and Directories.
    [Thu Aug 09 17:11:18.357 2018]          Starting Network Time Synchronization...
    [Thu Aug 09 17:11:18.417 2018]          Starting Update UTMP about System Boot/Shutdown...
    [Thu Aug 09 17:11:18.639 2018] [  OK  ] Started Update UTMP about System Boot/Shutdown.
    [Thu Aug 09 17:11:18.733 2018] [  OK  ] Started Network Time Synchronization.
    [Thu Aug 09 17:11:18.765 2018] [  OK  ] Reached target System Time Synchronized.
    [Thu Aug 09 17:11:19.448 2018] [  OK  ] Created slice system-systemd\x2dbacklight.slice.
    [Thu Aug 09 17:11:19.535 2018]          Starting Load/Save Screen Backlight...htness of backlight:backlight...
    [Thu Aug 09 17:11:19.669 2018] [    9.065061] omap_rtc 44e3e000.rtc: already running
    [Thu Aug 09 17:11:19.785 2018] [  OK  ] Found device /dev/ttyS0.
    [Thu Aug 09 17:11:19.801 2018] [    9.178571] omap_rtc 44e3e000.rtc: rtc core: registered 44e3e000.rtc as rtc0
    [Thu Aug 09 17:11:19.890 2018] [  OK  ] Started Load/Save Screen Backlight Brightness of backlight:backlight.
    [Thu Aug 09 17:11:19.922 2018] [    9.298336] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
    [Thu Aug 09 17:11:20.000 2018] [  OK  ] Started udev Coldplug all Devices.
    [Thu Aug 09 17:11:20.031 2018] [  OK  ] Reached target System Initialization.
    [Thu Aug 09 17:11:20.563 2018] [  OK  ] Listening on dropbear.socket.
    [Thu Aug 09 17:11:20.594 2018] [  OK  ] Started Daily Cleanup of Temporary Directories.
    [Thu Aug 09 17:11:20.610 2018] [  OK  ] Reached target Timers.
    [Thu Aug 09 17:11:20.625 2018] [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [Thu Aug 09 17:11:20.641 2018] [  OK  ] Listening on D-Bus System Message Bus Socket.
    [Thu Aug 09 17:11:20.672 2018] [  OK  ] Listening on RPCbind Server Activation Socket.
    [Thu Aug 09 17:11:20.672 2018] [  OK  ] Reached target Sockets.
    [Thu Aug 09 17:11:20.703 2018] [  OK  ] Reached target Basic System.
    [Thu Aug 09 17:11:20.750 2018] [  OK  ] Started Kernel Logging Service.
    [Thu Aug 09 17:11:20.813 2018] [  OK  ] Started QT Service.
    [Thu Aug 09 17:11:20.844 2018]          Starting Telephony service...
    [Thu Aug 09 17:11:20.998 2018] [  OK  ] Started D-Bus System Message Bus.
    [Thu Aug 09 17:11:21.843 2018] [  OK  ] Started Telephony service.
    [Thu Aug 09 17:11:21.875 2018]          Starting Network Service...
    [Thu Aug 09 17:11:22.000 2018] [  OK  ] Started System Logging Service.
    [Thu Aug 09 17:11:22.015 2018] [   11.394837] Bluetooth: Core ver 2.22
    [Thu Aug 09 17:11:22.062 2018] [   11.437376] NET: Registered protocol family 31
    [Thu Aug 09 17:11:22.109 2018]          [   11.497372] Bluetooth: HCI device and connection manager initialized
    [Thu Aug 09 17:11:22.125 2018] Starting Login Service...
    [Thu Aug 09 17:11:22.265 2018] [   11.590504] omap-sham 53100000.sham: hw accel on OMAP rev 4.3
    [Thu Aug 09 17:11:22.359 2018] [   11.704481] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2
    [Thu Aug 09 17:11:22.464 2018] [   11.716696] omap-aes 53500000.aes: will run requests pump with realtime priority
    [Thu Aug 09 17:11:22.589 2018] [   11.799705] [drm] Initialized pvr 1.14.3699939 20110701 on minor 1
    [Thu Aug 09 17:11:22.733 2018]          [   12.116321] Bluetooth: HCI socket layer initialized
    [Thu Aug 09 17:11:22.733 2018] Starting uim-sysfs.service...
    [Thu Aug 09 17:11:22.858 2018] [   12.145661] remoteproc remoteproc0: wkup_m3 is available
    [Thu Aug 09 17:11:22.952 2018] [   12.211246] remoteproc remoteproc0: powering up wkup_m3
    [Thu Aug 09 17:11:22.952 2018] [   12.232819] PM: Cannot get wkup_m3_ipc handle
    [Thu Aug 09 17:11:23.124 2018] [   12.290801] remoteproc remoteproc0: Booting fw image am335x-pm-firmware.elf, size 224344
    [Thu Aug 09 17:11:23.264 2018] [   12.291084] remoteproc remoteproc0: remote processor wkup_m3 is now up
    [Thu Aug 09 17:11:23.358 2018] [   12.291113] wkup_m3_ipc 44e11324.wkup_m3_ipc: CM3 Firmware Version = 0x192
    [Thu Aug 09 17:11:23.448 2018] [   12.525991] net eth1: initializing cpsw version 1.12 (0)
    [Thu Aug 09 17:11:23.526 2018] [   12.526006] net eth0: initialized cpsw ale version 1.4
    [Thu Aug 09 17:11:23.605 2018] [   12.526013] net eth0: ALE Table size 1024
    [Thu Aug 09 17:11:23.636 2018] [   12.648084] Atheros 8031 ethernet 4a101000.mdio:01: attached PHY driver [Atheros 8031 ethernet] (mii_bus:phy_addr=4a101000.mdio:01, irq=-1)
    [Thu Aug 09 17:11:23.792 2018] [   12.716878] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
    [Thu Aug 09 17:11:23.792 2018] [   12.772540] asoc-simple-card sound: tlv320aic3x-hifi <-> 4803c000.mcasp mapping ok
    [Thu Aug 09 17:11:24.010 2018] [   12.800658] PM: bootloader does not support rtc-only!
    [Thu Aug 09 17:11:24.088 2018] [   12.839477] net eth0: initializing cpsw version 1.12 (0)
    [Thu Aug 09 17:11:24.135 2018] [   12.938929] Atheros 8031 ethernet 4a101000.mdio:00: attached PHY driver [Atheros 8031 ethernet] (mii_bus:phy_addr=4a101000.mdio:00, irq=-1)
    [Thu Aug 09 17:11:24.370 2018] [   12.944411] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [Thu Aug 09 17:11:24.489 2018] [   13.871444] PVR_K:(Error): BridgedDispatchKM: Driver initialisation not completed yet.
    [Thu Aug 09 17:11:24.652 2018]          [   14.039074] Bluetooth: L2CAP socket layer initialized
    [Thu Aug 09 17:11:24.667 2018] Starting Print notice about GPLv3 packages...
    [Thu Aug 09 17:11:24.792 2018]          Starting Avahi mDNS/DNS-SD Stack...
    [Thu Aug 09 17:11:24.792 2018] [   14.176964] Bluetooth: SCO socket layer initialized
    [Thu Aug 09 17:11:24.897 2018] [  OK  ] Started Network Service.
    [Thu Aug 09 17:11:25.232 2018] [   14.612965] random: crng init done
    [Thu Aug 09 17:11:25.489 2018] [  OK  ] Found device /dev/ttyS3.
    [Thu Aug 09 17:11:25.632 2018] [   15.019711] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [Thu Aug 09 17:11:27.250 2018] [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [Thu Aug 09 17:11:27.328 2018] [  OK  ] Started Login Service.
    [Thu Aug 09 17:11:27.363 2018] [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [Thu Aug 09 17:11:27.363 2018] [  OK  ] Created slice system-systemd\x2dcoredump.slice.
    [Thu Aug 09 17:11:27.470 2018] [  OK  ] Started Process Core Dump (PID 350/UID 0).
    [Thu Aug 09 17:11:27.501 2018] [  OK  ] Reached target Network.
    [Thu Aug 09 17:11:27.517 2018]          Starting Enable and configure wl18xx bluetooth stack...
    [Thu Aug 09 17:11:27.588 2018]          Starting Permit User Sessions...
    [Thu Aug 09 17:11:27.697 2018]          Starting Simple Network Management Protocol (SNMP) Daemon....
    [Thu Aug 09 17:11:27.697 2018] [  OK  ] Started strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf.
    [Thu Aug 09 17:11:27.791 2018]          Starting Lightning Fast Webserver With Light System Requirements...
    [Thu Aug 09 17:11:28.411 2018]          Starting Network Name Resolution...
    [Thu Aug 09 17:11:28.684 2018] [  OK  ] Started Permit User Sessions.
    [Thu Aug 09 17:11:28.731 2018] [  OK  ] Started Lightning Fast Webserver With Light System Requirements.
    [Thu Aug 09 17:11:29.132 2018] [  OK  ] Found device /dev/mmcblk0p1.
    [Thu Aug 09 17:11:29.164 2018] [  OK  ] Started Network Name Resolution.
    [Thu Aug 09 17:11:29.179 2018] [   18.568240] NET: Registered protocol family 15
    [Thu Aug 09 17:11:29.273 2018]          Starting Start USB gadget...
    [Thu Aug 09 17:11:29.273 2018] [  OK  ] Started Serial Getty on ttyS0.
    [Thu Aug 09 17:11:29.367 2018] [  OK  ] Started Getty on tty1.
    [Thu Aug 09 17:11:29.490 2018] [  OK  ] Started Serial Getty on ttyS3.
    [Thu Aug 09 17:11:29.888 2018] [  OK  ] Started Enable and configure wl18xx bluetooth stack.
    [Thu Aug 09 17:11:30.185 2018] [   19.566358] udc-core: couldn't find an available UDC - added [g_multi] to list of pending drivers
    [Thu Aug 09 17:11:30.636 2018] [   20.019985] Initializing XFRM netlink socket
    [Thu Aug 09 17:11:31.681 2018] [   21.054226] TI-am335x-tsc TI-am335x-tsc: ti,charge-delay not specified
    [Thu Aug 09 17:11:31.774 2018] [  OK  ] Started Simple Network Management Protocol (SNMP) Daemon..
    [Thu Aug 09 17:11:31.790 2018] [   21.170347] input: ti-tsc as /devices/platform/ocp/44e0d000.tscadc/TI-am335x-tsc/input/input1
    [Thu Aug 09 17:11:32.171 2018] [FAILED] Failed to start Start USB gadget.
    [Thu Aug 09 17:11:32.171 2018] See 'systemctl status gadget-init.service' for details.
    [Thu Aug 09 17:11:33.763 2018] [   23.156577] 47401300.usb-phy supply vcc not found, using dummy regulator
    [Thu Aug 09 17:11:33.892 2018] [   23.288281] 47401b00.usb-phy supply vcc not found, using dummy regulator
    [Thu Aug 09 17:11:34.015 2018] [   23.330882] usbcore: registered new interface driver usbfs
    [Thu Aug 09 17:11:34.078 2018] [   23.330981] usbcore: registered new interface driver hub
    [Thu Aug 09 17:11:34.078 2018] [   23.332063] usbcore: registered new device driver usb
    [Thu Aug 09 17:11:34.234 2018] [   23.626319] musb-hdrc musb-hdrc.0: MUSB HDRC host driver
    [Thu Aug 09 17:11:34.415 2018] [   23.800623] musb-hdrc musb-hdrc.0: new USB bus registered, assigned bus number 1
    [Thu Aug 09 17:11:34.550 2018] [   23.904973] ti-pruss 4a300000.pruss: creating PRU cores and other child platform devices
    [Thu Aug 09 17:11:34.659 2018] [   23.906871] irq: no irq domain found for /ocp/pruss_soc_bus@4a326000/pruss@4a300000/intc@4a320000 !
    [Thu Aug 09 17:11:34.784 2018] [   23.985107] irq: no irq domain found for /ocp/pruss_soc_bus@4a326000/pruss@4a300000/intc@4a320000 !
    [Thu Aug 09 17:11:34.920 2018] [   24.283104] hub 1-0:1.0: USB hub found
    [Thu Aug 09 17:11:34.967 2018] [   24.283163] hub 1-0:1.0: 1 port detected
    [Thu Aug 09 17:11:35.123 2018] [   24.523134] using random self ethernet address
    [Thu Aug 09 17:11:35.202 2018] [   24.575366] using random host ethernet address
    [Thu Aug 09 17:11:35.233 2018] [   24.575436] using host ethernet address: D4:94:A1:87:2B:15
    [Thu Aug 09 17:11:35.342 2018] [   24.575437] using random self ethernet address
    [Thu Aug 09 17:11:35.342 2018] [   24.575442] using random host ethernet address
    [Thu Aug 09 17:11:35.342 2018] [   24.588749] using host ethernet address: D4:94:A1:87:2B:15
    [Thu Aug 09 17:11:35.536 2018] [   24.588752] usb0: HOST MAC d4:94:a1:87:2b:15
    [Thu Aug 09 17:11:35.536 2018] [   24.589798] usb0: MAC f6:3d:09:e1:a6:dc
    [Thu Aug 09 17:11:35.551 2018] [   24.874840] remoteproc remoteproc1: 4a334000.pru0 is available
    [Thu Aug 09 17:11:35.659 2018] [   24.874953] pru-rproc 4a334000.pru0: PRU rproc node /ocp/pruss_soc_bus@4a326000/pruss@4a300000/pru@4a334000 probed successfully
    [Thu Aug 09 17:11:35.722 2018] [   24.876283] remoteproc remoteproc2: 4a338000.pru1 is available
    [Thu Aug 09 17:11:35.722 2018] [   24.876376] pru-rproc 4a338000.pru1: PRU rproc node /ocp/pruss_soc_bus@4a326000/pruss@4a300000/pru@4a338000 probed successfully
    [Thu Aug 09 17:11:35.831 2018] [   25.215589] Mass Storage Function, version: 2009/09/11
    [Thu Aug 09 17:11:35.862 2018] [   25.248573] LUN: removable file: (no medium)
    [Thu Aug 09 17:11:35.894 2018] 
    [Thu Aug 09 17:11:35.909 2018] [   25.294353] LUN: removable read only file: /dev/mmcblk0p1
    [Thu Aug 09 17:11:35.925 2018]  _____                    _____           _         _   
    [Thu Aug 09 17:11:35.925 2018] |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_ 
    [Thu Aug 09 17:11:35.940 2018] |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    [Thu Aug 09 17:11:35.940 2018] |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
    [Thu Aug 09 17:11:35.940 2018]               |___|                    |_[   25.337494] Number of LUNs=1
    [Thu Aug 09 17:11:35.956 2018] __|            
    [Thu Aug 09 17:11:35.956 2018] 
    [Thu Aug 09 17:11:35.956 2018] Arago Project http://arago-project.org am335x-evm ttyS0
    [Thu Aug 09 17:11:35.956 2018] 
    [Thu Aug 09 17:11:35.956 2018] Arago 2017.06 am335x-evm ttyS0
    [Thu Aug 09 17:11:35.956 2018] 
    [Thu Aug 09 17:11:35.987 2018] am335x-evm login: [   25.399098] g_multi gadget: Multifunction Composite Gadget
    [Thu Aug 09 17:11:36.019 2018] [   25.404646] g_multi gadget: g_multi ready
    [Thu Aug 09 17:11:36.081 2018] [   25.475399] musb-hdrc musb-hdrc.1: MUSB HDRC host driver
    [Thu Aug 09 17:11:36.175 2018] [   25.557408] musb-hdrc musb-hdrc.1: new USB bus registered, assigned bus number 2
    [Thu Aug 09 17:11:36.227 2018] [   25.619613] hub 2-0:1.0: USB hub found
    [Thu Aug 09 17:11:36.259 2018] [   25.645607] hub 2-0:1.0: 1 port detected
    [Thu Aug 09 17:11:36.302 2018] [   25.681408] g_multi gadget: high-speed config #1: Multifunction with RNDIS
    [Thu Aug 09 17:11:36.795 2018] [   26.177246] usb 2-1: new low-speed USB device number 2 using musb-hdrc
    [Thu Aug 09 17:11:37.568 2018] [   26.942286] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /devices/platform/ocp/47400000.usb/47401c00.usb/musb-hdrc.1/usb2/2-1/2-1:1.0/0003:045E:0040.0001/input/input2
    [Thu Aug 09 17:11:37.696 2018] [   27.071229] hid-generic 0003:045E:0040.0001: input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-musb-hdrc.1-1/input0
    [Thu Aug 09 17:11:37.792 2018] [   27.177293] usbcore: registered new interface driver usbhid
    [Thu Aug 09 17:11:37.842 2018] [   27.223925] usbhid: USB HID core driver
    [Thu Aug 09 17:11:39.497 2018] ***************************************************************
    [Thu Aug 09 17:11:39.497 2018] ***************************************************************
    [Thu Aug 09 17:11:39.513 2018] NOTICE: This file system contains the following GPLv3 packages:
    [Thu Aug 09 17:11:39.513 2018] 	autoconf
    [Thu Aug 09 17:11:39.513 2018] 	binutils
    [Thu Aug 09 17:11:39.513 2018] 	cifs-utils
    [Thu Aug 09 17:11:39.513 2018] 	cpp-symlinks
    [Thu Aug 09 17:11:39.513 2018] 	cpp
    [Thu Aug 09 17:11:39.513 2018] 	dosfstools
    [Thu Aug 09 17:11:39.513 2018] 	g++-symlinks
    [Thu Aug 09 17:11:39.528 2018] 	g++
    [Thu Aug 09 17:11:39.528 2018] 	gawk-dev
    [Thu Aug 09 17:11:39.528 2018] 	gawk
    [Thu Aug 09 17:11:39.528 2018] 	gcc-symlinks
    [Thu Aug 09 17:11:39.528 2018] 	gcc
    [Thu Aug 09 17:11:39.528 2018] 	gdb
    [Thu Aug 09 17:11:39.528 2018] 	gdbserver
    [Thu Aug 09 17:11:39.528 2018] 	gstreamer1.0-libav
    [Thu Aug 09 17:11:39.528 2018] 	hidapi
    [Thu Aug 09 17:11:39.528 2018] 	libcairo-perf-utils
    [Thu Aug 09 17:11:39.528 2018] 	libgmp10
    [Thu Aug 09 17:11:39.528 2018] 	libidn11
    [Thu Aug 09 17:11:39.528 2018] 	libmpc3
    [Thu Aug 09 17:11:39.528 2018] 	libmpfr4
    [Thu Aug 09 17:11:39.528 2018] 	libreadline-dev
    [Thu Aug 09 17:11:39.528 2018] 	libreadline6
    [Thu Aug 09 17:11:39.544 2018] 	m4-dev
    [Thu Aug 09 17:11:39.544 2018] 	m4
    [Thu Aug 09 17:11:39.544 2018] 	make
    [Thu Aug 09 17:11:39.544 2018] 	nettle
    [Thu Aug 09 17:11:39.544 2018] 	swig-dev
    [Thu Aug 09 17:11:39.544 2018] 	swig
    [Thu Aug 09 17:11:39.544 2018] 
    [Thu Aug 09 17:11:39.544 2018] If you do not wish to distribute GPLv3 components please remove
    [Thu Aug 09 17:11:39.544 2018] the above packages prior to distribution.  This can be done using
    [Thu Aug 09 17:11:39.560 2018] the opkg remove command.  i.e.:
    [Thu Aug 09 17:11:39.560 2018]     opkg remove <package>
    [Thu Aug 09 17:11:39.560 2018] Where <package> is the name printed in the list above
    [Thu Aug 09 17:11:39.560 2018] 
    [Thu Aug 09 17:11:39.560 2018] NOTE: If the package is a dependency of another package you
    [Thu Aug 09 17:11:39.575 2018]       will be notified of the dependent packages.  You should
    [Thu Aug 09 17:11:39.575 2018]       use the --force-removal-of-dependent-packages option to
    [Thu Aug 09 17:11:39.575 2018]       also remove the dependent packages as well
    [Thu Aug 09 17:11:39.591 2018] ***************************************************************
    [Thu Aug 09 17:11:39.591 2018] ***************************************************************
    [Thu Aug 09 17:11:39.908 2018] [   29.294745] PVR_K: UM DDK-(3699939) and KM DDK-(3699939) match. [ OK ]
    

  • Hello,

    I will be closing the ticket and if you are still experiencing issues, feel free to open the ticket in the future.

    Regards,
    Krunal