Running Linux Application on startup for LS1021a-twr?

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

Running Linux Application on startup for LS1021a-twr?

3,122 Views
datho
Contributor III

I'm trying to get the board to automatically run the .elf file, that was generated from the CodeWarrior Linux Application project, as soon as the Linux OS is finished booting. What is the best way to program the elf file onto the board and have it run at startup? I'm currently trying to look into how to do this on Yocto but I'm not familiar with the process.

Labels (1)
Tags (1)
0 Kudos
10 Replies

1,412 Views
yipingwang
NXP TechSupport
NXP TechSupport

Hello Dat Ho,

Please refer to the following method which I have verified on my target board.

1. In SDK 1.9, in the path sources/meta-freescale/recipes-extended/merge-files/merge-files/merge, create folder "usr/sbin/", "etc/init.d" and "etc/rcS.d".

Put your application file test.elf in usr/sbin/.

In the folder etc/init.d create a script "test" to execute test.elf, and add execution permission "chmod a+x test".

$ cat etc/init.d/test

echo "starting test.elf"

chmod a+x /usr/sbin/test.elf

/usr/sbin/test

In the folder etc/rcS.d, create a symbolic link for etc/init.d/test

$ln -s ../init.d/test  S100test

2. Add "merge-files" in "IMAGE_INSTALL_append" of meta-freescale/recipes-fsl/images/fsl-image-core.bb.

3. Add MERGED_DST = "/" in build_ls1021atwr/conf/local.conf, and build rootfs image "bitbake fsl-image-core".

If you use SDK 1.8, the recipe paths are a little different.

merge-files:meta-fsl-arm/recipes-extended/merge-files/merge-files/merge/

core image: meta-fsl-networking/images/fsl-image-core.bb

config file:build_ls1021atwr_release/conf/local.conf


Have a great day,
Yiping

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

1,412 Views
datho
Contributor III

Thank you for replying Yiping, I did everything that you said to, but I ran into an error with the bitbake fsl-image-core command. I am running QorIQ SDK v1.8 and merge-files_1.0.bb (under recipes-extended/mergefiles) was throwing exceptions after I created all the folders and ran bitbake. I changed the maxdepth and mindepth to 4 to remove the exception that was thrown (they were both previously 1). I got the .elf file from CodeWarrior v10.0.7 for ARM v7.

After I programmed the ramdisk image into the board through u-boot and tftp, the board didn't have the .elf file anywhere. Instead the board just booted up like it did before, without any of the files from the merge-files folder.

From the merge folder I added:

*usr/sbin: UDP.elf

*etc/init.d: UDP (this is the script and its contents are below)

echo "starting UDP.elf"

chmod a+x /usr/sbin/udp.elf

/usr/sbin/udp

*etc/rcS.d: S100UDP

*contents of local.conf:

MERGED_DST = "/"

*contents of fsl-image-core.bb:

#PRIVATE_FULL = "yes"

require images/fsl-image-flash.bb
require images/fsl-image-private.inc

# common open source packages

IMAGE_INSTALL += " \

     packagegroup-fsl-core \

          merge-files \

          apptrk \

"

ROOTFS_POSTPROCESS_COMMAND += "rootfs_delete_uImage;

contents of merge-files_1.0.bb:

DESCRIPTION = "Merge prebuilt/extra files into rootfs"

LICENSE = "MIT"

LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \

                    file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"

inherit allarch

SRC_URI = "file://merge"

MERGED_DST ?= "${ROOT_HOME}"

do_install () {

    install -d ${D}/${MERGED_DST}

    find ${WORKDIR}/merge/ -maxdepth 4 -mindepth 4 -not -name README \

    -exec cp -fr '{}' ${D}/${MERGED_DST}/ \;

    find ${WORKDIR}/merge/ -maxdepth 4 -mindepth 4 -exec rm -fr '{}' \;

}

do_unpack[nostamp] = "1"

do_install[nostamp] = "1"

do_configure[noexec] = "1"

do_compile[noexec] = "1"

FILES_${PN} = "/*"

ALLOW_EMPTY_${PN} = "1"

INSANE_SKIP_${PN} = "debug-files dev-so"

0 Kudos

1,412 Views
datho
Contributor III

Here's a screenshot of the error I encountered before editing merge-files_1.0.bb:Screenshot from 2016-01-08 14_41_28.png

0 Kudos

1,412 Views
yipingwang
NXP TechSupport
NXP TechSupport

Hello Dat Ho,

No need to modify merge-files recipe, this package is just for users to add their own files.

Please refer to my merge-files folder in meta-fsl-arm/recipes-extended/merge-files/, which I have verified in SDK 1.8 environment.


Have a great day,
Yiping

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos

1,412 Views
datho
Contributor III

Your merge-files folder did work when I ran bitbake. The error I ran into only occurs when I try to add my own UDP.elf file from codewarrior. I noticed that one of the major differences between my UDP.elf file and the one you provided was that Ubuntu recognized your UDP.elf as a text based file and my UDP.elf file as an executable file. Have you been able to successfully bitbake a .elf file with executable code from a Codewarrior 10.0.7 Arm v7 Linux Application project?

0 Kudos

1,412 Views
yipingwang
NXP TechSupport
NXP TechSupport

Hello Dat Ho,

Please use the attached recipe to replace meta-fsl-arm/recipes-extended/merge-files/merge-files_1.0.bb, run "bitbake merge-files -c cleansstate", then build your rootfs filesystem.


Have a great day,
Yiping

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

1,412 Views
datho
Contributor III

Using this .bb file, I'm able to add my own .elf and .cfg files to the RAM of the board. Thank you very much for guiding me to this point.

Is there a way to get the script to run automatically at startup though? I still have to log in as root and call the script myself.

0 Kudos

1,412 Views
yipingwang
NXP TechSupport
NXP TechSupport

In your previous description, you didn't edit the script UDP correctly.

*etc/init.d: UDP (this is the script and its contents are below)

echo "starting UDP.elf"

chmod a+x /usr/sbin/udp.elf

/usr/sbin/udp

Moidfy it as the following:

*etc/init.d: UDP (this is the script and its contents are below)

echo "starting UDP.elf"

chmod a+x /usr/sbin/UDP.elf

/usr/sbin/UDP.elf

If your problem remains, please provide the Kernel boot up log.

Thanks,

Yiping

0 Kudos

1,412 Views
datho
Contributor III

After looking through the QorIQ folder, I found another local.conf file and tried adding MERGED_DST = "/" to that folder instead. After I did this, everything was moved to the correct folders and the script began running at startup.

For QorIQ v1.8, the actual local.conf that you want to edit is actually under poky/build_ls1021atwr_release/conf/local.conf. I was editing the build_ls1021atwr_release/conf/local.conf that wasn't under the poky folder.

Thanks again for all your help Yiping.

0 Kudos

1,412 Views
datho
Contributor III

I did edit the script to replace udp.elf with UDP.elf but the issue was that I was still having to call the script myself after logging in as root. The files from the merge-files folder were placed in the root directory but not in the system locations. Instead of the folders being placed in /etc/init.d or /usr/sbin, they get created as etc/init.d and usr/sbin. I did edit the local.conf with MERGED_DST = "/", and it was previously blank.

This is what the board displays at bootup

U-Boot 2015.01+ls1+g6ba8eed (Aug 10 2015 - 14:29:19)

CPU:   Freescale LayerScape LS1021E, Version: 1.0, (0x87081110)

Clock Configuration:

       CPU0(ARMV7):1000 MHz,

       Bus:300  MHz, DDR:800  MHz (1600 MT/s data rate),

Reset Configuration Word (RCW):

       00000000: 0608000a 00000000 00000000 00000000

       00000010: 20000000 00407900 e0025a00 21046000

       00000020: 00000000 00000000 00000000 00038000

       00000030: 00080000 881b7540 00000000 00000000

Board: LS1021ATWR

CPLD:  V2.3

PCBA:  V3.0

VBank: 0

I2C:   ready

DRAM:  1 GiB

Using SERDES1 Protocol: 32 (0x20)

Firmware 'Microcode version 0.0.0 for T1040 r1.0' for 1040 V1.0

QE: uploading microcode 'Microcode for T1040 r1.0'

Flash: 128 MiB

MMC:   FSL_SDHC: 0

EEPROM: CRC mismatch (768a835e != ffffffff)

PCIe1: Root Complex no link, regs @ 0x3400000

PCIe2: Root Complex no link, regs @ 0x3500000

In:    serial

Out:   serial

Err:   serial

SEC0: RNG instantiated

SATA link 0 timeout.

AHCI 0001.0300 1 slots 1 ports ? Gbps 0x1 impl SATA mode

flags: 64bit ncq pm clo only pmp fbss pio slum part ccc

scanning bus for devices...

Found 0 device(s).

SCSI:  Net:   eTSEC1 is in sgmii mode.

eTSEC2 is in sgmii mode.

eTSEC1 [PRIME], eTSEC2, eTSEC3

Hit any key to stop autoboot:  0

## Booting kernel from Legacy Image at 60120000 ...

   Image Name:   Linux-3.12.37-rt51+ls1+gf488de6

   Image Type:   ARM Linux Kernel Image (uncompressed)

   Data Size:    3104056 Bytes = 3 MiB

   Load Address: 80008000

   Entry Point:  80008000

   Verifying Checksum ... OK

## Loading init Ramdisk from Legacy Image at 60920000 ...

   Image Name:   fsl-image-core-ls1021atwr-201601

   Image Type:   ARM Linux RAMDisk Image (gzip compressed)

   Data Size:    25783082 Bytes = 24.6 MiB

   Load Address: 00000000

   Entry Point:  00000000

   Verifying Checksum ... OK

## Flattened Device Tree blob at 60020000

   Booting using the fdt blob at 0x60020000

   Loading Kernel Image ... OK

   Loading Ramdisk to bd68d000, end bef23b2a ... OK

   Loading Device Tree to bd684000, end bd68c205 ... OK

Starting kernel ...

Booting Linux on physical CPU 0xf00

Linux version 3.12.37-rt51+ls1+gf488de6 (dho01@ubuntu) (gcc version 4.8.3 20140401 (prerelease) (Linaro GCC 4.8-2014.04) ) #2 SMP Thu Aug 6 14:53:35 EDT 2015

CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=70c73c7d

CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache

Machine: Freescale LS1021A, model: LS1021A TWR Board

Memory policy: ECC disabled, Data cache writealloc

PERCPU: Embedded 8 pages/cpu @80d53000 s8384 r8192 d16192 u32768

Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 260096

Kernel command line: root=/dev/ram rw console=ttyS0,115200

PID hash table entries: 4096 (order: 2, 16384 bytes)

Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)

Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)

Memory: 1008856K/1048576K available (3248K kernel code, 259K rwdata, 1476K rodata, 180K init, 196K bss, 39720K reserved, 0K highmem)

Virtual kernel memory layout:

    vector  : 0xffff0000 - 0xffff1000   (   4 kB)

    fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)

    vmalloc : 0xc0800000 - 0xff000000   (1000 MB)

    lowmem  : 0x80000000 - 0xc0000000   (1024 MB)

    pkmap   : 0x7fe00000 - 0x80000000   (   2 MB)

    modules : 0x7f800000 - 0x7fe00000   (   6 MB)

      .text : 0x80008000 - 0x804a550c   (4726 kB)

      .init : 0x804a6000 - 0x804d30c0   ( 181 kB)

      .data : 0x804d4000 - 0x80514ce0   ( 260 kB)

       .bss : 0x80514ce8 - 0x80545fe4   ( 197 kB)

SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1

Hierarchical RCU implementation.

        RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.

NR_IRQS:16 nr_irqs:16 16

Architected cp15 timer(s) running at 12.50MHz (phys).

Switching to timer-based delay loop

sched_clock: ARM arch timer >56 bits at 12500kHz, resolution 80ns

sched_clock: 32 bits at 100 Hz, resolution 10000000ns, wraps every 4294967286ms

Console: colour dummy device 80x30

Calibrating delay loop (skipped), value calculated using timer frequency.. 25.00 BogoMIPS (lpj=125000)

pid_max: default: 32768 minimum: 301

Mount-cache hash table entries: 512

CPU: Testing write buffer coherency: ok

CPU0: update cpu_power 1024

CPU0: thread -1, cpu 0, socket 15, mpidr 80000f00

Setting up static identity map for 0x8030a2d8 - 0x8030a33c

CPU1: Booted secondary processor

CPU1: update cpu_power 1024

CPU1: thread -1, cpu 1, socket 15, mpidr 80000f01

Brought up 2 CPUs

SMP: Total of 2 processors activated (50.00 BogoMIPS).

CPU: All CPU(s) started in HYP mode.

CPU: Virtualization extensions available.

devtmpfs: initialized

VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5

regulator-dummy: no parameters

NET: Registered protocol family 16

DMA: preallocated 256 KiB pool for atomic coherent allocations

cpuidle: using governor ladder

cpuidle: using governor menu

syscon 1570000.scfg: regmap [mem 0x01570000-0x0157ffff] registered

irq: no irq domain found for /soc/uqe@2400000/qeic@80 !

irq: no irq domain found for /soc/uqe@2400000/qeic@80 !

hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.

hw-breakpoint: maximum watchpoint size is 8 bytes.

bio: create slab <bio-0> at 0

3P3V: 3300 mV

vgaarb: loaded

SCSI subsystem initialized

usbcore: registered new interface driver usbfs

usbcore: registered new interface driver hub

usbcore: registered new device driver usb

i2c i2c-0: IMX I2C adapter registered

i2c i2c-1: IMX I2C adapter registered

i2c i2c-2: of_i2c: modalias failure on /soc/i2c@21a0000/ltc2945@67

i2c i2c-2: IMX I2C adapter registered

pps_core: LinuxPPS API ver. 1 registered

pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>

PTP clock support registered

fsl-ifc 1530000.ifc: Freescale Integrated Flash Controller

Advanced Linux Sound Architecture Driver Initialized.

Switched to clocksource arch_sys_counter

NET: Registered protocol family 2

TCP established hash table entries: 8192 (order: 4, 65536 bytes)

TCP bind hash table entries: 8192 (order: 4, 65536 bytes)

TCP: Hash tables configured (established 8192 bind 8192)

TCP: reno registered

UDP hash table entries: 512 (order: 2, 16384 bytes)

UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)

NET: Registered protocol family 1

RPC: Registered named UNIX socket transport module.

RPC: Registered udp transport module.

RPC: Registered tcp transport module.

RPC: Registered tcp NFSv4.1 backchannel transport module.

Trying to unpack rootfs image as initramfs...

rootfs image is not initramfs (no cpio magic); looks like an initrd

Freeing initrd memory: 25176K (bd68d000 - bef23000)

hw perfevents: enabled with ARMv7 Cortex-A7 PMU driver, 5 counters available

NFS: Registering the id_resolver key type

Key type id_resolver registered

Key type id_legacy registered

jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.

msgmni has been set to 2019

io scheduler noop registered

io scheduler deadline registered

io scheduler cfq registered (default)

layerscape-pcie 3400000.pcie: phy link never came up

layerscape-pcie 3400000.pcie: PCI host bridge to bus 0000:00

pci_bus 0000:00: root bus resource [io  0x1000-0xffff]

pci_bus 0000:00: root bus resource [mem 0x4040000000-0x407fffffff] (bus address [0x40000000-0x7fffffff])

pci_bus 0000:00: root bus resource [bus 00-ff]

PCI: bus0: Fast back to back transfers disabled

PCI: bus1: Fast back to back transfers enabled

pci 0000:00:00.0: BAR 1: assigned [mem 0x4040000000-0x4043ffffff]

pci 0000:00:00.0: BAR 0: assigned [mem 0x4044000000-0x4044ffffff]

pci 0000:00:00.0: BAR 6: assigned [mem 0x4045000000-0x4045ffffff pref]

pci 0000:00:00.0: PCI bridge to [bus 01]

layerscape-pcie 3500000.pcie: phy link never came up

layerscape-pcie 3500000.pcie: PCI host bridge to bus 0001:00

pci_bus 0001:00: root bus resource [io  0x10000-0x1ffff] (bus address [0x0000-0xffff])

pci_bus 0001:00: root bus resource [mem 0x4840000000-0x487fffffff] (bus address [0x40000000-0x7fffffff])

pci_bus 0001:00: root bus resource [bus 00-ff]

PCI: bus0: Fast back to back transfers disabled

PCI: bus1: Fast back to back transfers enabled

pci 0001:00:00.0: BAR 1: assigned [mem 0x4840000000-0x4843ffffff]

pci 0001:00:00.0: BAR 0: assigned [mem 0x4844000000-0x4844ffffff]

pci 0001:00:00.0: BAR 6: assigned [mem 0x4845000000-0x4845ffffff pref]

pci 0001:00:00.0: PCI bridge to [bus 01]

sii902x: probe of 1-0039 failed with error -1

syscon 1570000.scfg: Failed to create debugfs directory

Console: switching to colour frame buffer device 60x34

fb0: fb device registered successfully.

fb1: fb device registered successfully.

fb2: fb device registered successfully.

fb3: fb device registered successfully.

Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled

21c0500.serial: ttyS0 at MMIO 0x21c0500 (irq = 118, base_baud = 9375000) is a 16550A_FSL64

console [ttyS0] enabled

21c0600.serial: ttyS1 at MMIO 0x21c0600 (irq = 118, base_baud = 9375000) is a 16550A_FSL64

of_serial 2402200.ucc: clk or clock-frequency not defined

of_serial: probe of 2402200.ucc failed with error -2

serial: Freescale lpuart driver

2950000.serial: ttyLP0 at MMIO 0x2950000 (irq = 112, base_baud = 6250000) is a FSL_LPUART

brd: module loaded

loop: module loaded

ahci 3200000.sata: AHCI 0001.0300 1 slots 1 ports ? Gbps 0x1 impl platform mode

ahci 3200000.sata: flags: 64bit ncq sntf pm clo only pmp fbs pio slum part ccc

ahci 3200000.sata: port 0 is not capable of FBS

scsi0 : ahci_platform

ata1: SATA max UDMA/133 mmio [mem 0x03200000-0x0320ffff] port 0x100 irq 133

60000000.nor: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x000089 Chip ID 0x00227e

Amd/Fujitsu Extended Query Table at 0x0040

  Amd/Fujitsu Extended Query version 1.3.

number of CFI chips: 1

8 ofpart partitions found on MTD device 60000000.nor

Creating 8 MTD partitions on "60000000.nor":

0x000000000000-0x000000020000 : "NOR bank0 RCW Image"

0x000000020000-0x000000120000 : "NOR DTB Image"

0x000000120000-0x000000920000 : "NOR Linux Kernel Image"

0x000000920000-0x000003f20000 : "NOR Ramdisk Root File System Image"

0x000003f80000-0x000004000000 : "NOR bank4 u-boot Image"

0x000004000000-0x000004020000 : "NOR bank4 RCW Image"

0x000004020000-0x000007f20000 : "NOR JFFS2 ROOT File System Image"

0x000007f80000-0x000008000000 : "NOR bank0 u-boot Image"

CAN device driver interface

libphy: Freescale PowerQUICC MII Bus: probed

fsl-gianfar ethernet.4: enabled errata workarounds, flags: 0x4

fsl-gianfar ethernet.4 eth0: mac: 00:04:9f:03:5c:8a

fsl-gianfar ethernet.4 eth0: Running with NAPI enabled

fsl-gianfar ethernet.4 eth0: RX BD ring size for Q[0]: 256

fsl-gianfar ethernet.4 eth0: TX BD ring size for Q[0]: 256

fsl-gianfar ethernet.5: enabled errata workarounds, flags: 0x4

fsl-gianfar ethernet.5 eth1: mac: 00:04:9f:03:5c:8b

fsl-gianfar ethernet.5 eth1: Running with NAPI enabled

fsl-gianfar ethernet.5 eth1: RX BD ring size for Q[0]: 256

fsl-gianfar ethernet.5 eth1: TX BD ring size for Q[0]: 256

fsl-gianfar ethernet.6: enabled errata workarounds, flags: 0x4

fsl-gianfar ethernet.6 eth2: mac: 00:04:9f:03:5c:8c

fsl-gianfar ethernet.6 eth2: Running with NAPI enabled

fsl-gianfar ethernet.6 eth2: RX BD ring size for Q[0]: 256

fsl-gianfar ethernet.6 eth2: TX BD ring size for Q[0]: 256

e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k

e1000e: Copyright(c) 1999 - 2013 Intel Corporation.

ata1: SATA link down (SStatus 0 SControl 300)

xhci-hcd xhci-hcd.0.auto: xHCI Host Controller

xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1

xhci-hcd xhci-hcd.0.auto: irq 125, io mem 0x03100000

hub 1-0:1.0: USB hub found

hub 1-0:1.0: 1 port detected

xhci-hcd xhci-hcd.0.auto: xHCI Host Controller

xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2

hub 2-0:1.0: USB hub found

hub 2-0:1.0: 1 port detected

usbcore: registered new interface driver usb-storage

mousedev: PS/2 mouse device common for all mice

i2c /dev entries driver

imx2-wdt 2ad0000.wdog: timeout 60 sec (nowayout=0)

qoriq_cpufreq: Freescale PowerPC qoriq CPU frequency scaling driver

sdhci: Secure Digital Host Controller Interface driver

sdhci: Copyright(c) Pierre Ossman

sdhci-pltfm: SDHCI platform and OF driver helper

mmc0: no vqmmc regulator found

mmc0: no vmmc regulator found

mmc0: SDHCI controller on 1560000.esdhc [1560000.esdhc] using ADMA

caam 1700000.crypto: Instantiated RNG4 SH1

caam 1700000.crypto: device ID = 0x0a14030000000000 (Era 7)

caam 1700000.crypto: job rings = 4, qi = 0

caam algorithms registered in /proc/crypto

caam_jr 1710000.jr: registering rng-caam

caam 1700000.crypto: fsl,sec-v5.3 algorithms registered in /proc/crypto

usbcore: registered new interface driver usbhid

usbhid: USB HID core driver

sgtl5000 1-000a: sgtl5000 revision 0x11

mmc0: new high speed SDHC card at address e624

mmcblk0: mmc0:e624 SU08G 7.40 GiB

mmcblk0: p1 p2 p3

sgtl5000 1-000a: Failed to get supply 'VDDD': -19

1-000a: 1200 mV normal

sgtl5000 1-000a: Using internal LDO instead of VDDD

vf610-sgtl5000 sound.9:  sgtl5000 <-> 2b50000.sai mapping ok

oprofile: using timer interrupt.

TCP: cubic registered

Initializing XFRM netlink socket

NET: Registered protocol family 17

NET: Registered protocol family 15

can: controller area network core (rev 20120528 abi 9)

NET: Registered protocol family 29

can: raw protocol (rev 20120528)

Key type dns_resolver registered

regulator-dummy: disabling

drivers/rtc/hctosys.c: unable to open rtc device (rtc0)

ALSA device list:

  #0: FSL-VF610-TWR-BOARD

RAMDISK: gzip image found at block 0

usb 1-1: new high-speed USB device number 2 using xhci-hcd

hub 1-1:1.0: USB hub found

hub 1-1:1.0: 4 ports detected

usb 2-1: new SuperSpeed USB device number 2 using xhci-hcd

usb 2-1: Parent hub missing LPM exit latency info.  Power management will be impacted.

hub 2-1:1.0: USB hub found

hub 2-1:1.0: 4 ports detected

VFS: Mounted root (ext2 filesystem) on device 1:0.

devtmpfs: mounted

Freeing unused kernel memory: 180K (804a6000 - 804d3000)

INIT: version 2.88 booting

Starting udev

udevd[128]: starting version 182

kjournald starting.  Commit interval 5 seconds

EXT3-fs (mmcblk0p2): using internal journal

EXT3-fs (mmcblk0p2): recovery complete

kjournald starting.  Commit interval 5 seconds

EXT3-fs (mmcblk0p2): mounted filesystem with ordered data mode

EXT3-fs (mmcblk0p3): using internal journal

EXT3-fs (mmcblk0p3): recovery complete

EXT3-fs (mmcblk0p3): mounted filesystem with ordered data mode

Starting Bootlog daemon: bootlogd.

Populating dev cache

net.ipv4.conf.default.rp_filter = 1

net.ipv4.conf.all.rp_filter = 1

fs.file-max = 10000000000000

fs.mqueue.queues_max = 10000000

kernel.msgmnb = 100000000

kernel.msgmax = 100000000

kernel.msgmni = 100000000

hwclock: can't open '/dev/misc/rtc': No such file or directory

Fri Jan 15 15:29:00 UTC 2016

hwclock: can't open '/dev/misc/rtc': No such file or directory

Running postinst /etc/rpm-postinsts/100-debianutils...

Running postinst /etc/rpm-postinsts/101-util-linux-readprofile...

Running postinst /etc/rpm-postinsts/102-inetutils-inetd...

Running postinst /etc/rpm-postinsts/103-sysvinit-inittab...

Running postinst /etc/rpm-postinsts/104-inetutils-tftpd...

Running postinst /etc/rpm-postinsts/105-inetutils-telnetd...

Running postinst /etc/rpm-postinsts/106-inetutils-ftpd...

update-rc.d: /etc/init.d/run-postinsts exists during rc.d purge (continuing)

Removing any system startup links for run-postinsts ...

  /etc/rcS.d/S99run-postinsts

INIT: Entering runlevel: 5

Configuring network interfaces... udhcpc (v1.22.1) started

Sending discover...

Sending discover...

libphy: mdio@2d24000:02 - Link is Up - 1000/Full

Sending discover...

No lease, failing

Starting system message bus: dbus.

Starting OpenBSD Secure Shell server: sshd

  generating ssh RSA key...

  generating ssh ECDSA key...

  generating ssh DSA key...

  generating ssh ED25519 key...

done.

hwclock: can't open '/dev/misc/rtc': No such file or directory

Starting network benchmark server: netserver.

Starting system log daemon...0

Starting kernel log daemon...0

Starting internet superserver: xinetd.

Stopping Bootlog daemon: bootlogd.

fsl-networking (QorIQ SDK) QorIQ-SDK-V1.8 ls1021atwr /dev/ttyS0

ls1021atwr login:

0 Kudos