1. 首先修改kernel的bootargs,在bootargs中添加以下内容: - initcall_debug
-
printk.time=y
我使用的bootargs修改后如下:
- mem=64M console=ttySAC0,115200 noinitrd init=/linuxrc root=/dev/nfs rw nfsroot=192.168.0.100:/home/moran/rootfs ip=192.168.0.123:192.168.0.100:192.168.0.1:255.255.255.0:moran:eth0:off display=dh240 initcall_debug printk.time=y
这样kernel在启动时,将会打印出每个模块的启动耗时,将此log信息保存下来。
Ps:之前跟守业讨论这个问题时,其有提到要在kernel中打开以下选项:
- Kernel hacking
-
--->Show timing information on printks
但是我在没有打开此选项的情况下,依然能够打印出启动时间。
2. 使用kernel里的脚本协助分析启动时间 kernel中提供了一个“show_delta”的脚本,可以使用此脚本来协助我们分析kernel启动时每个模块的耗时情况。使用方法如下:
- $kernel/scripts/show_delta log_file > boot_time_info
这样脚本将会把具体的信息保存在boot_time_info中,其中每一行的前面显示了自启动到目前的耗时、以及加载本模块的耗时,可以很方便的分析Linux kernel的启动耗时情况。如下所示:
- Starting kernel ...
-
-
Uncompressing Linux................................................................................................................................................................... done, booting the kernel.
-
Linux version 2.6.32.2-FriendlyARM (moran@ubuntu) (gcc version 4.3.2 (Sourcery G++ Lite 2008q3-72) ) #10 Thu Jan 5 23:18:13 CST 2012
-
CPU: ARM920T [41129200] revision 0 (ARMv4T), cr=c0007177
-
CPU: VIVT data cache, VIVT instruction cache
-
Machine: FriendlyARM Mini2440 development board
-
Memory policy: ECC disabled, Data cache writeback
-
CPU S3C2440A (id 0x32440001)
-
S3C24XX Clocks, (c) 2004 Simtec Electronics
-
S3C244X: core 405.000 MHz, memory 101.250 MHz, peripheral 50.625 MHz
-
CLOCK: Slow mode (1.500 MHz), fast, MPLL on, UPLL on
-
Built 1 zonelists in Zone order, mobility grouping on. Total pages: 16256
-
Kernel command line: 64M console=ttySAC0,115200 noinitrd init=/linuxrc root=/dev/nfs rw nfsroot=192.168.0.100:/home/moran/rootfs ip=192.168.0.123:192.168.0.100:192.168.0.1:255.2 55.255.0:moran:eth0:off display=dh240 initcall_debug printk.time=y
-
[0.000000 < -65.840000 >] PID hash table entries: 256 (order: -2, 1024 bytes)
-
[0.000000 < 0.000000 >] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)
-
[0.000000 < 0.000000 >] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
-
[0.000000 < 0.000000 >] Memory: 64MB = 64MB total
-
[0.000000 < 0.000000 >] Memory: 59560KB available (4680K code, 469K data, 160K init, 0K highmem)
-
[0.000000 < 0.000000 >] SLUB: Genslabs=11, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
-
[0.000000 < 0.000000 >] Hierarchical RCU implementation.
-
[0.000000 < 0.000000 >] NR_IRQS:85
-
[0.000000 < 0.000000 >] irq: clearing pending status 02000000
-
[0.000000 < 0.000000 >] irq: clearing subpending status 00000002
-
[0.000000 < 0.000000 >] Console: colour dummy device 80x30
-
[0.000000 < 0.000000 >] console [ttySAC0] enabled
-
[0.015000 < 0.015000 >] Calibrating delay loop... 201.93 BogoMIPS (lpj=504832)
-
[0.110000 < 0.095000 >] Mount-cache hash table entries: 512
-
[0.110000 < 0.000000 >] CPU: Testing write buffer coherency: ok
-
[0.115000 < 0.005000 >] calling spawn_ksoftirqd+0x0/0x5c @ 1
-
[0.120000 < 0.005000 >] initcall spawn_ksoftirqd+0x0/0x5c returned 0 after 373 usecs
-
[0.130000 < 0.010000 >] calling init_mmap_min_addr+0x0/0x2c @ 1
-
[0.130000 < 0.000000 >] initcall init_mmap_min_addr+0x0/0x2c returned 0 after 8 usecs
-
[0.135000 < 0.005000 >] calling net_ns_init+0x0/0x128 @ 1
-
[0.140000 < 0.005000 >] initcall net_ns_init+0x0/0x128 returned 0 after 18 usecs
-
[0.145000 < 0.005000 >] calling ptrace_break_init+0x0/0x2c @ 1
-
[0.150000 < 0.005000 >] initcall ptrace_break_init+0x0/0x2c returned 0 after 8 usecs
-
[0.155000 < 0.005000 >] calling consistent_init+0x0/0xd4 @ 1
-
[0.160000 < 0.005000 >] initcall consistent_init+0x0/0xd4 returned 0 after 59 usecs
-
[0.165000 < 0.005000 >] calling s3c24xx_gpiolib_init+0x0/0x34 @ 1
-
[0.170000 < 0.005000 >] initcall s3c24xx_gpiolib_init+0x0/0x34 returned 0 after 38 usecs
-
[0.175000 < 0.005000 >] calling s3c2442_core_init+0x0/0x1c @ 1
-
[0.180000 < 0.005000 >] initcall s3c2442_core_init+0x0/0x1c returned 0 after 843 usecs
-
[0.185000 < 0.005000 >] calling s3c2440_core_init+0x0/0x1c @ 1
-
[0.190000 < 0.005000 >] initcall s3c2440_core_init+0x0/0x1c returned 0 after 759 usecs
-
[0.195000 < 0.005000 >] calling s3c24xx_dma_sysclass_init+0x0/0x38 @ 1
-
[0.200000 < 0.005000 >] initcall s3c24xx_dma_sysclass_init+0x0/0x38 returned 0 after 858 usecs
-
[0.210000 < 0.010000 >] calling sysctl_init+0x0/0x24 @ 1
-
[0.210000 < 0.000000 >] initcall sysctl_init+0x0/0x24 returned 0 after 58 usecs
-
[0.215000 < 0.005000 >] calling ksysfs_init+0x0/0xbc @ 1
-
[0.215000 < 0.000000 >] initcall ksysfs_init+0x0/0xbc returned 0 after 112 usecs
-
[0.220000 < 0.005000 >] calling async_init+0x0/0x78 @ 1
-
[0.225000 < 0.005000 >] initcall async_init+0x0/0x78 returned 0 after 504 usecs
-
[0.230000 < 0.005000 >] calling init_jiffies_clocksource+0x0/0x1c @ 1
-
[0.235000 < 0.005000 >] initcall init_jiffies_clocksource+0x0/0x1c returned 0 after 10 usecs
-
[0.240000 < 0.005000 >] calling init_zero_pfn+0x0/0x3c @ 1
-
[0.245000 < 0.005000 >] initcall init_zero_pfn+0x0/0x3c returned 0 after 5 usecs
-
[0.250000 < 0.005000 >] calling filelock_init+0x0/0x4c @ 1
-
[0.255000 < 0.005000 >] initcall filelock_init+0x0/0x4c returned 0 after 45 usecs
-
[0.260000 < 0.005000 >] calling init_script_binfmt+0x0/0x20 @ 1
-
[0.265000 < 0.005000 >] initcall init_script_binfmt+0x0/0x20 returned 0 after 6 usecs
-
[0.270000 < 0.005000 >] calling init_elf_binfmt+0x0/0x20 @ 1
-
[0.275000 < 0.005000 >] initcall init_elf_binfmt+0x0/0x20 returned 0 after 5 usecs
-
[0.280000 < 0.005000 >] calling random32_init+0x0/0x114 @ 1
-
[0.285000 < 0.005000 >] initcall random32_init+0x0/0x114 returned 0 after 8 usecs
-
[0.290000 < 0.005000 >] calling sock_init+0x0/0x78 @ 1
-
[0.295000 < 0.005000 >] initcall sock_init+0x0/0x78 returned 0 after 267 usecs
-
[0.300000 < 0.005000 >] calling netlink_proto_init+0x0/0x230 @ 1
-
[0.305000 < 0.005000 >] NET: Registered protocol family 16
-
[0.310000 < 0.005000 >] initcall netlink_proto_init+0x0/0x230 returned 0 after 4475 usecs
-
[0.320000 < 0.010000 >] calling bdi_class_init+0x0/0x40 @ 1
-
[0.325000 < 0.005000 >] initcall bdi_class_init+0x0/0x40 returned 0 after 1075 usecs
-
[0.330000 < 0.005000 >] calling kobject_uevent_init+0x0/0x74 @ 1
-
[0.335000 < 0.005000 >] initcall kobject_uevent_init+0x0/0x74 returned 0 after 84 usecs
-
[0.340000 < 0.005000 >] calling tty_class_init+0x0/0x4c @ 1
-
[0.345000 < 0.005000 >] initcall tty_class_init+0x0/0x4c returned 0 after 893 usecs
-
[0.350000 < 0.005000 >] calling vtconsole_class_init+0x0/0xec @ 1
-
[0.360000 < 0.010000 >] initcall vtconsole_class_init+0x0/0xec returned 0 after 2148 usecs
-
[0.365000 < 0.005000 >] calling i2c_init+0x0/0x48 @ 1
-
[0.370000 < 0.005000 >] initcall i2c_init+0x0/0x48 returned 0 after 1843 usecs
-
[0.375000 < 0.005000 >] calling customize_machine+0x0/0x2c @ 1
-
[0.380000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000020
-
[0.395000 < 0.015000 >] initcall customize_machine+0x0/0x2c returned 0 after 16073 usecs
-
[0.395000 < 0.000000 >] calling s3c2440_irq_init+0x0/0x24 @ 1
-
[0.400000 < 0.005000 >] initcall s3c2440_irq_init+0x0/0x24 returned 0 after 15 usecs
-
[0.405000 < 0.005000 >] calling s3c24xx_clk_driver+0x0/0x24 @ 1
-
[0.410000 < 0.005000 >] initcall s3c24xx_clk_driver+0x0/0x24 returned 0 after 7 usecs
-
[0.415000 < 0.005000 >] calling s3c2440_dma_init+0x0/0x24 @ 1
-
[0.420000 < 0.005000 >] initcall s3c2440_dma_init+0x0/0x24 returned 0 after 10 usecs
-
[0.425000 < 0.005000 >] calling s3c2442_irq_init+0x0/0x24 @ 1
-
[0.430000 < 0.005000 >] initcall s3c2442_irq_init+0x0/0x24 returned 0 after 11 usecs
-
[0.435000 < 0.005000 >] calling s3c2440_irq_init+0x0/0x24 @ 1
-
[0.440000 < 0.005000 >] initcall s3c2440_irq_init+0x0/0x24 returned 0 after 12 usecs
-
[0.445000 < 0.005000 >] calling s3c2442_clk_init+0x0/0x24 @ 1
-
[0.450000 < 0.005000 >] initcall s3c2442_clk_init+0x0/0x24 returned 0 after 9 usecs
-
[0.455000 < 0.005000 >] calling s3c2440_clk_init+0x0/0x24 @ 1
-
[0.460000 < 0.005000 >] initcall s3c2440_clk_init+0x0/0x24 returned 0 after 10 usecs
-
[0.465000 < 0.005000 >] calling s3c_arch_init+0x0/0x58 @ 1
-
[0.470000 < 0.005000 >] S3C2440: Initialising architecture
-
[0.475000 < 0.005000 >] S3C2440: IRQ Support
-
[0.475000 < 0.000000 >] S3C24XX DMA Driver, (c) 2003-2004,2006 Simtec Electronics
-
[0.480000 < 0.005000 >] DMA channel 0 at c4808000, irq 33
-
[0.485000 < 0.005000 >] DMA channel 1 at c4808040, irq 34
-
[0.485000 < 0.000000 >] DMA channel 2 at c4808080, irq 35
-
[0.490000 < 0.005000 >] DMA channel 3 at c48080c0, irq 36
-
[0.495000 < 0.005000 >] S3C244X: Clock Support, DVS off
-
[0.505000 < 0.010000 >] initcall s3c_arch_init+0x0/0x58 returned 0 after 33382 usecs
-
[0.505000 < 0.000000 >] calling topology_init+0x0/0x30 @ 1
-
[0.510000 < 0.005000 >] initcall topology_init+0x0/0x30 returned 0 after 902 usecs
-
[0.515000 < 0.005000 >] calling param_sysfs_init+0x0/0x228 @ 1
-
[0.715000 < 0.200000 >] initcall param_sysfs_init+0x0/0x228 returned 0 after 187550 usecs
-
[0.715000 < 0.000000 >] calling default_bdi_init+0x0/0xbc @ 1
-
[0.720000 < 0.005000 >] initcall default_bdi_init+0x0/0xbc returned 0 after 1731 usecs
-
[0.725000 < 0.005000 >] calling init_bio+0x0/0x100 @ 1
-
[0.730000 < 0.005000 >] bio: create slab at 0
-
[0.735000 < 0.005000 >] initcall init_bio+0x0/0x100 returned 0 after 3904 usecs
-
[0.740000 < 0.005000 >] calling cryptomgr_init+0x0/0x1c @ 1
-
[0.745000 < 0.005000 >] initcall cryptomgr_init+0x0/0x1c returned 0 after 9 usecs
-
[0.750000 < 0.005000 >] calling blk_settings_init+0x0/0x40 @ 1
-
[0.755000 < 0.005000 >] initcall blk_settings_init+0x0/0x40 returned 0 after 5 usecs
-
[0.760000 < 0.005000 >] calling blk_ioc_init+0x0/0x48 @ 1
-
[0.765000 < 0.005000 >] initcall blk_ioc_init+0x0/0x48 returned 0 after 22 usecs
-
[0.770000 < 0.005000 >] calling blk_softirq_init+0x0/0x34 @ 1
-
[0.775000 < 0.005000 >] initcall blk_softirq_init+0x0/0x34 returned 0 after 6 usecs
-
[0.780000 < 0.005000 >] calling blk_iopoll_setup+0x0/0x34 @ 1
-
[0.785000 < 0.005000 >] initcall blk_iopoll_setup+0x0/0x34 returned 0 after 6 usecs
-
[0.790000 < 0.005000 >] calling genhd_device_init+0x0/0x8c @ 1
-
[0.800000 < 0.010000 >] initcall genhd_device_init+0x0/0x8c returned 0 after 1753 usecs
-
[0.805000 < 0.005000 >] calling fbmem_init+0x0/0xc0 @ 1
-
[0.810000 < 0.005000 >] initcall fbmem_init+0x0/0xc0 returned 0 after 991 usecs
-
[0.815000 < 0.005000 >] calling misc_init+0x0/0xd0 @ 1
-
[0.820000 < 0.005000 >] initcall misc_init+0x0/0xd0 returned 0 after 1000 usecs
-
[0.825000 < 0.005000 >] calling init_scsi+0x0/0x84 @ 1
-
[0.830000 < 0.005000 >] SCSI subsystem initialized
-
[0.830000 < 0.000000 >] initcall init_scsi+0x0/0x84 returned 0 after 3509 usecs
-
[0.835000 < 0.005000 >] calling usb_init+0x0/0x118 @ 1
-
[0.840000 < 0.005000 >] usbcore: registered new interface driver usbfs
-
[0.845000 < 0.005000 >] usbcore: registered new interface driver hub
-
[0.850000 < 0.005000 >] usbcore: registered new device driver usb
-
[0.850000 < 0.000000 >] initcall usb_init+0x0/0x118 returned 0 after 15170 usecs
-
[0.855000 < 0.005000 >] calling input_init+0x0/0x16c @ 1
-
[0.860000 < 0.005000 >] initcall input_init+0x0/0x16c returned 0 after 1039 usecs
-
[0.865000 < 0.005000 >] calling rtc_init+0x0/0x74 @ 1
-
[0.870000 < 0.005000 >] initcall rtc_init+0x0/0x74 returned 0 after 932 usecs
-
[0.875000 < 0.005000 >] calling i2c_adap_s3c_init+0x0/0x1c @ 1
-
[0.880000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[0.885000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[0.890000 < 0.005000 >] s3c-i2c s3c2440-i2c: slave address 0x10
-
[0.895000 < 0.005000 >] s3c-i2c s3c2440-i2c: bus frequency set to 98 KHz
-
[0.900000 < 0.005000 >] s3c-i2c s3c2440-i2c: i2c-0: S3C I2C adapter
-
[0.905000 < 0.005000 >] initcall i2c_adap_s3c_init+0x0/0x1c returned 0 after 25286 usecs
-
[0.910000 < 0.005000 >] calling mmc_init+0x0/0x90 @ 1
-
[0.920000 < 0.010000 >] initcall mmc_init+0x0/0x90 returned 0 after 3432 usecs
-
[0.920000 < 0.000000 >] calling proto_init+0x0/0x1c @ 1
-
[0.925000 < 0.005000 >] initcall proto_init+0x0/0x1c returned 0 after 56 usecs
-
[0.930000 < 0.005000 >] calling net_dev_init+0x0/0x140 @ 1
-
[0.940000 < 0.010000 >] initcall net_dev_init+0x0/0x140 returned 0 after 2648 usecs
-
[0.940000 < 0.000000 >] calling neigh_init+0x0/0x8c @ 1
-
[0.945000 < 0.005000 >] initcall neigh_init+0x0/0x8c returned 0 after 10 usecs
-
[0.950000 < 0.005000 >] calling genl_init+0x0/0xa0 @ 1
-
[0.955000 < 0.005000 >] initcall genl_init+0x0/0xa0 returned 0 after 202 usecs
-
[0.960000 < 0.005000 >] calling wireless_nlevent_init+0x0/0x1c @ 1
-
[0.965000 < 0.005000 >] initcall wireless_nlevent_init+0x0/0x1c returned 0 after 8 usecs
-
[0.970000 < 0.005000 >] calling cfg80211_init+0x0/0x88 @ 1
-
[0.975000 < 0.005000 >] cfg80211: Calling CRDA to update world regulatory domain
-
[0.980000 < 0.005000 >] initcall cfg80211_init+0x0/0x88 returned 0 after 7125 usecs
-
[0.985000 < 0.005000 >] calling ieee80211_init+0x0/0x14 @ 1
-
[0.990000 < 0.005000 >] initcall ieee80211_init+0x0/0x14 returned 0 after 15 usecs
-
[0.995000 < 0.005000 >] calling sysctl_init+0x0/0x54 @ 1
-
[1.000000 < 0.005000 >] initcall sysctl_init+0x0/0x54 returned 0 after 16 usecs
-
[1.005000 < 0.005000 >] calling alignment_init+0x0/0xe8 @ 1
-
[1.005000 < 0.000000 >] initcall alignment_init+0x0/0xe8 returned 0 after 74 usecs
-
[1.010000 < 0.005000 >] calling clocksource_done_booting+0x0/0x3c @ 1
-
[1.015000 < 0.005000 >] initcall clocksource_done_booting+0x0/0x3c returned 0 after 7 usecs
-
[1.020000 < 0.005000 >] calling init_pipe_fs+0x0/0x5c @ 1
-
[1.025000 < 0.005000 >] initcall init_pipe_fs+0x0/0x5c returned 0 after 111 usecs
-
[1.030000 < 0.005000 >] calling eventpoll_init+0x0/0xc0 @ 1
-
[1.035000 < 0.005000 >] initcall eventpoll_init+0x0/0xc0 returned 0 after 98 usecs
-
[1.040000 < 0.005000 >] calling anon_inode_init+0x0/0x130 @ 1
-
[1.045000 < 0.005000 >] initcall anon_inode_init+0x0/0x130 returned 0 after 175 usecs
-
[1.050000 < 0.005000 >] calling blk_scsi_ioctl_init+0x0/0x1a8 @ 1
-
[1.055000 < 0.005000 >] initcall blk_scsi_ioctl_init+0x0/0x1a8 returned 0 after 10 usecs
-
[1.060000 < 0.005000 >] calling chr_dev_init+0x0/0xd0 @ 1
-
[1.075000 < 0.015000 >] initcall chr_dev_init+0x0/0xd0 returned 0 after 8543 usecs
-
[1.075000 < 0.000000 >] calling firmware_class_init+0x0/0x78 @ 1
-
[1.080000 < 0.005000 >] initcall firmware_class_init+0x0/0x78 returned 0 after 968 usecs
-
[1.085000 < 0.005000 >] calling sysctl_core_init+0x0/0x40 @ 1
-
[1.090000 < 0.005000 >] initcall sysctl_core_init+0x0/0x40 returned 0 after 77 usecs
-
[1.095000 < 0.005000 >] calling inet_init+0x0/0x1f4 @ 1
-
[1.100000 < 0.005000 >] NET: Registered protocol family 2
-
[1.100000 < 0.000000 >] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
-
[1.105000 < 0.005000 >] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
-
[1.110000 < 0.005000 >] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
-
[1.115000 < 0.005000 >] TCP: Hash tables configured (established 2048 bind 2048)
-
[1.120000 < 0.005000 >] TCP reno registered
-
[1.120000 < 0.000000 >] initcall inet_init+0x0/0x1f4 returned 0 after 23289 usecs
-
[1.125000 < 0.005000 >] calling af_unix_init+0x0/0x5c @ 1
-
[1.130000 < 0.005000 >] NET: Registered protocol family 1
-
[1.135000 < 0.005000 >] initcall af_unix_init+0x0/0x5c returned 0 after 4329 usecs
-
[1.140000 < 0.005000 >] calling init_sunrpc+0x0/0x64 @ 1
-
[1.145000 < 0.005000 >] RPC: Registered udp transport module.
-
[1.150000 < 0.005000 >] RPC: Registered tcp transport module.
-
[1.155000 < 0.005000 >] RPC: Registered tcp NFSv4.1 backchannel transport module.
-
[1.160000 < 0.005000 >] initcall init_sunrpc+0x0/0x64 returned 0 after 15179 usecs
-
[1.165000 < 0.005000 >] calling default_rootfs+0x0/0x7c @ 1
-
[1.170000 < 0.005000 >] initcall default_rootfs+0x0/0x7c returned 0 after 151 usecs
-
[1.175000 < 0.005000 >] calling timer_init_sysfs+0x0/0x40 @ 1
-
[1.180000 < 0.005000 >] initcall timer_init_sysfs+0x0/0x40 returned 0 after 1889 usecs
-
[1.185000 < 0.005000 >] calling fpe_init+0x0/0x80 @ 1
-
[1.190000 < 0.005000 >] NetWinder Floating Point Emulator V0.97 (double precision)
-
[1.195000 < 0.005000 >] initcall fpe_init+0x0/0x80 returned 0 after 6237 usecs
-
[1.200000 < 0.005000 >] calling proc_execdomains_init+0x0/0x40 @ 1
-
[1.210000 < 0.010000 >] initcall proc_execdomains_init+0x0/0x40 returned 0 after 86 usecs
-
[1.215000 < 0.005000 >] calling ioresources_init+0x0/0x60 @ 1
-
[1.220000 < 0.005000 >] initcall ioresources_init+0x0/0x60 returned 0 after 52 usecs
-
[1.225000 < 0.005000 >] calling uid_cache_init+0x0/0xac @ 1
-
[1.230000 < 0.005000 >] initcall uid_cache_init+0x0/0xac returned 0 after 80 usecs
-
[1.235000 < 0.005000 >] calling init_posix_timers+0x0/0x19c @ 1
-
[1.240000 < 0.005000 >] initcall init_posix_timers+0x0/0x19c returned 0 after 61 usecs
-
[1.245000 < 0.005000 >] calling init_posix_cpu_timers+0x0/0x120 @ 1
-
[1.250000 < 0.005000 >] initcall init_posix_cpu_timers+0x0/0x120 returned 0 after 13 usecs
-
[1.255000 < 0.005000 >] calling nsproxy_cache_init+0x0/0x48 @ 1
-
[1.260000 < 0.005000 >] initcall nsproxy_cache_init+0x0/0x48 returned 0 after 23 usecs
-
[1.265000 < 0.005000 >] calling timekeeping_init_device+0x0/0x30 @ 1
-
[1.275000 < 0.010000 >] initcall timekeeping_init_device+0x0/0x30 returned 0 after 1796 usecs
-
[1.280000 < 0.005000 >] calling init_clocksource_sysfs+0x0/0x58 @ 1
-
[1.285000 < 0.005000 >] initcall init_clocksource_sysfs+0x0/0x58 returned 0 after 1714 usecs
-
[1.290000 < 0.005000 >] calling init_timer_list_procfs+0x0/0x48 @ 1
-
[1.300000 < 0.010000 >] initcall init_timer_list_procfs+0x0/0x48 returned 0 after 95 usecs
-
[1.305000 < 0.005000 >] calling futex_init+0x0/0x7c @ 1
-
[1.310000 < 0.005000 >] initcall futex_init+0x0/0x7c returned 0 after 52 usecs
-
[1.315000 < 0.005000 >] calling proc_modules_init+0x0/0x40 @ 1
-
[1.320000 < 0.005000 >] initcall proc_modules_init+0x0/0x40 returned 0 after 37 usecs
-
[1.325000 < 0.005000 >] calling kallsyms_init+0x0/0x40 @ 1
-
[1.330000 < 0.005000 >] initcall kallsyms_init+0x0/0x40 returned 0 after 44 usecs
-
[1.335000 < 0.005000 >] calling utsname_sysctl_init+0x0/0x20 @ 1
-
[1.340000 < 0.005000 >] initcall utsname_sysctl_init+0x0/0x20 returned 0 after 41 usecs
-
[1.345000 < 0.005000 >] calling init_per_zone_wmark_min+0x0/0x74 @ 1
-
[1.350000 < 0.005000 >] initcall init_per_zone_wmark_min+0x0/0x74 returned 0 after 399 usecs
-
[1.355000 < 0.005000 >] calling kswapd_init+0x0/0x20 @ 1
-
[1.360000 < 0.005000 >] initcall kswapd_init+0x0/0x20 returned 0 after 436 usecs
-
[1.365000 < 0.005000 >] calling setup_vmstat+0x0/0x98 @ 1
-
[1.370000 < 0.005000 >] initcall setup_vmstat+0x0/0x98 returned 0 after 108 usecs
-
[1.375000 < 0.005000 >] calling mm_sysfs_init+0x0/0x40 @ 1
-
[1.380000 < 0.005000 >] initcall mm_sysfs_init+0x0/0x40 returned 0 after 84 usecs
-
[1.385000 < 0.005000 >] calling proc_vmalloc_init+0x0/0x40 @ 1
-
[1.390000 < 0.005000 >] initcall proc_vmalloc_init+0x0/0x40 returned 0 after 49 usecs
-
[1.395000 < 0.005000 >] calling slab_proc_init+0x0/0x40 @ 1
-
[1.400000 < 0.005000 >] initcall slab_proc_init+0x0/0x40 returned 0 after 51 usecs
-
[1.405000 < 0.005000 >] calling slab_sysfs_init+0x0/0xf0 @ 1
-
[1.470000 < 0.065000 >] initcall slab_sysfs_init+0x0/0xf0 returned 0 after 60176 usecs
-
[1.475000 < 0.005000 >] calling fasync_init+0x0/0x48 @ 1
-
[1.480000 < 0.005000 >] initcall fasync_init+0x0/0x48 returned 0 after 303 usecs
-
[1.485000 < 0.005000 >] calling proc_filesystems_init+0x0/0x40 @ 1
-
[1.490000 < 0.005000 >] initcall proc_filesystems_init+0x0/0x40 returned 0 after 73 usecs
-
[1.495000 < 0.005000 >] calling aio_setup+0x0/0x8c @ 1
-
[1.500000 < 0.005000 >] initcall aio_setup+0x0/0x8c returned 0 after 659 usecs
-
[1.505000 < 0.005000 >] calling proc_locks_init+0x0/0x40 @ 1
-
[1.510000 < 0.005000 >] initcall proc_locks_init+0x0/0x40 returned 0 after 83 usecs
-
[1.515000 < 0.005000 >] calling proc_cmdline_init+0x0/0x40 @ 1
-
[1.520000 < 0.005000 >] initcall proc_cmdline_init+0x0/0x40 returned 0 after 46 usecs
-
[1.525000 < 0.005000 >] calling proc_cpuinfo_init+0x0/0x40 @ 1
-
[1.530000 < 0.005000 >] initcall proc_cpuinfo_init+0x0/0x40 returned 0 after 44 usecs
-
[1.535000 < 0.005000 >] calling proc_devices_init+0x0/0x40 @ 1
-
[1.540000 < 0.005000 >] initcall proc_devices_init+0x0/0x40 returned 0 after 46 usecs
-
[1.545000 < 0.005000 >] calling proc_interrupts_init+0x0/0x40 @ 1
-
[1.550000 < 0.005000 >] initcall proc_interrupts_init+0x0/0x40 returned 0 after 44 usecs
-
[1.555000 < 0.005000 >] calling proc_loadavg_init+0x0/0x40 @ 1
-
[1.560000 < 0.005000 >] initcall proc_loadavg_init+0x0/0x40 returned 0 after 46 usecs
-
[1.565000 < 0.005000 >] calling proc_meminfo_init+0x0/0x40 @ 1
-
[1.570000 < 0.005000 >] initcall proc_meminfo_init+0x0/0x40 returned 0 after 55 usecs
-
[1.575000 < 0.005000 >] calling proc_stat_init+0x0/0x40 @ 1
-
[1.580000 < 0.005000 >] initcall proc_stat_init+0x0/0x40 returned 0 after 47 usecs
-
[1.585000 < 0.005000 >] calling proc_uptime_init+0x0/0x40 @ 1
-
[1.590000 < 0.005000 >] initcall proc_uptime_init+0x0/0x40 returned 0 after 45 usecs
-
[1.595000 < 0.005000 >] calling proc_version_init+0x0/0x40 @ 1
-
[1.600000 < 0.005000 >] initcall proc_version_init+0x0/0x40 returned 0 after 53 usecs
-
[1.605000 < 0.005000 >] calling proc_softirqs_init+0x0/0x40 @ 1
-
[1.610000 < 0.005000 >] initcall proc_softirqs_init+0x0/0x40 returned 0 after 48 usecs
-
[1.615000 < 0.005000 >] calling proc_kmsg_init+0x0/0x40 @ 1
-
[1.620000 < 0.005000 >] initcall proc_kmsg_init+0x0/0x40 returned 0 after 58 usecs
-
[1.625000 < 0.005000 >] calling proc_page_init+0x0/0x60 @ 1
-
[1.630000 < 0.005000 >] initcall proc_page_init+0x0/0x60 returned 0 after 58 usecs
-
[1.635000 < 0.005000 >] calling configfs_init+0x0/0xe0 @ 1
-
[1.640000 < 0.005000 >] initcall configfs_init+0x0/0xe0 returned 0 after 1658 usecs
-
[1.645000 < 0.005000 >] calling init_devpts_fs+0x0/0x5c @ 1
-
[1.650000 < 0.005000 >] initcall init_devpts_fs+0x0/0x5c returned 0 after 172 usecs
-
[1.655000 < 0.005000 >] calling init_ramfs_fs+0x0/0x1c @ 1
-
[1.660000 < 0.005000 >] initcall init_ramfs_fs+0x0/0x1c returned 0 after 12 usecs
-
[1.665000 < 0.005000 >] calling init_yaffs_fs+0x0/0xe8 @ 1
-
[1.670000 < 0.005000 >] yaffs Jul 31 2011 23:51:28 Installing.
-
[1.675000 < 0.005000 >] initcall init_yaffs_fs+0x0/0xe8 returned 0 after 4784 usecs
-
[1.680000 < 0.005000 >] calling init_fat_fs+0x0/0x6c @ 1
-
[1.690000 < 0.010000 >] initcall init_fat_fs+0x0/0x6c returned 0 after 2838 usecs
-
[1.690000 < 0.000000 >] calling init_vfat_fs+0x0/0x1c @ 1
-
[1.695000 < 0.005000 >] initcall init_vfat_fs+0x0/0x1c returned 0 after 26 usecs
-
[1.700000 < 0.005000 >] calling init_nfs_fs+0x0/0x164 @ 1
-
[1.710000 < 0.010000 >] initcall init_nfs_fs+0x0/0x164 returned 0 after 5889 usecs
-
[1.710000 < 0.000000 >] calling init_nlm+0x0/0x34 @ 1
-
[1.715000 < 0.005000 >] initcall init_nlm+0x0/0x34 returned 0 after 25 usecs
-
[1.720000 < 0.005000 >] calling init_nls_cp437+0x0/0x1c @ 1
-
[1.725000 < 0.005000 >] initcall init_nls_cp437+0x0/0x1c returned 0 after 8 usecs
-
[1.730000 < 0.005000 >] calling init_nls_cp936+0x0/0x1c @ 1
-
[1.735000 < 0.005000 >] initcall init_nls_cp936+0x0/0x1c returned 0 after 6 usecs
-
[1.740000 < 0.005000 >] calling init_nls_iso8859_1+0x0/0x1c @ 1
-
[1.745000 < 0.005000 >] initcall init_nls_iso8859_1+0x0/0x1c returned 0 after 6 usecs
-
[1.750000 < 0.005000 >] calling init_nls_utf8+0x0/0x38 @ 1
-
[1.755000 < 0.005000 >] initcall init_nls_utf8+0x0/0x38 returned 0 after 15 usecs
-
[1.760000 < 0.005000 >] calling ipc_init+0x0/0x2c @ 1
-
[1.760000 < 0.000000 >] msgmni has been set to 116
-
[1.765000 < 0.005000 >] initcall ipc_init+0x0/0x2c returned 0 after 3722 usecs
-
[1.770000 < 0.005000 >] calling ipc_sysctl_init+0x0/0x20 @ 1
-
[1.775000 < 0.005000 >] initcall ipc_sysctl_init+0x0/0x20 returned 0 after 49 usecs
-
[1.780000 < 0.005000 >] calling crypto_wq_init+0x0/0x54 @ 1
-
[1.785000 < 0.005000 >] initcall crypto_wq_init+0x0/0x54 returned 0 after 553 usecs
-
[1.790000 < 0.005000 >] calling crypto_algapi_init+0x0/0x18 @ 1
-
[1.795000 < 0.005000 >] initcall crypto_algapi_init+0x0/0x18 returned 0 after 99 usecs
-
[1.800000 < 0.005000 >] calling skcipher_module_init+0x0/0x28 @ 1
-
[1.805000 < 0.005000 >] initcall skcipher_module_init+0x0/0x28 returned 0 after 5 usecs
-
[1.810000 < 0.005000 >] calling chainiv_module_init+0x0/0x1c @ 1
-
[1.815000 < 0.005000 >] initcall chainiv_module_init+0x0/0x1c returned 0 after 21 usecs
-
[1.820000 < 0.005000 >] calling eseqiv_module_init+0x0/0x1c @ 1
-
[1.825000 < 0.005000 >] initcall eseqiv_module_init+0x0/0x1c returned 0 after 18 usecs
-
[1.830000 < 0.005000 >] calling crypto_ecb_module_init+0x0/0x1c @ 1
-
[1.835000 < 0.005000 >] initcall crypto_ecb_module_init+0x0/0x1c returned 0 after 20 usecs
-
[1.840000 < 0.005000 >] calling aes_init+0x0/0x1c @ 1
-
[1.845000 < 0.005000 >] initcall aes_init+0x0/0x1c returned 0 after 1566 usecs
-
[1.850000 < 0.005000 >] calling arc4_init+0x0/0x1c @ 1
-
[1.855000 < 0.005000 >] initcall arc4_init+0x0/0x1c returned 0 after 1147 usecs
-
[1.860000 < 0.005000 >] calling krng_mod_init+0x0/0x1c @ 1
-
[1.865000 < 0.005000 >] alg: No test for stdrng (krng)
-
[1.865000 < 0.000000 >] initcall krng_mod_init+0x0/0x1c returned 0 after 4082 usecs
-
[1.870000 < 0.005000 >] calling proc_genhd_init+0x0/0x60 @ 1
-
[1.875000 < 0.005000 >] initcall proc_genhd_init+0x0/0x60 returned 0 after 120 usecs
-
[1.880000 < 0.005000 >] calling noop_init+0x0/0x20 @ 1
-
[1.885000 < 0.005000 >] io scheduler noop registered (default)
-
[1.890000 < 0.005000 >] initcall noop_init+0x0/0x20 returned 0 after 4582 usecs
-
[1.895000 < 0.005000 >] calling fb_console_init+0x0/0x190 @ 1
-
[1.900000 < 0.005000 >] initcall fb_console_init+0x0/0x190 returned 0 after 1010 usecs
-
[1.905000 < 0.005000 >] calling s3c2410fb_init+0x0/0x30 @ 1
-
[1.925000 < 0.020000 >] Console: switching to colour frame buffer device 30x20
-
[1.930000 < 0.005000 >] fb0: s3c2410fb frame buffer device
-
[1.935000 < 0.005000 >] initcall s3c2410fb_init+0x0/0x30 returned 0 after 25136 usecs
-
[1.940000 < 0.005000 >] calling dev_init+0x0/0x58 @ 1
-
[1.945000 < 0.005000 >] backlight initialized
-
[1.950000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000060
-
[1.955000 < 0.005000 >] initcall dev_init+0x0/0x58 returned 0 after 7737 usecs
-
[1.960000 < 0.005000 >] calling rand_initialize+0x0/0x34 @ 1
-
[1.965000 < 0.005000 >] initcall rand_initialize+0x0/0x34 returned 0 after 175 usecs
-
[1.970000 < 0.005000 >] calling tty_init+0x0/0x110 @ 1
-
[2.055000 < 0.085000 >] initcall tty_init+0x0/0x110 returned 0 after 77949 usecs
-
[2.055000 < 0.000000 >] calling pty_init+0x0/0x2c4 @ 1
-
[2.060000 < 0.005000 >] initcall pty_init+0x0/0x2c4 returned 0 after 1290 usecs
-
[2.065000 < 0.005000 >] calling dev_init+0x0/0xfc @ 1
-
[2.070000 < 0.005000 >] s3c2410_gpio_cfgpin ioremap == 0xc4810010
-
[2.075000 < 0.005000 >] dev_init
-
[2.075000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000010
-
[2.080000 < 0.005000 >] dev_init
-
[2.085000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000010
-
[2.090000 < 0.005000 >] dev_init
-
[2.090000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000010
-
[2.095000 < 0.005000 >] dev_init
-
[2.095000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000010
-
[2.100000 < 0.005000 >] leds initialized
-
[2.105000 < 0.005000 >] initcall dev_init+0x0/0xfc returned 0 after 34345 usecs
-
[2.110000 < 0.005000 >] calling dev_init+0x0/0x30 @ 1
-
[2.115000 < 0.005000 >] buttons initialized
-
[2.115000 < 0.000000 >] initcall dev_init+0x0/0x30 returned 0 after 2993 usecs
-
[2.120000 < 0.005000 >] calling dev_init+0x0/0x4c @ 1
-
[2.125000 < 0.005000 >] pwm initialized
-
[2.125000 < 0.000000 >] initcall dev_init+0x0/0x4c returned 0 after 2666 usecs
-
[2.130000 < 0.005000 >] calling dev_init+0x0/0xe0 @ 1
-
[2.135000 < 0.005000 >] adc initialized
-
[2.140000 < 0.005000 >] initcall dev_init+0x0/0xe0 returned 0 after 2766 usecs
-
[2.145000 < 0.005000 >] calling s3c24xx_serial_modinit+0x0/0x38 @ 1
-
[2.150000 < 0.005000 >] initcall s3c24xx_serial_modinit+0x0/0x38 returned 0 after 102 usecs
-
[2.155000 < 0.005000 >] calling s3c2440_serial_init+0x0/0x20 @ 1
-
[2.160000 < 0.005000 >] s3c2440-uart.0: s3c2410_serial0 at MMIO 0x50000000 (irq = 70) is a S3C2440
-
[2.165000 < 0.005000 >] s3c2440-uart.1: s3c2410_serial1 at MMIO 0x50004000 (irq = 73) is a S3C2440
-
[2.175000 < 0.010000 >] s3c2440-uart.2: s3c2410_serial2 at MMIO 0x50008000 (irq = 76) is a S3C2440
-
[2.180000 < 0.005000 >] initcall s3c2440_serial_init+0x0/0x20 returned 0 after 20062 usecs
-
[2.185000 < 0.005000 >] calling loop_init+0x0/0x1d4 @ 1
-
[2.210000 < 0.025000 >] loop: module loaded
-
[2.210000 < 0.000000 >] initcall loop_init+0x0/0x1d4 returned 0 after 19520 usecs
-
[2.215000 < 0.005000 >] calling init_sd+0x0/0x130 @ 1
-
[2.220000 < 0.005000 >] initcall init_sd+0x0/0x130 returned 0 after 1949 usecs
-
[2.225000 < 0.005000 >] calling init_sg+0x0/0xc4 @ 1
-
[2.230000 < 0.005000 >] initcall init_sg+0x0/0xc4 returned 0 after 849 usecs
-
[2.235000 < 0.005000 >] calling init_mtd+0x0/0x70 @ 1
-
[2.240000 < 0.005000 >] initcall init_mtd+0x0/0x70 returned 0 after 925 usecs
-
[2.245000 < 0.005000 >] calling init_mtdchar+0x0/0x5c @ 1
-
[2.250000 < 0.005000 >] initcall init_mtdchar+0x0/0x5c returned 0 after 44 usecs
-
[2.255000 < 0.005000 >] calling init_mtdblock+0x0/0x34 @ 1
-
[2.260000 < 0.005000 >] initcall init_mtdblock+0x0/0x34 returned 0 after 412 usecs
-
[2.265000 < 0.005000 >] calling nand_base_init+0x0/0x14 @ 1
-
[2.270000 < 0.005000 >] initcall nand_base_init+0x0/0x14 returned 0 after 5 usecs
-
[2.275000 < 0.005000 >] calling s3c2410_nand_init+0x0/0x28 @ 1
-
[2.280000 < 0.005000 >] S3C24XX NAND Driver, (c) 2004 Simtec Electronics
-
[2.290000 < 0.010000 >] s3c24xx-nand s3c2440-nand: Tacls=3, 29ns Twrph0=7 69ns, Twrph1=3 29ns
-
[2.295000 < 0.005000 >] s3c24xx-nand s3c2440-nand: NAND soft ECC
-
[2.300000 < 0.005000 >] NAND device: Manufacturer ID: 0xec, Chip ID: 0xf1 (Samsung NAND 128MiB 3,3V 8-bit)
-
[2.305000 < 0.005000 >] Scanning device for bad blocks
-
[2.335000 < 0.030000 >] Creating 5 MTD partitions on "NAND 128MiB 3,3V 8-bit":
-
[2.335000 < 0.000000 >] 0x000000000000-0x000000040000 : "supervivi"
-
[2.345000 < 0.010000 >] 0x000000040000-0x000000060000 : "param"
-
[2.350000 < 0.005000 >] 0x000000060000-0x000000560000 : "Kernel"
-
[2.355000 < 0.005000 >] 0x000000560000-0x000040560000 : "root"
-
[2.355000 < 0.000000 >] mtd: partition "root" extends beyond the end of device "NAND 128MiB 3,3V 8-bit" -- size truncated to 0x7aa0000
-
[2.365000 < 0.010000 >] 0x000000000000-0x000040000000 : "nand"
-
[2.365000 < 0.000000 >] mtd: partition "nand" extends beyond the end of device "NAND 128MiB 3,3V 8-bit" -- size truncated to 0x8000000
-
[2.375000 < 0.010000 >] initcall s3c2410_nand_init+0x0/0x28 returned 0 after 93193 usecs
-
[2.380000 < 0.005000 >] calling net_olddevs_init+0x0/0xcc @ 1
-
[2.385000 < 0.005000 >] initcall net_olddevs_init+0x0/0xcc returned 0 after 49 usecs
-
[2.390000 < 0.005000 >] calling dm9000_init+0x0/0x60 @ 1
-
[2.395000 < 0.005000 >] dm9000 Ethernet Driver, V1.31
-
[2.400000 < 0.005000 >] eth0: dm9000e at c4818300,c481c304 IRQ 51 MAC: 08:90:90:90:90:90 (chip)
-
[2.405000 < 0.005000 >] initcall dm9000_init+0x0/0x60 returned 0 after 12150 usecs
-
[2.415000 < 0.010000 >] calling at76_mod_init+0x0/0x6c @ 1
-
[2.415000 < 0.000000 >] Atmel at76x USB Wireless LAN Driver 0.17 loading
-
[2.425000 < 0.010000 >] usbcore: registered new interface driver at76c50x-usb
-
[2.430000 < 0.005000 >] initcall at76_mod_init+0x0/0x6c returned 0 after 11460 usecs
-
[2.435000 < 0.005000 >] calling usb_init+0x0/0xac @ 1
-
[2.440000 < 0.005000 >] usbcore: registered new interface driver zd1211rw
-
[2.445000 < 0.005000 >] initcall usb_init+0x0/0xac returned 0 after 5705 usecs
-
[2.450000 < 0.005000 >] calling rtl8187_init+0x0/0x28 @ 1
-
[2.455000 < 0.005000 >] usbcore: registered new interface driver rtl8187
-
[2.460000 < 0.005000 >] initcall rtl8187_init+0x0/0x28 returned 0 after 5605 usecs
-
[2.465000 < 0.005000 >] calling zd1201_init+0x0/0x28 @ 1
-
[2.470000 < 0.005000 >] usbcore: registered new interface driver zd1201
-
[2.475000 < 0.005000 >] initcall zd1201_init+0x0/0x28 returned 0 after 5530 usecs
-
[2.480000 < 0.005000 >] calling rt2500usb_init+0x0/0x28 @ 1
-
[2.485000 < 0.005000 >] usbcore: registered new interface driver rt2500usb
-
[2.490000 < 0.005000 >] initcall rt2500usb_init+0x0/0x28 returned 0 after 5781 usecs
-
[2.495000 < 0.005000 >] calling rt73usb_init+0x0/0x28 @ 1
-
[2.500000 < 0.005000 >] usbcore: registered new interface driver rt73usb
-
[2.505000 < 0.005000 >] initcall rt73usb_init+0x0/0x28 returned 0 after 5621 usecs
-
[2.510000 < 0.005000 >] calling rt2800usb_init+0x0/0x28 @ 1
-
[2.515000 < 0.005000 >] usbcore: registered new interface driver rt2800usb
-
[2.520000 < 0.005000 >] initcall rt2800usb_init+0x0/0x28 returned 0 after 5820 usecs
-
[2.525000 < 0.005000 >] calling ar9170_init+0x0/0x28 @ 1
-
[2.530000 < 0.005000 >] usbcore: registered new interface driver ar9170usb
-
[2.535000 < 0.005000 >] initcall ar9170_init+0x0/0x28 returned 0 after 5787 usecs
-
[2.540000 < 0.005000 >] calling ohci_hcd_mod_init+0x0/0x88 @ 1
-
[2.545000 < 0.005000 >] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
-
[2.550000 < 0.005000 >] s3c2410-ohci s3c2410-ohci: S3C24XX OHCI
-
[2.555000 < 0.005000 >] s3c2410-ohci s3c2410-ohci: new USB bus registered, assigned bus number 1
-
[2.565000 < 0.010000 >] s3c2410-ohci s3c2410-ohci: irq 42, io mem 0x49000000
-
[2.625000 < 0.060000 >] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
-
[2.630000 < 0.005000 >] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
-
[2.635000 < 0.005000 >] usb usb1: Product: S3C24XX OHCI
-
[2.640000 < 0.005000 >] usb usb1: Manufacturer: Linux 2.6.32.2-FriendlyARM ohci_hcd
-
[2.645000 < 0.005000 >] usb usb1: SerialNumber: s3c24xx
-
[2.650000 < 0.005000 >] usb usb1: configuration #1 chosen from 1 choice
-
[2.655000 < 0.005000 >] hub 1-0:1.0: USB hub found
-
[2.660000 < 0.005000 >] hub 1-0:1.0: 2 ports detected
-
[2.665000 < 0.005000 >] initcall ohci_hcd_mod_init+0x0/0x88 returned 0 after 117482 usecs
-
[2.670000 < 0.005000 >] calling usb_stor_init+0x0/0x50 @ 1
-
[2.675000 < 0.005000 >] Initializing USB Mass Storage driver...
-
[2.680000 < 0.005000 >] usbcore: registered new interface driver usb-storage
-
[2.685000 < 0.005000 >] USB Mass Storage support registered.
-
[2.690000 < 0.005000 >] initcall usb_stor_init+0x0/0x50 returned 0 after 14834 usecs
-
[2.695000 < 0.005000 >] calling alauda_init+0x0/0x28 @ 1
-
[2.700000 < 0.005000 >] usbcore: registered new interface driver ums-alauda
-
[2.705000 < 0.005000 >] initcall alauda_init+0x0/0x28 returned 0 after 5864 usecs
-
[2.710000 < 0.005000 >] calling cypress_init+0x0/0x28 @ 1
-
[2.720000 < 0.010000 >] usbcore: registered new interface driver ums-cypress
-
[2.725000 < 0.005000 >] initcall cypress_init+0x0/0x28 returned 0 after 5886 usecs
-
[2.730000 < 0.005000 >] calling datafab_init+0x0/0x28 @ 1
-
[2.735000 < 0.005000 >] usbcore: registered new interface driver ums-datafab
-
[2.740000 < 0.005000 >] initcall datafab_init+0x0/0x28 returned 0 after 5940 usecs
-
[2.745000 < 0.005000 >] calling freecom_init+0x0/0x28 @ 1
-
[2.750000 < 0.005000 >] usbcore: registered new interface driver ums-freecom
-
[2.755000 < 0.005000 >] initcall freecom_init+0x0/0x28 returned 0 after 5946 usecs
-
[2.760000 < 0.005000 >] calling isd200_init+0x0/0x28 @ 1
-
[2.770000 < 0.010000 >] usbcore: registered new interface driver ums-isd200
-
[2.770000 < 0.000000 >] initcall isd200_init+0x0/0x28 returned 0 after 5686 usecs
-
[2.775000 < 0.005000 >] calling jumpshot_init+0x0/0x28 @ 1
-
[2.780000 < 0.005000 >] usbcore: registered new interface driver ums-jumpshot
-
[2.785000 < 0.005000 >] initcall jumpshot_init+0x0/0x28 returned 0 after 6031 usecs
-
[2.790000 < 0.005000 >] calling karma_init+0x0/0x28 @ 1
-
[2.795000 < 0.005000 >] usbcore: registered new interface driver ums-karma
-
[2.800000 < 0.005000 >] initcall karma_init+0x0/0x28 returned 0 after 5785 usecs
-
[2.805000 < 0.005000 >] calling onetouch_init+0x0/0x28 @ 1
-
[2.810000 < 0.005000 >] usbcore: registered new interface driver ums-onetouch
-
[2.815000 < 0.005000 >] initcall onetouch_init+0x0/0x28 returned 0 after 6041 usecs
-
[2.820000 < 0.005000 >] calling sddr09_init+0x0/0x28 @ 1
-
[2.825000 < 0.005000 >] usbcore: registered new interface driver ums-sddr09
-
[2.830000 < 0.005000 >] initcall sddr09_init+0x0/0x28 returned 0 after 5873 usecs
-
[2.835000 < 0.005000 >] calling sddr55_init+0x0/0x28 @ 1
-
[2.840000 < 0.005000 >] usbcore: registered new interface driver ums-sddr55
-
[2.845000 < 0.005000 >] initcall sddr55_init+0x0/0x28 returned 0 after 5871 usecs
-
[2.850000 < 0.005000 >] calling usbat_init+0x0/0x28 @ 1
-
[2.855000 < 0.005000 >] usbcore: registered new interface driver ums-usbat
-
[2.860000 < 0.005000 >] initcall usbat_init+0x0/0x28 returned 0 after 5786 usecs
-
[2.870000 < 0.010000 >] calling usb_serial_init+0x0/0x1f8 @ 1
-
[2.875000 < 0.005000 >] usbcore: registered new interface driver usbserial
-
[2.880000 < 0.005000 >] USB Serial support registered for generic
-
[3.000000 < 0.120000 >] usb 1-1: new full speed USB device using s3c2410-ohci and address 2
-
[3.155000 < 0.155000 >] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
-
[3.155000 < 0.000000 >] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
-
[3.160000 < 0.005000 >] usb 1-1: Product: Generic USB Hub
-
[3.165000 < 0.005000 >] usb 1-1: Manufacturer: ALCOR
-
[3.170000 < 0.005000 >] usb 1-1: configuration #1 chosen from 1 choice
-
[3.175000 < 0.005000 >] hub 1-1:1.0: USB hub found
-
[3.180000 < 0.005000 >] hub 1-1:1.0: 4 ports detected
-
[3.195000 < 0.015000 >] usbcore: registered new interface driver usbserial_generic
-
[3.195000 < 0.000000 >] usbserial: USB Serial Driver core
-
[3.200000 < 0.005000 >] initcall usb_serial_init+0x0/0x1f8 returned 0 after 320761 usecs
-
[3.205000 < 0.005000 >] calling aircable_init+0x0/0x54 @ 1
-
[3.215000 < 0.010000 >] USB Serial support registered for aircable
-
[3.220000 < 0.005000 >] usbcore: registered new interface driver aircable
-
[3.225000 < 0.005000 >] initcall aircable_init+0x0/0x54 returned 0 after 10524 usecs
-
[3.230000 < 0.005000 >] calling ark3116_init+0x0/0x54 @ 1
-
[3.235000 < 0.005000 >] USB Serial support registered for ark3116
-
[3.240000 < 0.005000 >] usbcore: registered new interface driver ark3116
-
[3.245000 < 0.005000 >] initcall ark3116_init+0x0/0x54 returned 0 after 10402 usecs
-
[3.250000 < 0.005000 >] calling belkin_sa_init+0x0/0x64 @ 1
-
[3.255000 < 0.005000 >] USB Serial support registered for Belkin / Peracom / GoHubs USB Serial Adapter
-
[3.260000 < 0.005000 >] usbcore: registered new interface driver belkin
-
[3.265000 < 0.005000 >] belkin_sa: v1.2:USB Belkin Serial converter driver
-
[3.270000 < 0.005000 >] initcall belkin_sa_init+0x0/0x64 returned 0 after 13993 usecs
-
[3.275000 < 0.005000 >] calling ch341_init+0x0/0x54 @ 1
-
[3.280000 < 0.005000 >] USB Serial support registered for ch341-uart
-
[3.285000 < 0.005000 >] usbcore: registered new interface driver ch341
-
[3.290000 < 0.005000 >] initcall ch341_init+0x0/0x54 returned 0 after 10493 usecs
-
[3.295000 < 0.005000 >] calling cp210x_init+0x0/0x64 @ 1
-
[3.300000 < 0.005000 >] USB Serial support registered for cp210x
-
[3.310000 < 0.010000 >] usbcore: registered new interface driver cp210x
-
[3.310000 < 0.000000 >] cp210x: v0.09:Silicon Labs CP210x RS232 serial adaptor driver
-
[3.315000 < 0.005000 >] initcall cp210x_init+0x0/0x64 returned 0 after 11784 usecs
-
[3.320000 < 0.005000 >] calling cyberjack_init+0x0/0x70 @ 1
-
[3.325000 < 0.005000 >] USB Serial support registered for Reiner SCT Cyberjack USB card reader
-
[3.335000 < 0.010000 >] usbcore: registered new interface driver cyberjack
-
[3.335000 < 0.000000 >] cyberjack: v1.01 Matthias Bruestle
-
[3.340000 < 0.005000 >] cyberjack: REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver
-
[3.345000 < 0.005000 >] initcall cyberjack_init+0x0/0x70 returned 0 after 19481 usecs
-
[3.350000 < 0.005000 >] calling cypress_init+0x0/0xd0 @ 1
-
[3.355000 < 0.005000 >] USB Serial support registered for DeLorme Earthmate USB
-
[3.360000 < 0.005000 >] USB Serial support registered for HID->COM RS232 Adapter
-
[3.365000 < 0.005000 >] USB Serial support registered for Nokia CA-42 V2 Adapter
-
[3.370000 < 0.005000 >] usbcore: registered new interface driver cypress
-
[3.375000 < 0.005000 >] cypress_m8: v1.09:Cypress USB to Serial Driver
-
[3.380000 < 0.005000 >] initcall cypress_init+0x0/0xd0 returned 0 after 23967 usecs
-
[3.385000 < 0.005000 >] calling digi_init+0x0/0x80 @ 1
-
[3.390000 < 0.005000 >] USB Serial support registered for Digi 2 port USB adapter
-
[3.400000 < 0.010000 >] USB Serial support registered for Digi 4 port USB adapter
-
[3.405000 < 0.005000 >] usbcore: registered new interface driver digi_acceleport
-
[3.410000 < 0.005000 >] digi_acceleport: v1.80.1.2:Digi AccelePort USB-2/USB-4 Serial Converter driver
-
[3.415000 < 0.005000 >] initcall digi_init+0x0/0x80 returned 0 after 26354 usecs
-
[3.420000 < 0.005000 >] calling edgeport_init+0x0/0xc4 @ 1
-
[3.425000 < 0.005000 >] USB Serial support registered for Edgeport 2 port adapter
-
[3.430000 < 0.005000 >] USB Serial support registered for Edgeport 4 port adapter
-
[3.435000 < 0.005000 >] USB Serial support registered for Edgeport 8 port adapter
-
[3.445000 < 0.010000 >] USB Serial support registered for EPiC device
-
[3.450000 < 0.005000 >] usbcore: registered new interface driver io_edgeport
-
[3.455000 < 0.005000 >] io_edgeport: v2.7:Edgeport USB Serial Driver
-
[3.460000 < 0.005000 >] initcall edgeport_init+0x0/0xc4 returned 0 after 34524 usecs
-
[3.465000 < 0.005000 >] calling edgeport_init+0x0/0x80 @ 1
-
[3.470000 < 0.005000 >] USB Serial support registered for Edgeport TI 1 port adapter
-
[3.475000 < 0.005000 >] USB Serial support registered for Edgeport TI 2 port adapter
-
[3.485000 < 0.010000 >] usbcore: registered new interface driver io_ti
-
[3.490000 < 0.005000 >] io_ti: v0.7mode043006:Edgeport USB Serial Driver
-
[3.495000 < 0.005000 >] initcall edgeport_init+0x0/0x80 returned 0 after 23528 usecs
-
[3.500000 < 0.005000 >] calling empeg_init+0x0/0x10c @ 1
-
[3.505000 < 0.005000 >] USB Serial support registered for empeg
-
[3.510000 < 0.005000 >] usbcore: registered new interface driver empeg
-
[3.515000 < 0.005000 >] empeg: v1.2:USB Empeg Mark I/II Driver
-
[3.520000 < 0.005000 >] initcall empeg_init+0x0/0x10c returned 0 after 14566 usecs
-
[3.525000 < 0.005000 >] calling ftdi_init+0x0/0x104 @ 1
-
[3.530000 < 0.005000 >] USB Serial support registered for FTDI USB Serial Device
-
[3.535000 < 0.005000 >] usbcore: registered new interface driver ftdi_sio
-
[3.540000 < 0.005000 >] ftdi_sio: v1.5.0:USB FTDI Serial Converters Driver
-
[3.545000 < 0.005000 >] initcall ftdi_init+0x0/0x104 returned 0 after 17172 usecs
-
[3.550000 < 0.005000 >] calling funsoft_init+0x0/0x54 @ 1
-
[3.555000 < 0.005000 >] USB Serial support registered for funsoft
-
[3.560000 < 0.005000 >] usbcore: registered new interface driver funsoft
-
[3.565000 < 0.005000 >] initcall funsoft_init+0x0/0x54 returned 0 after 10406 usecs
-
[3.570000 < 0.005000 >] calling garmin_init+0x0/0x64 @ 1
-
[3.575000 < 0.005000 >] USB Serial support registered for Garmin GPS usb/tty
-
[3.580000 < 0.005000 >] usbcore: registered new interface driver garmin_gps
-
[3.585000 < 0.005000 >] garmin_gps: v0.33:garmin gps driver
-
[3.590000 < 0.005000 >] initcall garmin_init+0x0/0x64 returned 0 after 15779 usecs
-
[3.595000 < 0.005000 >] calling hp49gp_init+0x0/0x64 @ 1
-
[3.600000 < 0.005000 >] USB Serial support registered for hp4X
-
[3.605000 < 0.005000 >] usbcore: registered new interface driver hp4X
-
[3.610000 < 0.005000 >] hp4x: v1.00:HP4x (48/49) Generic Serial driver
-
[3.615000 < 0.005000 >] initcall hp49gp_init+0x0/0x64 returned 0 after 15029 usecs
-
[3.620000 < 0.005000 >] calling ipaq_init+0x0/0x84 @ 1
-
[3.625000 < 0.005000 >] USB Serial support registered for PocketPC PDA
-
[3.630000 < 0.005000 >] usbcore: registered new interface driver ipaq
-
[3.630000 < 0.000000 >] ipaq: v0.5:USB PocketPC PDA driver
-
[3.635000 < 0.005000 >] initcall ipaq_init+0x0/0x84 returned 0 after 14803 usecs
-
[3.640000 < 0.005000 >] calling usb_ipw_init+0x0/0x64 @ 1
-
[3.645000 < 0.005000 >] USB Serial support registered for IPWireless converter
-
[3.650000 < 0.005000 >] usbcore: registered new interface driver ipwtty
-
[3.655000 < 0.005000 >] ipw: v0.3:IPWireless tty driver
-
[3.660000 < 0.005000 >] initcall usb_ipw_init+0x0/0x64 returned 0 after 15286 usecs
-
[3.665000 < 0.005000 >] calling ir_init+0x0/0x64 @ 1
-
[3.670000 < 0.005000 >] USB Serial support registered for IR Dongle
-
[3.675000 < 0.005000 >] usbcore: registered new interface driver ir-usb
-
[3.680000 < 0.005000 >] ir_usb: v0.4:USB IR Dongle driver
-
[3.685000 < 0.005000 >] initcall ir_init+0x0/0x64 returned 0 after 14525 usecs
-
[3.690000 < 0.005000 >] calling iuu_init+0x0/0x64 @ 1
-
[3.695000 < 0.005000 >] USB Serial support registered for iuu_phoenix
-
[3.700000 < 0.005000 >] usbcore: registered new interface driver iuu_phoenix
-
[3.705000 < 0.005000 >] iuu_phoenix: v0.11:Infinity USB Unlimited Phoenix driver
-
[3.710000 < 0.005000 >] initcall iuu_init+0x0/0x64 returned 0 after 17027 usecs
-
[3.715000 < 0.005000 >] calling keyspan_init+0x0/0xb8 @ 1
-
[3.720000 < 0.005000 >] USB Serial support registered for Keyspan - (without firmware)
-
[3.725000 < 0.005000 >] USB Serial support registered for Keyspan 1 port adapter
-
[3.730000 < 0.005000 >] USB Serial support registered for Keyspan 2 port adapter
-
[3.735000 < 0.005000 >] USB Serial support registered for Keyspan 4 port adapter
-
[3.745000 < 0.010000 >] usbcore: registered new interface driver keyspan
-
[3.745000 < 0.000000 >] keyspan: v1.1.5:Keyspan USB to Serial Converter Driver
-
[3.750000 < 0.005000 >] initcall keyspan_init+0x0/0xb8 returned 0 after 26439 usecs
-
[3.755000 < 0.005000 >] calling keyspan_pda_init+0x0/0x9c @ 1
-
[3.760000 < 0.005000 >] USB Serial support registered for Keyspan PDA
-
[3.765000 < 0.005000 >] USB Serial support registered for Keyspan PDA - (prerenumeration)
-
[3.775000 < 0.010000 >] USB Serial support registered for Xircom / Entregra PGS - (prerenumeration)
-
[3.780000 < 0.005000 >] usbcore: registered new interface driver keyspan_pda
-
[3.785000 < 0.005000 >] keyspan_pda: v1.1:USB Keyspan PDA Converter driver
-
[3.790000 < 0.005000 >] initcall keyspan_pda_init+0x0/0x9c returned 0 after 31017 usecs
-
[3.795000 < 0.005000 >] calling klsi_105_init+0x0/0x64 @ 1
-
[3.800000 < 0.005000 >] USB Serial support registered for KL5KUSB105D / PalmConnect
-
[3.805000 < 0.005000 >] usbcore: registered new interface driver kl5kusb105d
-
[3.810000 < 0.005000 >] kl5kusb105: v0.3a:KLSI KL5KUSB105 chipset USB->Serial Converter driver
-
[3.815000 < 0.005000 >] initcall klsi_105_init+0x0/0x64 returned 0 after 19370 usecs
-
[3.820000 < 0.005000 >] calling kobil_init+0x0/0x64 @ 1
-
[3.825000 < 0.005000 >] USB Serial support registered for KOBIL USB smart card terminal
-
[3.830000 < 0.005000 >] usbcore: registered new interface driver kobil
-
[3.835000 < 0.005000 >] kobil_sct: 21/05/2004:KOBIL USB Smart Card Terminal Driver (experimental)
-
[3.840000 < 0.005000 >] initcall kobil_init+0x0/0x64 returned 0 after 14563 usecs
-
[3.845000 < 0.005000 >] calling mct_u232_init+0x0/0x64 @ 1
-
[3.850000 < 0.005000 >] USB Serial support registered for MCT U232
-
[3.855000 < 0.005000 >] usbcore: registered new interface driver mct_u232
-
[3.860000 < 0.005000 >] mct_u232: z2.1:Magic Control Technology USB-RS232 converter driver
-
[3.865000 < 0.005000 >] initcall mct_u232_init+0x0/0x64 returned 0 after 17362 usecs
-
[3.870000 < 0.005000 >] calling moschip7720_init+0x0/0x94 @ 1
-
[3.875000 < 0.005000 >] USB Serial support registered for Moschip 2 port adapter
-
[3.880000 < 0.005000 >] mos7720: 1.0.0.4F:Moschip USB Serial Driver
-
[3.885000 < 0.005000 >] usbcore: registered new interface driver moschip7720
-
[3.890000 < 0.005000 >] initcall moschip7720_init+0x0/0x94 returned 0 after 16984 usecs
-
[3.895000 < 0.005000 >] calling moschip7840_init+0x0/0xdc @ 1
-
[3.900000 < 0.005000 >] USB Serial support registered for Moschip 7840/7820 USB Serial Driver
-
[3.905000 < 0.005000 >] mos7840: 1.3.2:Moschip 7840/7820 USB Serial Driver
-
[3.910000 < 0.005000 >] usbcore: registered new interface driver mos7840
-
[3.915000 < 0.005000 >] initcall moschip7840_init+0x0/0xdc returned 0 after 13438 usecs
-
[3.920000 < 0.005000 >] calling moto_init+0x0/0x54 @ 1
-
[3.925000 < 0.005000 >] USB Serial support registered for moto-modem
-
[3.930000 < 0.005000 >] usbcore: registered new interface driver moto-modem
-
[3.935000 < 0.005000 >] initcall moto_init+0x0/0x54 returned 0 after 10844 usecs
-
[3.940000 < 0.005000 >] calling navman_init+0x0/0x54 @ 1
-
[3.945000 < 0.005000 >] USB Serial support registered for navman
-
[3.950000 < 0.005000 >] usbcore: registered new interface driver navman
-
[3.955000 < 0.005000 >] initcall navman_init+0x0/0x54 returned 0 after 10248 usecs
-
[3.960000 < 0.005000 >] calling omninet_init+0x0/0x64 @ 1
-
[3.965000 < 0.005000 >] USB Serial support registered for ZyXEL - omni.net lcd plus usb
-
[3.970000 < 0.005000 >] usbcore: registered new interface driver omninet
-
[3.975000 < 0.005000 >] omninet: v1.1:USB ZyXEL omni.net LCD PLUS Driver
-
[3.980000 < 0.005000 >] initcall omninet_init+0x0/0x64 returned 0 after 17527 usecs
-
[3.985000 < 0.005000 >] calling opticon_init+0x0/0x54 @ 1
-
[3.990000 < 0.005000 >] USB Serial support registered for opticon
-
[3.995000 < 0.005000 >] usbcore: registered new interface driver opticon
-
[4.000000 < 0.005000 >] initcall opticon_init+0x0/0x54 returned 0 after 10424 usecs
-
[4.005000 < 0.005000 >] calling option_init+0x0/0x64 @ 1
-
[4.010000 < 0.005000 >] USB Serial support registered for GSM modem (1-port)
-
[4.015000 < 0.005000 >] usbcore: registered new interface driver option
-
[4.020000 < 0.005000 >] option: v0.7.2:USB Driver for GSM modems
-
[4.025000 < 0.005000 >] initcall option_init+0x0/0x64 returned 0 after 15858 usecs
-
[4.030000 < 0.005000 >] calling oti6858_init+0x0/0x54 @ 1
-
[4.035000 < 0.005000 >] USB Serial support registered for oti6858
-
[4.040000 < 0.005000 >] usbcore: registered new interface driver oti6858
-
[4.045000 < 0.005000 >] initcall oti6858_init+0x0/0x54 returned 0 after 10408 usecs
-
[4.050000 < 0.005000 >] calling pl2303_init+0x0/0x64 @ 1
-
[4.060000 < 0.010000 >] USB Serial support registered for pl2303
-
[4.065000 < 0.005000 >] usbcore: registered new interface driver pl2303
-
[4.065000 < 0.000000 >] pl2303: Prolific PL2303 USB to serial adaptor driver
-
[4.070000 < 0.005000 >] initcall pl2303_init+0x0/0x64 returned 0 after 11079 usecs
-
[4.075000 < 0.005000 >] calling qcinit+0x0/0x54 @ 1
-
[4.080000 < 0.005000 >] USB Serial support registered for Qualcomm USB modem
-
[4.085000 < 0.005000 >] usbcore: registered new interface driver qcserial
-
[4.090000 < 0.005000 >] initcall qcinit+0x0/0x54 returned 0 after 11453 usecs
-
[4.095000 < 0.005000 >] calling safe_init+0x0/0xfc @ 1
-
[4.100000 < 0.005000 >] safe_serial: v0.0b:USB Safe Encapsulated Serial
-
[4.105000 < 0.005000 >] USB Serial support registered for safe_serial
-
[4.110000 < 0.005000 >] usbcore: registered new interface driver safe_serial
-
[4.115000 < 0.005000 >] initcall safe_init+0x0/0xfc returned 0 after 16409 usecs
-
[4.120000 < 0.005000 >] calling siemens_usb_mpi_init+0x0/0x70 @ 1
-
[4.125000 < 0.005000 >] USB Serial support registered for siemens_mpi
-
[4.130000 < 0.005000 >] usbcore: registered new interface driver siemens_mpi
-
[4.135000 < 0.005000 >] Driver for Siemens USB/MPI adapter
-
[4.140000 < 0.005000 >] Version 0.1 09/26/2005 Thomas Hergenhahn@web.de
-
[4.145000 < 0.005000 >] initcall siemens_usb_mpi_init+0x0/0x70 returned 0 after 22438 usecs
-
[4.150000 < 0.005000 >] calling sierra_init+0x0/0x64 @ 1
-
[4.155000 < 0.005000 >] USB Serial support registered for Sierra USB modem
-
[4.160000 < 0.005000 >] usbcore: registered new interface driver sierra
-
[4.165000 < 0.005000 >] sierra: v.1.3.8:USB Driver for Sierra Wireless USB modems
-
[4.170000 < 0.005000 >] initcall sierra_init+0x0/0x64 returned 0 after 17123 usecs
-
[4.175000 < 0.005000 >] calling spcp8x5_init+0x0/0x64 @ 1
-
[4.180000 < 0.005000 >] USB Serial support registered for SPCP8x5
-
[4.185000 < 0.005000 >] usbcore: registered new interface driver spcp8x5
-
[4.190000 < 0.005000 >] spcp8x5: v0.04:SPCP8x5 USB to serial adaptor driver
-
[4.195000 < 0.005000 >] initcall spcp8x5_init+0x0/0x64 returned 0 after 15945 usecs
-
[4.200000 < 0.005000 >] calling symbol_init+0x0/0x54 @ 1
-
[4.205000 < 0.005000 >] USB Serial support registered for symbol
-
[4.210000 < 0.005000 >] usbcore: registered new interface driver symbol
-
[4.215000 < 0.005000 >] initcall symbol_init+0x0/0x54 returned 0 after 10245 usecs
-
[4.220000 < 0.005000 >] calling ti_init+0x0/0x1b4 @ 1
-
[4.225000 < 0.005000 >] USB Serial support registered for TI USB 3410 1 port adapter
-
[4.230000 < 0.005000 >] USB Serial support registered for TI USB 5052 2 port adapter
-
[4.240000 < 0.010000 >] usbcore: registered new interface driver ti_usb_3410_5052
-
[4.245000 < 0.005000 >] ti_usb_3410_5052: v0.9:TI USB 3410/5052 Serial Driver
-
[4.250000 < 0.005000 >] initcall ti_init+0x0/0x1b4 returned 0 after 24833 usecs
-
[4.255000 < 0.005000 >] calling visor_init+0x0/0x200 @ 1
-
[4.260000 < 0.005000 >] USB Serial support registered for Handspring Visor / Palm OS
-
[4.265000 < 0.005000 >] USB Serial support registered for Sony Clie 3.5
-
[4.270000 < 0.005000 >] USB Serial support registered for Sony Clie 5.0
-
[4.280000 < 0.010000 >] usbcore: registered new interface driver visor
-
[4.280000 < 0.000000 >] visor: USB HandSpring Visor / Palm OS driver
-
[4.285000 < 0.005000 >] initcall visor_init+0x0/0x200 returned 0 after 27495 usecs
-
[4.290000 < 0.005000 >] calling whiteheat_init+0x0/0x80 @ 1
-
[4.295000 < 0.005000 >] USB Serial support registered for Connect Tech - WhiteHEAT - (prerenumeration)
-
[4.300000 < 0.005000 >] USB Serial support registered for Connect Tech - WhiteHEAT
-
[4.310000 < 0.010000 >] usbcore: registered new interface driver whiteheat
-
[4.315000 < 0.005000 >] whiteheat: v2.0:USB ConnectTech WhiteHEAT driver
-
[4.320000 < 0.005000 >] initcall whiteheat_init+0x0/0x80 returned 0 after 25210 usecs
-
[4.325000 < 0.005000 >] calling mousedev_init+0x0/0x6c @ 1
-
[4.330000 < 0.005000 >] mice: PS/2 mouse device common for all mice
-
[4.335000 < 0.005000 >] initcall mousedev_init+0x0/0x6c returned 0 after 5128 usecs
-
[4.340000 < 0.005000 >] calling evdev_init+0x0/0x1c @ 1
-
[4.345000 < 0.005000 >] initcall evdev_init+0x0/0x1c returned 0 after 10 usecs
-
[4.350000 < 0.005000 >] calling s3c2410ts_init+0x0/0x238 @ 1
-
[4.355000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000060
-
[4.360000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000060
-
[4.365000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000060
-
[4.370000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000060
-
[4.375000 < 0.005000 >] s3c2410 TouchScreen successfully loaded
-
[4.380000 < 0.005000 >] input: s3c2410 TouchScreen as /devices/virtual/input/input0
-
[4.390000 < 0.010000 >] initcall s3c2410ts_init+0x0/0x238 returned 0 after 30747 usecs
-
[4.395000 < 0.005000 >] calling s3c_rtc_init+0x0/0x28 @ 1
-
[4.395000 < 0.000000 >] S3C24XX RTC, (c) 2004,2006 Simtec Electronics
-
[4.400000 < 0.005000 >] s3c2410-rtc s3c2410-rtc: rtc disabled, re-enabling
-
[4.405000 < 0.005000 >] s3c2410-rtc s3c2410-rtc: rtc core: registered s3c as rtc0
-
[4.410000 < 0.005000 >] initcall s3c_rtc_init+0x0/0x28 returned 0 after 13022 usecs
-
[4.415000 < 0.005000 >] calling i2c_dev_init+0x0/0xc8 @ 1
-
[4.420000 < 0.005000 >] i2c /dev entries driver
-
[4.425000 < 0.005000 >] initcall i2c_dev_init+0x0/0xc8 returned 0 after 6209 usecs
-
[4.430000 < 0.005000 >] calling videodev_init+0x0/0x90 @ 1
-
[4.435000 < 0.005000 >] Linux video capture interface: v2.00
-
[4.440000 < 0.005000 >] initcall videodev_init+0x0/0x90 returned 0 after 5204 usecs
-
[4.445000 < 0.005000 >] calling gspca_init+0x0/0x2c @ 1
-
[4.450000 < 0.005000 >] gspca: main v2.7.0 registered
-
[4.455000 < 0.005000 >] initcall gspca_init+0x0/0x2c returned 0 after 3772 usecs
-
[4.460000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.465000 < 0.005000 >] usbcore: registered new interface driver conex
-
[4.470000 < 0.005000 >] conex: registered
-
[4.475000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8129 usecs
-
[4.480000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.485000 < 0.005000 >] usbcore: registered new interface driver etoms
-
[4.490000 < 0.005000 >] etoms: registered
-
[4.490000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8066 usecs
-
[4.495000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.500000 < 0.005000 >] usbcore: registered new interface driver finepix
-
[4.505000 < 0.005000 >] finepix: registered
-
[4.505000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8419 usecs
-
[4.510000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.515000 < 0.005000 >] usbcore: registered new interface driver jeilinj
-
[4.520000 < 0.005000 >] jeilinj: registered
-
[4.525000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8488 usecs
-
[4.530000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.535000 < 0.005000 >] usbcore: registered new interface driver mars
-
[4.540000 < 0.005000 >] mars: registered
-
[4.545000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 7947 usecs
-
[4.550000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.555000 < 0.005000 >] usbcore: registered new interface driver mr97310a
-
[4.560000 < 0.005000 >] mr97310a: registered
-
[4.565000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8633 usecs
-
[4.570000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.575000 < 0.005000 >] usbcore: registered new interface driver ov519
-
[4.580000 < 0.005000 >] ov519: registered
-
[4.580000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8066 usecs
-
[4.585000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.590000 < 0.005000 >] usbcore: registered new interface driver ov534
-
[4.595000 < 0.005000 >] ov534: registered
-
[4.595000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8087 usecs
-
[4.600000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.605000 < 0.005000 >] usbcore: registered new interface driver pac207
-
[4.610000 < 0.005000 >] pac207: registered
-
[4.615000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8314 usecs
-
[4.620000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.625000 < 0.005000 >] usbcore: registered new interface driver pac7311
-
[4.630000 < 0.005000 >] pac7311: registered
-
[4.635000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8465 usecs
-
[4.640000 < 0.005000 >] calling sd_mod_init+0x0/0x40 @ 1
-
[4.645000 < 0.005000 >] usbcore: registered new interface driver sn9c20x
-
[4.650000 < 0.005000 >] sn9c20x: registered
-
[4.655000 < 0.005000 >] initcall sd_mod_init+0x0/0x40 returned 0 after 8468 usecs
-
[4.660000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.665000 < 0.005000 >] usbcore: registered new interface driver sonixb
-
[4.670000 < 0.005000 >] sonixb: registered
-
[4.670000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8230 usecs
-
[4.675000 < 0.005000 >] calling sd_mod_init+0x0/0x40 @ 1
-
[4.680000 < 0.005000 >] usbcore: registered new interface driver sonixj
-
[4.685000 < 0.005000 >] sonixj: registered
-
[4.685000 < 0.000000 >] initcall sd_mod_init+0x0/0x40 returned 0 after 8247 usecs
-
[4.690000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.695000 < 0.005000 >] usbcore: registered new interface driver spca500
-
[4.695000 < 0.000000 >] spca500: registered
-
[4.700000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8509 usecs
-
[4.705000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.710000 < 0.005000 >] usbcore: registered new interface driver spca501
-
[4.715000 < 0.005000 >] spca501: registered
-
[4.720000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8486 usecs
-
[4.725000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.730000 < 0.005000 >] usbcore: registered new interface driver spca505
-
[4.735000 < 0.005000 >] spca505: registered
-
[4.740000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8454 usecs
-
[4.745000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.750000 < 0.005000 >] usbcore: registered new interface driver spca506
-
[4.755000 < 0.005000 >] spca506: registered
-
[4.760000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8468 usecs
-
[4.765000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.770000 < 0.005000 >] usbcore: registered new interface driver spca508
-
[4.775000 < 0.005000 >] spca508: registered
-
[4.775000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8397 usecs
-
[4.780000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.785000 < 0.005000 >] usbcore: registered new interface driver spca561
-
[4.790000 < 0.005000 >] spca561: registered
-
[4.790000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8412 usecs
-
[4.795000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.800000 < 0.005000 >] usbcore: registered new interface driver sq905
-
[4.800000 < 0.000000 >] sq905: registered
-
[4.805000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8244 usecs
-
[4.810000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.815000 < 0.005000 >] usbcore: registered new interface driver sq905c
-
[4.820000 < 0.005000 >] sq905c: registered
-
[4.825000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8316 usecs
-
[4.830000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.835000 < 0.005000 >] usbcore: registered new interface driver sunplus
-
[4.840000 < 0.005000 >] sunplus: registered
-
[4.845000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8468 usecs
-
[4.850000 < 0.005000 >] calling sd_mod_init+0x0/0x40 @ 1
-
[4.855000 < 0.005000 >] usbcore: registered new interface driver stk014
-
[4.860000 < 0.005000 >] stk014: registered
-
[4.865000 < 0.005000 >] initcall sd_mod_init+0x0/0x40 returned 0 after 8302 usecs
-
[4.870000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.875000 < 0.005000 >] usbcore: registered new interface driver t613
-
[4.880000 < 0.005000 >] t613: registered
-
[4.880000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 7898 usecs
-
[4.885000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.890000 < 0.005000 >] usbcore: registered new interface driver tv8532
-
[4.890000 < 0.000000 >] tv8532: registered
-
[4.895000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8341 usecs
-
[4.900000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.905000 < 0.005000 >] usbcore: registered new interface driver vc032x
-
[4.910000 < 0.005000 >] vc032x: registered
-
[4.915000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8274 usecs
-
[4.920000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.925000 < 0.005000 >] usbcore: registered new interface driver zc3xx
-
[4.930000 < 0.005000 >] zc3xx: registered
-
[4.935000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8077 usecs
-
[4.940000 < 0.005000 >] calling mod_m5602_init+0x0/0x54 @ 1
-
[4.945000 < 0.005000 >] usbcore: registered new interface driver ALi m5602
-
[4.950000 < 0.005000 >] ALi m5602: registered
-
[4.955000 < 0.005000 >] initcall mod_m5602_init+0x0/0x54 returned 0 after 8798 usecs
-
[4.960000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
-
[4.965000 < 0.005000 >] usbcore: registered new interface driver STV06xx
-
[4.970000 < 0.005000 >] STV06xx: registered
-
[4.970000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8414 usecs
-
[4.975000 < 0.005000 >] calling sd_mod_init+0x0/0x7c @ 1
-
[4.980000 < 0.005000 >] gspca_gl860: driver startup - version 0.9d10
-
[4.985000 < 0.005000 >] usbcore: registered new interface driver gspca_gl860
-
[4.990000 < 0.005000 >] gspca_gl860: driver registered
-
[4.995000 < 0.005000 >] initcall sd_mod_init+0x0/0x7c returned 0 after 14815 usecs
-
[5.000000 < 0.005000 >] calling uvc_init+0x0/0x90 @ 1
-
[5.005000 < 0.005000 >] usbcore: registered new interface driver uvcvideo
-
[5.010000 < 0.005000 >] USB Video Class driver (v0.1.0)
-
[5.015000 < 0.005000 >] initcall uvc_init+0x0/0x90 returned 0 after 9538 usecs
-
[5.020000 < 0.005000 >] calling camif_init+0x0/0x288 @ 1
-
[5.025000 < 0.005000 >] initializing s3c2440 camera interface......
-
[5.030000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.035000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.040000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.045000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.045000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.050000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.055000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.060000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.065000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.070000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.075000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.080000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.085000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
-
[5.190000 < 0.105000 >] s3c2440 camif init done
-
[5.190000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.195000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.220000 < 0.025000 >] Loading OV9650 driver.........
-
[5.220000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000060
-
[5.340000 < 0.120000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.340000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.345000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.350000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.355000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.360000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.365000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.370000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.375000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.380000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.385000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.390000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.390000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.395000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.400000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.405000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.415000 < 0.010000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.415000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.420000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.425000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.430000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.435000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.440000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.445000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.450000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.455000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.460000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.465000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.465000 < 0.000000 >] SCCB address 0x60, manufacture ID 0xFFFF, expect 0x7FA2
-
[5.470000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.475000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.480000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.485000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.490000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.490000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.495000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.500000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.505000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.510000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.515000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.520000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.525000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.530000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.535000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.540000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.545000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.550000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.555000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.560000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.565000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.565000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.570000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.580000 < 0.010000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.580000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.585000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.590000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.595000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[5.600000 < 0.005000 >] SCCB address 0x60, manufacture ID 0xFFFF, expect 0x7FA2
-
[5.605000 < 0.005000 >] No OV9650 found!!!
-
[5.610000 < 0.005000 >] initcall camif_init+0x0/0x288 returned 0 after 571779 usecs
-
[5.615000 < 0.005000 >] calling watchdog_init+0x0/0x28 @ 1
-
[5.620000 < 0.005000 >] S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics
-
[5.630000 < 0.010000 >] s3c2410-wdt s3c2410-wdt: watchdog inactive, reset disabled, irq enabled
-
[5.635000 < 0.005000 >] initcall watchdog_init+0x0/0x28 returned 0 after 13891 usecs
-
[5.640000 < 0.005000 >] calling mmc_blk_init+0x0/0x50 @ 1
-
[5.645000 < 0.005000 >] initcall mmc_blk_init+0x0/0x50 returned 0 after 879 usecs
-
[5.650000 < 0.005000 >] calling s3cmci_init+0x0/0x1c @ 1
-
[5.655000 < 0.005000 >] s3c-sdi s3c2440-sdi: powered down.
-
[5.660000 < 0.005000 >] s3c-sdi s3c2440-sdi: mmc0 - using pio, sw SDIO IRQ
-
[5.665000 < 0.005000 >] initcall s3cmci_init+0x0/0x1c returned 0 after 10751 usecs
-
[5.670000 < 0.005000 >] calling hid_init+0x0/0x5c @ 1
-
[5.675000 < 0.005000 >] initcall hid_init+0x0/0x5c returned 0 after 936 usecs
-
[5.680000 < 0.005000 >] calling a4_init+0x0/0x28 @ 1
-
[5.685000 < 0.005000 >] initcall a4_init+0x0/0x28 returned 0 after 980 usecs
-
[5.690000 < 0.005000 >] calling apple_init+0x0/0x44 @ 1
-
[5.695000 < 0.005000 >] initcall apple_init+0x0/0x44 returned 0 after 1019 usecs
-
[5.700000 < 0.005000 >] calling belkin_init+0x0/0x28 @ 1
-
[5.705000 < 0.005000 >] initcall belkin_init+0x0/0x28 returned 0 after 978 usecs
-
[5.710000 < 0.005000 >] calling ch_init+0x0/0x28 @ 1
-
[5.715000 < 0.005000 >] initcall ch_init+0x0/0x28 returned 0 after 984 usecs
-
[5.720000 < 0.005000 >] calling ch_init+0x0/0x28 @ 1
-
[5.725000 < 0.005000 >] initcall ch_init+0x0/0x28 returned 0 after 1044 usecs
-
[5.730000 < 0.005000 >] calling cp_init+0x0/0x28 @ 1
-
[5.735000 < 0.005000 >] initcall cp_init+0x0/0x28 returned 0 after 985 usecs
-
[5.740000 < 0.005000 >] calling dr_init+0x0/0x28 @ 1
-
[5.745000 < 0.005000 >] initcall dr_init+0x0/0x28 returned 0 after 989 usecs
-
[5.750000 < 0.005000 >] calling ez_init+0x0/0x28 @ 1
-
[5.755000 < 0.005000 >] initcall ez_init+0x0/0x28 returned 0 after 1000 usecs
-
[5.760000 < 0.005000 >] calling gyration_init+0x0/0x28 @ 1
-
[5.765000 < 0.005000 >] initcall gyration_init+0x0/0x28 returned 0 after 1003 usecs
-
[5.770000 < 0.005000 >] calling ks_init+0x0/0x28 @ 1
-
[5.775000 < 0.005000 >] initcall ks_init+0x0/0x28 returned 0 after 1013 usecs
-
[5.780000 < 0.005000 >] calling kye_init+0x0/0x28 @ 1
-
[5.785000 < 0.005000 >] initcall kye_init+0x0/0x28 returned 0 after 1004 usecs
-
[5.790000 < 0.005000 >] calling lg_init+0x0/0x28 @ 1
-
[5.795000 < 0.005000 >] initcall lg_init+0x0/0x28 returned 0 after 1060 usecs
-
[5.800000 < 0.005000 >] calling ms_init+0x0/0x28 @ 1
-
[5.805000 < 0.005000 >] initcall ms_init+0x0/0x28 returned 0 after 981 usecs
-
[5.810000 < 0.005000 >] calling mr_init+0x0/0x28 @ 1
-
[5.815000 < 0.005000 >] initcall mr_init+0x0/0x28 returned 0 after 1026 usecs
-
[5.820000 < 0.005000 >] calling ntrig_init+0x0/0x28 @ 1
-
[5.825000 < 0.005000 >] initcall ntrig_init+0x0/0x28 returned 0 after 1106 usecs
-
[5.830000 < 0.005000 >] calling pl_init+0x0/0x28 @ 1
-
[5.835000 < 0.005000 >] initcall pl_init+0x0/0x28 returned 0 after 1018 usecs
-
[5.840000 < 0.005000 >] calling pl_init+0x0/0x28 @ 1
-
[5.845000 < 0.005000 >] initcall pl_init+0x0/0x28 returned 0 after 1008 usecs
-
[5.850000 < 0.005000 >] calling samsung_init+0x0/0x28 @ 1
-
[5.855000 < 0.005000 >] initcall samsung_init+0x0/0x28 returned 0 after 1018 usecs
-
[5.860000 < 0.005000 >] calling sjoy_init+0x0/0x28 @ 1
-
[5.865000 < 0.005000 >] initcall sjoy_init+0x0/0x28 returned 0 after 1161 usecs
-
[5.870000 < 0.005000 >] calling sony_init+0x0/0x28 @ 1
-
[5.875000 < 0.005000 >] initcall sony_init+0x0/0x28 returned 0 after 1160 usecs
-
[5.880000 < 0.005000 >] calling sp_init+0x0/0x28 @ 1
-
[5.885000 < 0.005000 >] initcall sp_init+0x0/0x28 returned 0 after 1160 usecs
-
[5.890000 < 0.005000 >] calling ga_init+0x0/0x28 @ 1
-
[5.895000 < 0.005000 >] initcall ga_init+0x0/0x28 returned 0 after 1167 usecs
-
[5.900000 < 0.005000 >] calling tm_init+0x0/0x28 @ 1
-
[5.905000 < 0.005000 >] initcall tm_init+0x0/0x28 returned 0 after 1179 usecs
-
[5.910000 < 0.005000 >] calling ts_init+0x0/0x28 @ 1
-
[5.915000 < 0.005000 >] initcall ts_init+0x0/0x28 returned 0 after 1124 usecs
-
[5.920000 < 0.005000 >] calling twinhan_init+0x0/0x28 @ 1
-
[5.925000 < 0.005000 >] initcall twinhan_init+0x0/0x28 returned 0 after 1184 usecs
-
[5.930000 < 0.005000 >] calling zp_init+0x0/0x28 @ 1
-
[5.935000 < 0.005000 >] initcall zp_init+0x0/0x28 returned 0 after 1178 usecs
-
[5.940000 < 0.005000 >] calling hid_init+0x0/0xc8 @ 1
-
[5.945000 < 0.005000 >] usbcore: registered new interface driver usbhid
-
[5.950000 < 0.005000 >] usbhid: v2.6:USB HID core driver
-
[5.950000 < 0.000000 >] initcall hid_init+0x0/0xc8 returned 0 after 9415 usecs
-
[5.955000 < 0.005000 >] calling init_soundcore+0x0/0xc0 @ 1
-
[5.960000 < 0.005000 >] initcall init_soundcore+0x0/0xc0 returned 0 after 875 usecs
-
[5.965000 < 0.005000 >] calling alsa_sound_init+0x0/0xb0 @ 1
-
[5.970000 < 0.005000 >] Advanced Linux Sound Architecture Driver Version 1.0.21.
-
[5.975000 < 0.005000 >] initcall alsa_sound_init+0x0/0xb0 returned 0 after 6096 usecs
-
[5.980000 < 0.005000 >] calling alsa_timer_init+0x0/0x1b4 @ 1
-
[5.985000 < 0.005000 >] initcall alsa_timer_init+0x0/0x1b4 returned 0 after 1111 usecs
-
[5.990000 < 0.005000 >] calling alsa_pcm_init+0x0/0x78 @ 1
-
[5.995000 < 0.005000 >] initcall alsa_pcm_init+0x0/0x78 returned 0 after 122 usecs
-
[6.000000 < 0.005000 >] calling snd_mem_init+0x0/0x4c @ 1
-
[6.005000 < 0.005000 >] initcall snd_mem_init+0x0/0x4c returned 0 after 76 usecs
-
[6.010000 < 0.005000 >] calling alsa_mixer_oss_init+0x0/0x50 @ 1
-
[6.015000 < 0.005000 >] initcall alsa_mixer_oss_init+0x0/0x50 returned 0 after 6 usecs
-
[6.020000 < 0.005000 >] calling alsa_pcm_oss_init+0x0/0xbc @ 1
-
[6.025000 < 0.005000 >] initcall alsa_pcm_oss_init+0x0/0xbc returned 0 after 13 usecs
-
[6.030000 < 0.005000 >] calling snd_soc_init+0x0/0x1c @ 1
-
[6.035000 < 0.005000 >] initcall snd_soc_init+0x0/0x1c returned 0 after 1082 usecs
-
[6.040000 < 0.005000 >] calling uda134x_init+0x0/0x1c @ 1
-
[6.045000 < 0.005000 >] No device for DAI UDA134X
-
[6.045000 < 0.000000 >] initcall uda134x_init+0x0/0x1c returned 0 after 3493 usecs
-
[6.050000 < 0.005000 >] calling s3c24xx_soc_platform_init+0x0/0x1c @ 1
-
[6.055000 < 0.005000 >] initcall s3c24xx_soc_platform_init+0x0/0x1c returned 0 after 5 usecs
-
[6.060000 < 0.005000 >] calling s3c24xx_i2s_init+0x0/0x1c @ 1
-
[6.065000 < 0.005000 >] No device for DAI s3c24xx-i2s
-
[6.070000 < 0.005000 >] initcall s3c24xx_i2s_init+0x0/0x1c returned 0 after 3827 usecs
-
[6.075000 < 0.005000 >] calling s3c24xx_uda134x_init+0x0/0x1c @ 1
-
[6.080000 < 0.005000 >] S3C24XX_UDA134X SoC Audio driver
-
[6.085000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[6.090000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[6.095000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[6.100000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[6.105000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
-
[6.110000 < 0.005000 >] UDA134X SoC Audio Codec
-
[6.120000 < 0.010000 >] asoc: UDA134X <-> s3c24xx-i2s mapping ok
-
[6.130000 < 0.010000 >] initcall s3c24xx_uda134x_init+0x0/0x1c returned 0 after 50057 usecs
-
[6.135000 < 0.005000 >] calling alsa_sound_last_init+0x0/0x7c @ 1
-
[6.140000 < 0.005000 >] ALSA device list:
-
[6.140000 < 0.000000 >] #0: S3C24XX_UDA134X (UDA134X)
-
[6.145000 < 0.005000 >] initcall alsa_sound_last_init+0x0/0x7c returned 0 after 6771 usecs
-
[6.150000 < 0.005000 >] calling sysctl_ipv4_init+0x0/0x4c @ 1
-
[6.155000 < 0.005000 >] initcall sysctl_ipv4_init+0x0/0x4c returned 0 after 130 usecs
-
[6.160000 < 0.005000 >] calling cubictcp_register+0x0/0x7c @ 1
-
[6.165000 < 0.005000 >] TCP cubic registered
-
[6.165000 < 0.000000 >] initcall cubictcp_register+0x0/0x7c returned 0 after 3072 usecs
-
[6.170000 < 0.005000 >] calling lib80211_init+0x0/0x28 @ 1
-
[6.175000 < 0.005000 >] lib80211: common routines for IEEE802.11 drivers
-
[6.180000 < 0.005000 >] initcall lib80211_init+0x0/0x28 returned 0 after 5447 usecs
-
[6.185000 < 0.005000 >] calling s3c24xx_dma_sysdev_register+0x0/0x80 @ 1
-
[6.195000 < 0.010000 >] initcall s3c24xx_dma_sysdev_register+0x0/0x80 returned 0 after 3224 usecs
-
[6.200000 < 0.005000 >] calling init_oops_id+0x0/0x58 @ 1
-
[6.205000 < 0.005000 >] initcall init_oops_id+0x0/0x58 returned 0 after 58 usecs
-
[6.210000 < 0.005000 >] calling disable_boot_consoles+0x0/0x60 @ 1
-
[6.215000 < 0.005000 >] initcall disable_boot_consoles+0x0/0x60 returned 0 after 5 usecs
-
[6.220000 < 0.005000 >] calling pm_qos_power_init+0x0/0xb8 @ 1
-
[6.230000 < 0.010000 >] initcall pm_qos_power_init+0x0/0xb8 returned 0 after 3519 usecs
-
[6.235000 < 0.005000 >] calling random32_reseed+0x0/0x64 @ 1
-
[6.240000 < 0.005000 >] initcall random32_reseed+0x0/0x64 returned 0 after 79 usecs
-
[6.245000 < 0.005000 >] calling seqgen_init+0x0/0x1c @ 1
-
[6.250000 < 0.005000 >] initcall seqgen_init+0x0/0x1c returned 0 after 127 usecs
-
[6.255000 < 0.005000 >] calling scsi_complete_async_scans+0x0/0xf8 @ 1
-
[6.260000 < 0.005000 >] initcall scsi_complete_async_scans+0x0/0xf8 returned 0 after 5 usecs
-
[6.265000 < 0.005000 >] calling rtc_hctosys+0x0/0x144 @ 1
-
[6.270000 < 0.005000 >] s3c2410-rtc s3c2410-rtc: hctosys: invalid date/time
-
[6.280000 < 0.010000 >] initcall rtc_hctosys+0x0/0x144 returned 0 after 5701 usecs
-
[6.285000 < 0.005000 >] calling tcp_congestion_default+0x0/0x1c @ 1
-
[6.290000 < 0.005000 >] initcall tcp_congestion_default+0x0/0x1c returned 0 after 10 usecs
-
[6.295000 < 0.005000 >] calling ip_auto_config+0x0/0x7b0 @ 1
-
[6.825000 < 0.530000 >] eth0: link down
-
[7.830000 < 1.005000 >] IP-Config: Unable to set interface netmask (-22).
-
[7.830000 < 0.000000 >] initcall ip_auto_config+0x0/0x7b0 returned -1 after 1491554 usecs
-
[7.835000 < 0.005000 >] initcall ip_auto_config+0x0/0x7b0 returned with error code -1
-
[7.840000 < 0.005000 >] calling initialize_hashrnd+0x0/0x24 @ 1
-
[7.845000 < 0.005000 >] initcall initialize_hashrnd+0x0/0x24 returned 0 after 46 usecs
-
[7.850000 < 0.005000 >] async_waiting @ 1
-
[7.850000 < 0.000000 >] async_continuing @ 1 after 5 usec
-
[7.855000 < 0.005000 >] Looking up port of RPC 100003/2 on 192.168.0.100
-
[8.865000 < 1.010000 >] eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
-
[9.865000 < 1.000000 >] Looking up port of RPC 100005/1 on 192.168.0.100
-
[9.885000 < 0.020000 >] VFS: Mounted root (nfs filesystem) on device 0:11.
-
[9.885000 < 0.000000 >] async_waiting @ 1
-
[9.890000 < 0.005000 >] async_continuing @ 1 after 5 usec
-
[9.895000 < 0.005000 >] Freeing init memory: 160K
阅读(7492) | 评论(0) | 转发(2) |