zoukankan      html  css  js  c++  java
  • iMX6 NFS启动

    iMX6 NFS启动

    1、Tftp下载uImage

    1.1,设置ubuntu

    (1) Setup tftp server files 

    # apt-get install tftpd tftp openbsd-inetd 

    (2) make a tftp directory Here we make /opt/tftpboot be a tftp directory. 

    # mkdir /opt/tftpboot

    # chmod 777 /opt/tftpboot 

    (3) Open /etc/inetd.conf and edit it 

    # gedit /etc/inetd.conf 

    Add this line: 

    tftp    dgram        udp        wait        nobody        /usr/sbin/tcpd /usr/sbin/in.tftpd      /opt/tftpboot 

    (4)Restarting tftp service 

    #sudo /etc/init.d/openbsd-inetd restart 

    可以根据你的uImage文件放在路径,修改上述路径;也可以在/opt/tftpboot目录下生成一个目标连接文件。

    1.2,tftp下载uImage

    MX6Q SABRESD U-Boot >tftpboot uImage

    2、文件系统以NFS方式加载

    2.1 ,设置ubuntu

    (1), Install NFS server package 
    # apt-get install nfs-kernel-server 
    (2), Configure portmap 
    # dpkg-reconfigure portmap 
      Select “NO” 
    (3) ,Configure mounted directory and authority 
    # gedit /etc/exports 
      

    Add the following line at the end of the file: 
    /home/ rootfs   *(rw,sync,no_root_squash) 
    (4) ,Restart the NFS service 
    #sudo /etc/init.d/portmap restart 
    #sudo /etc/init.d/nfs-kernel-server restart 

    2.2,通过串口设置uboot变量设置

    setenv ipaddr 192.168.1.xxx        #设置板子IP

    setenv serverip 192.168.1.xxx         #设置为开发机的IP

    setenv bootfile uImage

    setenv nfsroot /home/rootfs

    setenv bootargs_base 'setenv bootargs console=ttymxc0,115200'

    setenv bootargs_nfs 'setenv bootargs ${bootargs} root=/dev/nfs ip=dhcp nfsrootdebug nfsroot=${serverip}:${nfsroot},v3,tcp fec_mac=${ethaddr} video=mxcfb0:dev=ldb,CVBS-TV,if=RGB666,bpp=16'

    setenv bootcmd_net 'run bootargs_base bootargs_nfs;bootm'

    setenv bootcmd 'tftpboot uImage; run bootcmd_net'

    saveenv

    重启板子即可。

    启动log:

    U-Boot 2009.08-dirty (Jan 10 2014 - 16:58:26)

    CPU: Freescale i.MX6 family TO1.2 at 792 MHz

    Thermal sensor with ratio = 177

    Temperature:   51 C, calibration data 0x5624ce69

    mx6q pll1: 792MHz

    mx6q pll2: 528MHz

    mx6q pll3: 480MHz

    mx6q pll8: 50MHz

    ipg clock     : 66000000Hz

    ipg per clock : 66000000Hz

    uart clock    : 80000000Hz

    cspi clock    : 60000000Hz

    ahb clock     : 132000000Hz

    axi clock   : 264000000Hz

    emi_slow clock: 132000000Hz

    ddr clock     : 528000000Hz

    usdhc1 clock  : 198000000Hz

    usdhc2 clock  : 198000000Hz

    usdhc3 clock  : 198000000Hz

    usdhc4 clock  : 198000000Hz

    nfc clock     : 24000000Hz                                                     

    Board: i.MX6Q-SABRESD: unknown-board Board: 0x63012 [POR ]                     

    Boot Device: MMC                                                               

    I2C:   ready                                                                   

    DRAM:   1 GB                                                                    

    hello,I am runing ok!                                                          

    MMC:   FSL_USDHC: 0,FSL_USDHC: 1,FSL_USDHC: 2,FSL_USDHC: 3                     

    In:    serial                                                                  

    Out:   serial                                                                  

    Err:   serial                                                                  

    Net:   got MAC address from IIM: 00:00:00:00:00:00                             

    FEC0 [PRIME]                                                                    

    detect 13088[2.7]                                                              

    m13088_check_sum                                                               

    err=0                                                                           

    Hit any key to stop autoboot:  0                                               

    PHY indentify @ 0x1 = 0x004dd072                                               

    FEC: Link is Up 796d                                                            

    Using FEC0 device                                                              

    TFTP from server 138.88.8.192; our IP address is 138.88.8.122                  

    Filename 'uImage'.                                                              

    Load address: 0x10800000                                                       

    Loading: #################################################################     

             #################################################################     

             #################################################################     

             #################################################################     

             #################################################################     

             #################################################################     

             #################################################################     

             #################################################################     

             #################################################################     

             #################################################################     

             #################################################################     

             #################################################################     

             #################################                                     

    done                                                                            

    Bytes transferred = 4158452 (3f73f4 hex)                                       

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

       Image Name:   Linux-3.0.35-2666-gbdde708-g181b                               

       Image Type:   ARM Linux Kernel Image (uncompressed)                         

       Data Size:    4158388 Bytes =  4 MB                                         

       Load Address: 10008000                                                       

       Entry Point:  10008000                                                      

       Verifying Checksum ... OK                                                   

       Loading Kernel Image ... OK                                                  

    OK                                                                             

                                                                                   

    Starting kernel ...                                                            

                                                                                    

    Uncompressing Linux... done, booting the kernel.                               

    Linux version 3.0.35-2666-gbdde708-g181bd49-dirty (bfg@tianfeng-Honmax-Server) 4

    CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d               

    CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache              

    Machine: Freescale i.MX 6Quad/DualLite/Solo Sabre-SD Board                     

    Ignoring unrecognised tag 0x54410008                                           

    Memory policy: ECC disabled, Data cache writealloc                             

    CPU identified as i.MX6Q, silicon rev 1.2                                      

    PERCPU: Embedded 7 pages/cpu @8c008000 s5440 r8192 d15040 u32768               

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

    Kernel command line: console=ttymxc0,115200 root=/dev/nfs ip=dhcp nfsrootdebug 6

    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: 512MB 256MB = 768MB total                                               

    Memory: 765124k/765124k available, 283452k reserved, 0K highmem                

    Virtual kernel memory layout:                                                  

        vector  : 0xffff0000 - 0xffff1000   (   4 kB)                               

        fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)                              

        DMA     : 0xf4600000 - 0xffe00000   ( 184 MB)                              

        vmalloc : 0xc0800000 - 0xf2000000   ( 792 MB)                              

        lowmem  : 0x80000000 - 0xc0000000   (1024 MB)                              

        pkmap   : 0x7fe00000 - 0x80000000   (   2 MB)                              

        modules : 0x7f000000 - 0x7fe00000   (  14 MB)                              

          .init : 0x80008000 - 0x80087000   ( 508 kB)                              

          .text : 0x80087000 - 0x80b3dd54   (10972 kB)                             

          .data : 0x80b3e000 - 0x80ba1f80   ( 400 kB)                              

           .bss : 0x80ba1fa4 - 0x80bf1f0c   ( 320 kB)                              

    SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=2, Nodes=1        

    Preemptible hierarchical RCU implementation.                                   

    NR_IRQS:624                                                                     

    MXC GPIO hardware                                                              

    sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 1431655ms       

    arm_max_freq=1GHz                                                               

    MXC_Early serial console at MMIO 0x2020000 (options '115200')                  

    bootconsole [ttymxc0] enabled                                                  

    Console: colour dummy device 80x30                                             

    Calibrating delay loop... 1581.05 BogoMIPS (lpj=7905280)                       

    pid_max: default: 32768 minimum: 301                                           

    Mount-cache hash table entries: 512                                            

    CPU: Testing write buffer coherency: ok                                        

    hw perfevents: enabled with ARMv7 Cortex-A9 PMU driver, 7 counters available   

    CPU1: Booted secondary processor                                                

    Brought up 2 CPUs                                                              

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

    print_constraints: dummy:                                                       

    NET: Registered protocol family 16                                             

    print_constraints: vddpu: 725 <--> 1300 mV at 700 mV fast normal               

    print_constraints: vddcore: 725 <--> 1300 mV at 1150 mV fast normal            

    print_constraints: vddsoc: 725 <--> 1300 mV at 1200 mV fast normal             

    print_constraints: vdd2p5: 2000 <--> 2775 mV at 2400 mV fast normal            

    print_constraints: vdd1p1: 800 <--> 1400 mV at 1100 mV fast normal             

    print_constraints: vdd3p0: 2625 <--> 3400 mV at 3000 mV fast normal            

    mx6_sabresd_board_init                                                         

    yzw==>init_usb...                                                              

    yzw==>imx6q_add_device_buttons                                                   

    ===================flexcan1 init.                                              

    register device:gpio_switch_mixdev                                             

    hw-breakpoint: found 6 breakpoint and 1 watchpoint registers.                  

    hw-breakpoint: 1 breakpoint(s) reserved for watchpoint single-step.            

    hw-breakpoint: maximum watchpoint size is 4 bytes.                             

    L310 cache controller enabled                                                   

    l2x0: 16 ways, CACHE_ID 0x410000c7, AUX_CTRL 0x02070000, Cache size: 1048576 B 

    bio: create slab <bio-0> at 0                                                  

    mxs-dma mxs-dma-apbh: initialized                                              

    print_constraints: vmmc: 3300 mV                                               

    vgaarb: loaded                                                                 

    SCSI subsystem initialized                                                      

    spi_imx imx6q-ecspi.0: probed                                                  

    usbcore: registered new interface driver usbfs                                 

    usbcore: registered new interface driver hub                                    

    usbcore: registered new device driver usb                                      

    Freescale USB OTG Driver loaded, $Revision: 1.55 $                             

    yzw==>pca953x_probe                                                             

    Undetect 0                                                                     

    yzw==>chip->chip_type = 1000                                                   

    yzw==>chip=bfcdcd28                                                             

    pca953x 0-0018: failed reading register                                        

    mc_pfuze 1-0008: recv failed!:-5,80                                            

    mc_pfuze: probe of 1-0008 failed with error -1                                 

    imx-ipuv3 imx-ipuv3.0: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)          

    imx-ipuv3 imx-ipuv3.1: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)          

    mxc_mipi_csi2 mxc_mipi_csi2: i.MX MIPI CSI2 driver probed                      

    mxc_mipi_csi2 mxc_mipi_csi2: i.MX MIPI CSI2 dphy version is 0x3130302a         

    MIPI CSI2 driver module loaded                                                 

    ******************** mcu_i2c_init                                              

    -----------mcu_i2c_probe                                                        

    Advanced Linux Sound Architecture Driver Version 1.0.24.                       

    Bluetooth: Core ver 2.16                                                       

    NET: Registered protocol family 31                                              

    Bluetooth: HCI device and connection manager initialized                       

    Bluetooth: HCI socket layer initialized                                        

    Bluetooth: L2CAP socket layer initialized                                      

    Bluetooth: SCO socket layer initialized                                        

    cfg80211: Calling CRDA to update world regulatory domain                       

    i2c-core: driver [max17135] using legacy suspend method                        

    i2c-core: driver [max17135] using legacy resume method                         

    honmax_max7310_init==============================                              

    pca953x 0-0018: failed writing register                                        

    Switching to clocksource mxc_timer1                                            

    NET: Registered protocol family 2                                              

    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)              

    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)           

    TCP bind hash table entries: 65536 (order: 7, 786432 bytes)                    

    TCP: Hash tables configured (established 131072 bind 65536)                    

    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.                      

    honmax hm13088 version:  2 7                                                   

    honmax hm13088 mac1: 66:55:44:33:22:11                                         

    honmax hm13088 mac2: cc:bb:aa:99:88:77                                         

    get config = 0                                                                 

    i2c-core: driver [hm13088] using legacy suspend method                         

    i2c-core: driver [hm13088] using legacy resume method                          

    PMU: registered new PMU device of type 0                                       

    Static Power Management for Freescale i.MX6                                    

    wait mode is enabled for i.MX6                                                 

    cpaddr = c0880000 suspend_iram_base=c0918000                                   

    PM driver module loaded                                                        

    iMX6 PCIe PCIe RC mode imx_pcie_pltfm_probe entering.                          

    PCIE: imx_pcie_pltfm_probe start link up.                                      

    IMX PCIe port: link up.                                                        

    ljc----------debug: pci_find_next_bus                                          

    PCI: bus0: Fast back to back transfers disabled                                

    ljc----------debug: pci_find_next_bus                                          

    ljc----------debug: pci_find_next_bus                                          

    liutest start fixup imx6dq pcie tw6869                                         

    pci 0000:01:00.0: Setting PCI class for tw6868 PCIe device                     

    liutest END fixup imx6dq pcie tw6869                                           

    PCI: bus1: Fast back to back transfers disabled                                

    pci 0000:00:00.0: BAR 0: assigned [mem 0x01000000-0x010fffff 64bit pref]       

    pci 0000:00:00.0: BAR 0: set to [mem 0x01000000-0x010fffff 64bit pref] (PCI add)

    pci 0000:00:00.0: BAR 9: assigned [mem 0x01100000-0x011fffff pref]             

    pci 0000:00:00.0: BAR 6: assigned [mem 0x01200000-0x0120ffff pref]             

    pci 0000:01:00.0: BAR 0: assigned [mem 0x01100000-0x01100fff pref]             

    pci 0000:01:00.0: BAR 0: set to [mem 0x01100000-0x01100fff pref] (PCI address [)

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

    pci 0000:00:00.0:   bridge window [io  disabled]                               

    pci 0000:00:00.0:   bridge window [mem disabled]                               

    pci 0000:00:00.0:   bridge window [mem 0x01100000-0x011fffff pref]             

    liutest PCI: r->start =0x1000000  r->end =0x10fffff                            

    IMX usb wakeup probe                                                           

    add wake up source irq 75                                                      

    IMX usb wakeup probe                                                            

    cpu regulator mode:ldo_enable                                                  

    i.MXC CPU frequency driver                                                     

    nfs4filelayout_init: NFSv4 File Layout Driver Registering...                   

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

    msgmni has been set to 1494                                                    

    alg: No test for stdrng (krng)                                                 

    io scheduler noop registered                                                   

    io scheduler deadline registered                                               

    io scheduler cfq registered (default)                                          

    mxc_mipi_dsi mxc_mipi_dsi: i.MX MIPI DSI driver probed                         

    MIPI DSI driver module loaded                                                  

    mxc_sdc_fb mxc_sdc_fb.0: register mxc display driver ldb                       

    _regulator_get: get() with no identifier                                       

    Console: switching to colour frame buffer device 80x29                         

    mxc_sdc_fb mxc_sdc_fb.1: register mxc display driver ldb                       

    mxc_sdc_fb mxc_sdc_fb.2: register mxc display driver lcd                       

    mxc_sdc_fb mxc_sdc_fb.3: register mxc display driver ldb                       

    mxc_sdc_fb mxc_sdc_fb.3: ipu1-di0 already in use                                

    mxc_sdc_fb: probe of mxc_sdc_fb.3 failed with error -16                        

    ch7024: TV encoder present: id = 45                                            

    ch7024: irq = ffffffff                                                          

    ch7024: probe ok                                                               

    CH7024: change to PAL video          

    CH7024: setup finished.                                                        

    i2c-core: driver [ch7024] using legacy suspend method                          

    i2c-core: driver [ch7024] using legacy resume method                           

    imx-sdma imx-sdma: loaded firmware 1.1                                         

    imx-sdma imx-sdma: initialized                                                 

    Serial: IMX driver                                                             

    imx-uart.0: ttymxc0 at MMIO 0x2020000 (irq = 58) is a IMX                      

    console [ttymxc0] enabled, bootconsole disabled                                

    console [ttymxc0] enabled, bootconsole disabled                                

    imx-uart.1: ttymxc1 at MMIO 0x21e8000 (irq = 59) is a IMX                      

    imx-uart.2: ttymxc2 at MMIO 0x21ec000 (irq = 60) is a IMX                      

    imx-uart.3: ttymxc3 at MMIO 0x21f0000 (irq = 61) is a IMX                      

    imx-uart.4: ttymxc4 at MMIO 0x21f4000 (irq = 62) is a IMX                      

    loop: module loaded                                                             

    No sata disk.                                                                  

    m25p80 spi0.0: found m25p05-nonjedec, expected sst25vf016b                     

    m25p80 spi0.0: m25p05-nonjedec (64 Kbytes)                                      

    Creating 2 MTD partitions on "m25p80":                                         

    0x000000000000-0x000000100000 : "bootloader"                                   

    mtd: partition "bootloader" extends beyond the end of device "m25p80" -- size t0

    0x000000010000-0x000000010000 : "kernel"                                       

    mtd: partition "kernel" is out of reach -- disabled                            

    GPMI NAND driver registered. (IMX)                                             

    vcan: Virtual CAN interface driver                                             

    CAN device driver interface                                                    

    flexcan netdevice driver                                                       

    flfec_enet_mii_bus: probed                                                      

    PPP generic driver version 2.4.2                                               

    SLIP: version 0.8.4-NET3.019-NEWTTY (dynamic channels, max=256).               

    CSLIP: code copyright 1989 Regents of the University of California.            

    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver                     

    fsl-ehci fsl-ehci.0: Freescale On-Chip EHCI Host Controller                    

    fsl-ehci fsl-ehci.0: new USB bus registered, assigned bus number 1             

    fsl-ehci fsl-ehci.0: irq 75, io base 0x02184000                                

    fsl-ehci fsl-ehci.0: USB 2.0 started, EHCI 1.00                                

    hub 1-0:1.0: USB hub found                                                     

    hub 1-0:1.0: 1 port detected                                                   

    add wake up source irq 72                                                      

    imx6q_sabresd_host1_vbus:1                                                      

    fsl-ehci fsl-ehci.1: Freescale On-Chip EHCI Host Controller                    

    fsl-ehci fsl-ehci.1: new USB bus registered, assigned bus number 2             

    fsl-ehci fsl-ehci.1: irq 72, io base 0x02184200                                

    fsl-ehci fsl-ehci.1: USB 2.0 started, EHCI 1.00                                

    hub 2-0:1.0: USB hub found                                                     

    hub 2-0:1.0: 1 port detected                                                    

    Initializing USB Mass Storage driver...                                        

    usbcore: registered new interface driver usb-storage                           

    USB Mass Storage support registered.                                            

    usbcore: registered new interface driver usbserial                             

    USB Serial support registered for generic                                      

    usbcore: registered new interface driver usbserial_generic                     

    usbserial: USB Serial Driver core                                              

    USB Serial support registered for GSM modem (1-port)                           

    usbcore: registered new interface driver option                                

    option: v0.7.2:USB Driver for GSM modems                                       

    ARC USBOTG Device Controller driver (1 August 2005)                            

    mousedev: PS/2 mouse device common for all mice                                

    yzw==>gpio_keys_probe                                                           

    input: gpio-keys as /devices/platform/gpio-keys/input/input0                   

    max11801_ts 1-0048: Failed to register interruptr [isl29023] using legacy susped

    i2c-core: driver [isl29023] using legacy resume method                         

    snvs_rtc snvs_rtc.0: rtc core: registered snvs_rtc as rtc0                     

    i2c /dev entries driver                                                        

    Linux video capture interface: v2.00                                           

    TW6868_: v4l2 driver version 2.0.1 loaded                                      

    PCI register init called                                                       

    liutest PCI: r->start =0x1100000  r->end =0x1100fff                            

    PCI: enabling device 0000:01:00.0 (0140 -> 0142)                               

     TW6869[0] TW68_devcount: 0                                                    

    TW6869[0]: found at 0000:01:00.0, rev: 1, irq: 155, latency: 0, mmio: 0x1100000

    TW6869[0]: Hi: 32bit PCI DMA supported                                         

    TW6869[0]: subsystem: 0000:0000, board: TW6869 [card=1,insmod option]          

     TW6869 hwinit1                                                                  

    usb 2-1: new high speed USB device number 2 using fsl-ehci                     

     set tw68 VIDEO_CTRL2 2b :: 0xff00ff                                           

    DMA TW6869[0]: tw DMA_CONFIG 2b :: 0xff00ff                                    

     read tw68 VDELAY0 108 :: 0x14                                                 

     read tw68 MISC_CONTROL2 196 :: 0xe7                                            

    hub 2-1:1.0: USB hub found                                                     

    hub 2-1:1.0: 4 ports detected             

                                     

    ------set tv norm = PAL                                                        

    ------dev->crop setting   set tv norm = PAL,  width720   height576  size 829440

    TW68_initdev   TW6869[0]: request IRQ 155                                      

    Adding  TW686v_devlist 80b8cddc                                                

    TW6869[0]: Overlay supported -1 .                                               

    *****1*****video DEVICE NAME : TW6869[0] video (TW686922)   vfdev[1] 0xba1c9000

    *****1*****video DEVICE NAME : TW6869[0] video (TW686922)   minor 0   DMA 0  er

    *****6*****video DEVICE NAME : TW6869[0] video (TW686922)   minor 5   DMA 5  er

    *****7*****video DEVICE NAME : TW6869[0] video (TW686922)   vfdev[7] 0xba1c9e00

    *****7*****video DEVICE NAME : T9[0] video (TW686922)   minor 6   DMA 6  err0 0

    *****8*****video DEVICE NAME : TW6869[0] video (TW686922)   vfdev[8] 0xbad76000

    *****8*****video DEVICE NAME : TW6869[0] video (TW686922)   minor 7   DMA 7  er

    vdev_init8 Video DEVICE NAME : TW6869[0] video (TW686922)                      

    TW6869[0]: registered PCI device 1 [v4l2]:0  err: |9|                          

    DBG sensor data is at 80bc3d18                                                 

    ==adv7180_io_init==                                                            

    usb 2-1.2: new low speed USB device number 3 using fsl-ehci                

    i2c-core: driver [mag3110] using legacy suspend method                         

    i2c-core: driver [mag3110] using legacy resume method                          

    mma8451 0-001c: read chip ID 0x1 is not equal to 0x1a or 0x2a!                 

    mma8451: probe of 0-001c failed with error -22                                 

    imx2-wdt imx2-wdt.0: IMX2+ Watchdog Timer enabled. timeout=60s (nowayout=1)    

    Bluetooth: Virtual HCI driver ver 1.3                                          

    Bluetooth: HCI UART driver ver 2.2                                             

    Bluetooth: HCIATH3K protocol initialized                                       

    Bluetooth: Generic Bluetooth USB driver ver 0.6                                

    usbcore: registered new interface driver btusb                                 

    sdhci: Secure Digital Host Controller Interface driver                         

    sdhci: Copyright(c) Pierre Ossman                                              

    sdhci sdhci-esdhc-imx.2: no write-protect pin available!                       

    mmc0: SDHCI controller on platform [sdhci-esdhc-imx.2] using DMA               

    mmc1: SDHCI controller on platform [sdhci-esdhc-imx.3] using DMA               

    mmc2: SDHCI controller on platform [sdhci-esdhc-imx.1] using DMA               

    mxc_vdoa mxc_vdoa: i.MX Video Data Order Adapter(VDOA) driver probed            

    VPU initialized                                                                

    mxc_asrc registered                                                            

    Galcore version 4.6.9.6622                                                     

    Thermal calibration data is 0x5624ce69                                         

    Thermal sensor with ratio = 177                                                

    Anatop Thermal registered as thermal_zone0                                     

    anatop_thermal_probe: default cooling device is cpufreq!                       

    input:   USB Keyboard as /devices/platform/fsl-ehci.1/usb2/2-1/2-1.2/2-1.2:1.0/1

    generic-usb 0003:09DA:0260.0001: input,hidraw0: USB HID v1.10 Keyboard [  USB K0

    input:   USB Keyboard as /devices/platform/fsl-ehci.1/usb2/2-1/2-1.2/2-1.2:1.1/2

    generic-usb 0003:09DA:0260.0002: input,hidraw1: USB HID v1.10 Device [  USB Key1

    usbcore: registered new interface driver usbhid                                

    usbhid: USB HID core driver                                                    

    pca953x 0-0018: failed writing register                                        

    pca953x 0-0018: failed writing register                                        

    gps_ctrl_mixdev_init                                                           

    gps_ctrl_mixdev_probe                                                          

    gps_power_on:[1]                                                               

    gps_power_on:1                                                                  

    gps_ctrl_mixdev_probe ok                                                       

    gpio_switch_mixdev_init                                                        

    gpio_switch_mixdev_probe                                                        

    gpio_switch_mixdev_probe ok                                                    

    usbcore: registered new interface driver snd-usb-audio                         

    mxc_hdmi_soc mxc_hdmi_soc.0: MXC HDMI Audio                                     

    imx-hdmi-soc-dai imx-hdmi-soc-dai.0: Failed: Load HDMI-video first.            

    asoc: wm8960 <-> imx-ssi.1 mapping ok                                          

    Initialize HDMI-audio failed. Load HDMI-video first!                            

    ALSA device list:                                                              

      #0: wm8960-audio                                                             

    NET: Registered protocol family 26                                             

    TCP cubic registered                                                           

    NET: Registered protocol family 17                                             

    can: controller area network core (rev 20090105 abi 8)                         

    NET: Registered protocol family 29                                             

    can: raw protocol (rev 20090105)                                               

    can: broadcast manager protocol (rev 20090105 t)                               

    Bluetooth: RFCOMM TTY layer initialized                                        

    Bluetooth: RFCOMM socket layer initialized                                     

    Bluetooth: RFCOMM ver 1.11                                                     

    Bluetooth: BNEP (Ethernet Emulation) ver 1.3                                   

    Bluetooth: BNEP filters: protocol multicast                                    

    Bluetooth: HIDP (Human Interface Emulation) ver 1.2                            

    lib80211: common routines for IEEE802.11 drivers                                

    Registering the dns_resolver key type                                          

    mmc1: new high speed DDR MMC card at address 0001                              

    VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4        

    Bus freq driver module loaded                                                  

    mmcblk0: mmc1:0001 MMC04G 3.54 GiB                                             

    mmcblk0boot0: mmc1:0001 MMC04G partition 1 2.00 MiB                             

    Bus freq driver Enabled                                                        

    mxc_dvfs_core_probe                                                            

    mmcblk0boot1: mmc1:0001 MMC04G partition 2 2.00 MiB                            

    DVFS driver module loaded                                                      

     mmcblk0: p1                                                                   

    snvs_rtc snvs_rtc.0: setting system clock to 1970-01-01 00:00:01 UTC (1)       

     mmcblk0boot1: unknown partition table                                         

    eth0: Freescale FEC PHY driver [Generic PHY] (mii_bus:phy_addr=1:01, irq=-1)   

     mmcblk0boot0: unknown partition table                                         

    mmc2: new high speed SDIO card at address 0001                                 

    usb 2-1.1: new high speed USB device number 4 using fsl-ehci                   

    option 2-1.1:1.0: GSM modem (1-port) converter detected                        

    usb 2-1.1: GSM modem (1-port) converter now attached to ttyUSB0                

    option 2-1.1:1.1: GSM modem (1-port) converter detected                        

    usb 2-1.1: GSM modem (1-port) converter now attached to ttyUSB1                

    option 2-1.1:1.2: GSM modem (1-port) converter detected                         

    usb 2-1.1: GSM modem (1-port) converter now attached to ttyUSB2                

    PHY: 1:01 - Link is Up - 100/Full                                              

    Sending DHCP requests ., OK                                                     

    IP-Config: Got DHCP answer from 0.0.0.0, my address is 138.88.8.151            

    IP-Config: Complete:                                                           

         device=eth0, addr=138.88.8.151, mask=255.255.255.0, gw=138.88.8.1,        

         host=138.88.8.151, domain=, nis-domain=(none),                            

         bootserver=0.0.0.0, rootserver=138.88.8.192, rootpath=, mtu=576           

    Root-NFS: nfsroot=/home/zhushangzhi/ltib/rootfs,v3,tcp                         

    NFS: nfs mount opts='vers=2,udp,rsize=4096,wsize=4096,v3,tcp,nolock,addr=138.88'

    NFS:   parsing nfs mount option 'vers=2'                                       

    NFS:   parsing nfs mount option 'udp'                                          

    NFS:   parsing nfs mount option 'rsize=4096'                                   

    NFS:   parsing nfs mount option 'wsize=4096'                                   

    NFS:   parsing nfs mount option 'v3'                                           

    NFS:   parsing nfs mount option 'tcp'                                           

    NFS:   parsing nfs mount option 'nolock'                                       

    NFS:   parsing nfs mount option 'addr=138.88.8.192'                            

    NFS: MNTPATH: '/home/zhushangzhi/ltib/rootfs'                                   

    NFS: sending MNT request for 138.88.8.192:/home/zhushangzhi/ltib/rootfs        

    NFS: received 0 auth flavors                                                   

    NFS: MNT request succeeded                                                      

    VFS: Mounted root (nfs filesystem) on device 0:12.                             

    Freeing init memory: 508K                                                      

    starting pid 1482, tty '': '/etc/rc.d/rcS'                                     

    Mounting /proc and /sys                                                        

    Starting the hotplug events dispatcher udevd                                   

    udevd (1491): /proc/1491/oom_adj is deprecated, please use /proc/1491/oom_score.

    Synthesizing initial hotplug events                                            

    Setting the hostname to freescale                                              

    Mounting filesystems                                                           

    mount: mounting usbfs on /proc/bus/usb failed: No such file or directory       

    starting pid 2687, tty '': '/etc/rc.d/rc_gpu.S'                                

    enter: ch7024_fb_event                                                         

    enter ch7024_fb_event val=9 ch7024_cur_mode=0                                  

    mount: mounting /dev/mmcblk1p1 on /sdcard failed: No such file or directory    

    starting pid 2698, tty '': '/etc/rc.d/rc_mxc.S'                                

              can't mount SDCARD                                                    

              update system failed                                                 

                                                                                   

    arm-none-linux-gnueabi-gcc (Freescale MAD -- Linaro 2011.07 -- Built at 2011/08)

    root filesystem built on Sat, 02 Nov 2013 16:22:00 +0800                       

    Freescale Semiconductor, Inc.                                                  

                                                                                    

    freescale login:                -----------------rootfs boot OK

  • 相关阅读:
    【转】 测试人员的职业规划 --整理标注
    关于数据准备
    功能点算法及在软件测试中的应用
    MySQL常用命令大全
    Python学习笔记
    python 学习笔记 if语句
    一个男人关心的东西 决定了他的层次
    Oracle 计算两个时间的差值
    javascript对下拉列表框(select)的操作
    java需要掌握内容、核心不断更新中
  • 原文地址:https://www.cnblogs.com/Shangzhi/p/3666427.html
Copyright © 2011-2022 走看看