Advertisement
octavex

spa122log

Apr 9th, 2017
1,780
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.19 KB | None | 0 0
  1. NAND: 32 MiB
  2. In: serial
  3. Out: serial
  4. Err: serial
  5. Use Full Image's Kernel
  6. Net: VLAN Mode
  7. L2 switch present
  8. ETN1
  9. Hit any key to stop autoboot: 0
  10. firetux # [C
  11. Unknown command '[C' - try 'help'
  12. firetux # shell
  13. Unknown command 'shell' - try 'help'
  14. firetux # help
  15. ? - alias for 'help'
  16. askenv - get environment variables from stdin
  17. autoscr - run script from memory
  18. base - print or set address offset
  19. bdinfo - print Board Info structure
  20. boot - boot default, i.e., run 'bootcmd'
  21. bootd - boot default, i.e., run 'bootcmd'
  22. bootelf - Boot from an ELF image in memory
  23. bootm - boot application image from memory
  24. bootp - boot image via network using BOOTP/TFTP protocol
  25. bootvx - Boot vxWorks from an ELF image
  26. chpart - change active partition
  27. cmp - memory compare
  28. coninfo - print console devices and information
  29. cp - memory copy
  30. crc32 - checksum calculation
  31. dcache - enable or disable data cache
  32. dhcp - boot image via network using DHCP/TFTP protocol
  33. echo - echo args to console
  34. eeprom - EEPROM sub-system
  35. exit - exit script
  36. flashlock- NAND Flash Lock and Unlock
  37. fsinfo - print information about filesystems
  38. fsload - load binary file from a filesystem image
  39. go - start application at address 'addr'
  40. help - print online help
  41. icache - enable or disable instruction cache
  42. icrc32 - checksum calculation
  43. iloop - infinite loop on address range
  44. imd - i2c memory display
  45. iminfo - print header information for application image
  46. imm - i2c memory modify (auto-incrementing)
  47. imw - memory write (fill)
  48. imxtract- extract a part of a multi-image
  49. inm - memory modify (constant address)
  50. iprobe - probe to discover valid I2C chip addresses
  51. itest - return true/false on integer compare
  52. loadb - load binary file over serial line (kermit mode)
  53. loads - load S-Record file over serial line
  54. loady - load binary file over serial line (ymodem mode)
  55. loop - infinite loop on address range
  56. ls - list files in a directory (default /)
  57. md - memory display
  58. mdc - memory display cyclic
  59. mii - MII utility commands
  60. mm - memory modify (auto-incrementing)
  61. mtdparts- define flash/nand partitions
  62. mtest - simple RAM test
  63. mw - memory write (fill)
  64. mwc - memory write cyclic
  65. nand - NAND sub-system
  66. nboot - boot from NAND device
  67. nfs - boot image via network using NFS protocol
  68. nm - memory modify (constant address)
  69. ping - send ICMP ECHO_REQUEST to network host
  70. printenv- print environment variables
  71. rarpboot- boot image via network using RARP/TFTP protocol
  72. reset - Perform RESET of the CPU
  73. run - run commands in an environment variable
  74. saveenv - save environment variables to persistent storage
  75. setenv - set environment variables
  76. showvar - print local hushshell variables
  77. sleep - delay execution for some time
  78. test - minimal test like /bin/sh
  79. tftpboot- boot image via network using TFTP protocol
  80. version - print monitor version
  81. firetux # shell
  82. Unknown command 'shell' - try 'help'
  83. firetux # fsinfo
  84. mtdparts variable not set, see 'help mtdparts'
  85. firetux # help fsinfo
  86. fsinfo - print information about filesystems
  87.  
  88. firetux # help mtdparts
  89. mtdparts
  90. - list partition table
  91. mtdparts delall
  92. - delete all partitions
  93. mtdparts del part-id
  94. - delete partition (e.g. part-id = nand0,1)
  95. mtdparts add <mtd-dev> <size>[@<offset>] [<name>] [ro]
  96. - add partition
  97. mtdparts default
  98. - reset partition table to defaults
  99.  
  100. -----
  101.  
  102. this command uses three environment variables:
  103.  
  104. 'partition' - keeps current partition identifier
  105.  
  106. partition := <part-id>
  107. <part-id> := <dev-id>,part_num
  108.  
  109. 'mtdids' - linux kernel mtd device id <-> u-boot device id mapping
  110.  
  111. mtdids=<idmap>[,<idmap>,...]
  112.  
  113. <idmap> := <dev-id>=<mtd-id>
  114. <dev-id> := 'nand'|'nor'|'onenand'<dev-num>
  115. <dev-num> := mtd device number, 0...
  116. <mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)
  117.  
  118. 'mtdparts' - partition list
  119.  
  120. mtdparts=mtdparts=<mtd-def>[;<mtd-def>...]
  121.  
  122. <mtd-def> := <mtd-id>:<part-def>[,<part-def>...]
  123. <mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)
  124. <part-def> := <size>[@<offset>][<name>][<ro-flag>]
  125. <size> := standard linux memsize OR '-' to denote all remaining space
  126. <offset> := partition start offset within the device
  127. <name> := '(' NAME ')'
  128. <ro-flag> := when set to 'ro' makes partition read-only (not used, passed to kernel)
  129.  
  130. firetux # mtdparts
  131. mtdparts variable not set, see 'help mtdparts'
  132. no partitions defined
  133.  
  134. defaults:
  135. mtdids : nand0=gen_nand
  136. mtdparts: mtdparts=gen_nand:384k(u-boot),128k(u-bootenv),1536k(kernel),1M(config),2M(data),-(rootfs)
  137. firetux # printenv
  138. bootdelay=1
  139. baudrate=115200
  140. ethaddr=FF:FF:FF:FF:FF:FF
  141. netmask=255.255.255.0
  142. ipaddr=192.168.1.1
  143. serverip=192.168.1.100
  144. bootfile=firetux.kernel
  145. bootcmd1=setenv bootargs ${bootargs} && nboot 0x20200000 0 ${image_addr} && bootm 0x20200000
  146. bootcmd2=setenv bootargs ${bootargs} && tftpboot 20200000 firetux.kernel && bootm 20200000
  147. phymode=auto
  148. mtdids=nand0=gen_nand
  149. unlock=yes
  150. verify=y
  151. update.uboot=echo Update u-boot && tftpboot 0x20000000 nandboot.flash && nand erase 0x0 0x03ffff && nand write.jffs2 0x20000000 0x0 ${filesize}
  152. update.kernel=echo Update kernel && tftpboot 0x20000000 uImage && nand erase 0x80000 0x180000 && nand write.jffs2 20000000 0x80000 0x180000
  153. update.romimg=echo Update RomImage && tftpboot 0x20000000 romimage.img && nand erase 0x80000 0x13e0000&& nand write.jffs2 20000000 0x80000 ${filesize}
  154. update.halfimg=echo Update HalfImage && tftpboot 0x20000000 recovery.img && nand erase 0x1460000 0x700000&& nand write.jffs2 20000000 0x1460000 ${filesize}
  155. eraseenv=echo Erase Environment && nand erase 0x60000 0x20000
  156. HwModel=Hw_Model=SPA122
  157. bootcmd=run bootcmd1
  158. halfImage=half_image=0
  159. cy_boot_code_ver=1.0.1 (Oct 6 2011 - 20:04:00)
  160. RouterMode=Router_Mode=0
  161. stdin=serial
  162. stdout=serial
  163. stderr=serial
  164. bootcmd=run bootcmd1
  165. image_addr=0x80000
  166. bootargs=console=ttyS1,115200n8 rootfstype=squashfs noalign half_image=0 verify=y Hw_Model=SPA122 Router_Mode=0
  167. ethact=ETN1
  168.  
  169. Environment size: 1380/131068 bytes
  170. firetux # showvar
  171. HUSH_VERSION=0.01
  172. firetux # bdinfo
  173. arch_number = 0x0000053B
  174. env_t = 0x00000000
  175. boot_params = 0x20000100
  176. DRAM bank = 0x00000000
  177. -> start = 0x20000000
  178. -> size = 0x02000000
  179. ethaddr = FF:FF:FF:FF:FF:FF
  180. ip_addr = 192.168.1.1
  181. baudrate = 115200 bps
  182. firetux # coninfo
  183. List of available devices:
  184. serial 80000003 SIO stdin stdout stderr
  185. firetux # help cp
  186. cp [.b, .w, .l] source target count
  187. - copy memory
  188.  
  189. firetux # help nand
  190. nand info - show available NAND devices
  191. nand device [dev] - show or set current device
  192. nand read - addr off|partition size
  193. nand write - addr off|partition size
  194. read/write 'size' bytes starting at offset 'off'
  195. to/from memory address 'addr', skipping bad blocks.
  196. nand erase [clean] [off size] - erase 'size' bytes from
  197. offset 'off' (entire device if not specified)
  198. nand bad - show bad blocks
  199. nand dump[.oob] off - dump page
  200. nand scrub - really clean NAND erasing bad blocks (UNSAFE)
  201. nand markbad off - mark bad block at offset (UNSAFE)
  202. nand biterr off - make a bit error at offset (UNSAFE)
  203.  
  204. firetux # nand info
  205.  
  206. Device 0: NAND 32MiB 3,3V 8-bit, sector size 16 KiB
  207. firetux # help nand read
  208. nand info - show available NAND devices
  209. nand device [dev] - show or set current device
  210. nand read - addr off|partition size
  211. nand write - addr off|partition size
  212. read/write 'size' bytes starting at offset 'off'
  213. to/from memory address 'addr', skipping bad blocks.
  214. nand erase [clean] [off size] - erase 'size' bytes from
  215. offset 'off' (entire device if not specified)
  216. nand bad - show bad blocks
  217. nand dump[.oob] off - dump page
  218. nand scrub - really clean NAND erasing bad blocks (UNSAFE)
  219. nand markbad off - mark bad block at offset (UNSAFE)
  220. nand biterr off - make a bit error at offset (UNSAFE)
  221.  
  222. Unknown command 'read' - try 'help' without arguments for list of all known commands
  223.  
  224. firetux # showvar
  225. HUSH_VERSION=0.01
  226. firetux # help base
  227. base
  228. - print address offset for memory commands
  229. base off
  230. - set address offset for memory commands to 'off'
  231.  
  232. firetux # base
  233. Base Address: 0x00000000
  234. firetux # help md
  235. md [.b, .w, .l] address [# of objects]
  236. - memory display
  237.  
  238. firetux # ls
  239. mtdparts variable not set, see 'help mtdparts'
  240. firetux # help ls
  241. ls [ directory ]
  242. - list files in a directory.
  243.  
  244. firetux # ls /
  245. mtdparts variable not set, see 'help mtdparts'
  246. firetux # help eeprom
  247. eeprom read addr off cnt
  248. eeprom write addr off cnt
  249. - read/write `cnt' bytes at EEPROM offset `off'
  250.  
  251. firetux # boot
  252.  
  253. Loading from NAND 32MiB 3,3V 8-bit, offset 0x80000
  254. Image Name: SP2Xcybertan_rom_bin
  255. Created: 1970-01-01 0:00:-1 UTC
  256. Image Type: ARM Linux Kernel Image (uncompressed)
  257. Data Size: 1572736 Bytes = 1.5 MB
  258. Load Address: 20008000
  259. Entry Point: 20008000
  260. ## Booting kernel from Legacy Image at 20200000 ...
  261. Image Name: SP2Xcybertan_rom_bin
  262. Created: 1970-01-01 0:00:-1 UTC
  263. Image Type: ARM Linux Kernel Image (uncompressed)
  264. Data Size: 1572736 Bytes = 1.5 MB
  265. Load Address: 20008000
  266. Entry Point: 20008000
  267. Verifying Checksum ... OK
  268. Loading Kernel Image ... OK
  269. OK
  270.  
  271. Starting kernel ...
  272.  
  273. Uncompressing Linux.................................................................................................. done, booting the kernel.
  274. [ 0.000000] Linux version 2.6.26.5 (yuzho2@Payton) (gcc version 4.1.2) #1 PREEMPT Sun Sep 6 10:54:57 CST 2015
  275. [ 0.000000] CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177
  276. [ 0.000000] Machine: NXP PNX8181
  277. [ 0.000000] Memory policy: ECC disabled, Data cache writeback
  278. [ 0.000000] CPU0: D VIVT write-back cache
  279. [ 0.000000] CPU0: I cache: 32768 bytes, associativity 4, 32 byte lines, 256 sets
  280. [ 0.000000] CPU0: D cache: 32768 bytes, associativity 4, 32 byte lines, 256 sets
  281. [17179569.184000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 7874
  282. [17179569.184000] Kernel command line: console=ttyS1,115200n8 rootfstype=squashfs noalign half_image=0 verify=y Hw_Model=SPA122 Router_Mode=0
  283. [17179569.184000] PNX8181: Configured 66 Interrupts
  284. [17179569.184000] PID hash table entries: 128 (order: 7, 512 bytes)
  285. [17179569.184000] Console: colour dummy device 80x30
  286. [17179569.184000] Dentry cache hash table entries: 4096 (order: 2, 16384 bytes)
  287. [17179569.184000] Inode-cache hash table entries: 2048 (order: 1, 8192 bytes)
  288. [17179569.188000] Memory: 31MB = 31MB total
  289. [17179569.188000] Memory: 28296KB available (2804K code, 197K data, 120K init)
  290. [17179569.260000] Mount-cache hash table entries: 512
  291. [17179569.260000] CPU: Testing write buffer coherency: ok
  292. [17179569.264000] net_namespace: 484 bytes
  293. [17179569.264000] NET: Registered protocol family 16
  294. [17179569.264000] Board: Vega_PNX8181_BaseStation low-cost version detected.
  295. [17179569.264000] clock [intc] enabled
  296. [17179569.264000] clock [sctu] enabled
  297. [17179569.264000] clock [uart1] enabled
  298. [17179569.264000] clock [uart2] enabled
  299. [17179569.264000] clock [sdi] enabled
  300. [17179569.264000] clock [ebi1] enabled
  301. [17179569.264000] clock [ebi2] enabled
  302. [17179569.264000] clock [gpio] enabled
  303. [17179569.264000] gpio_init: Registered PNX818 GPIO device
  304. [17179569.264000] Board HW MODEL : 0x2
  305. [17179569.264000] clock [extint] enabled
  306. [17179569.268000] External Interrupt Controller registered
  307. [17179569.284000] NET: Registered protocol family 2
  308. [17179569.320000] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
  309. [17179569.320000] TCP established hash table entries: 1024 (order: 1, 8192 bytes)
  310. [17179569.320000] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
  311. [17179569.320000] TCP: Hash tables configured (established 1024 bind 1024)
  312. [17179569.320000] TCP reno registered
  313. [17179569.332000] NET: Registered protocol family 1
  314. [17179569.332000] clock [dmau] enabled
  315. [17179569.332000] probe succeded
  316. [17179569.332000] clock [iic] enabled
  317. [17179569.336000] squashfs: version 3.4 (2008/08/26) Phillip Lougher
  318. [17179569.336000] squashfs: LZMA suppport for slax.org by jro
  319. [17179569.336000] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
  320. [17179569.340000] msgmni has been set to 55
  321. [17179569.340000] io scheduler noop registered (default)
  322. [17179569.348000] HDLC line discipline: version $Revision: 1.1.1.1 $, maxframe=4096
  323. [17179569.348000] N_HDLC line discipline registered.
  324. [17179569.348000] Non-volatile memory driver v1.2
  325. [17179569.348000] Serial: 8250/16550 driver $Revision: 1.1.1.1 $ 2 ports, IRQ sharing disabled
  326. [17179569.348000] serial8250.0: ttyS0 at MMIO 0xc2004000 (irq = 24) is a 16550A
  327. [17179569.348000] serial8250.0: ttyS1 at MMIO 0xc2005000 (irq = 23) is a 16550A
  328. [17179569.352000] console [ttyS1] enabled
  329. [17179569.356000] DCC: JTAG1 Serial emulation driver driver $Revision: 1.1.1.1 $
  330. [17179569.360000] ttyJ0 at MMIO 0x12345678 (irq = 0) is a DCC
  331. [17179569.364000] brd: module loaded
  332. [17179569.368000] PPP generic driver version 2.4.2
  333. [17179569.372000] PPP MPPE Compression module registered
  334. [17179569.376000] NET: Registered protocol family 24
  335. [17179569.380000] PPPoL2TP kernel driver, V1.0
  336. [17179569.380000] [ip3912] : Bridge Mode...
  337. [17179569.384000] clock [etn1] enabled
  338. [17179569.396000] ip3912_mii_bus: probed
  339. [17179569.400000] ip3912: eth0 up, speed is 100 Mbps, Full Duplex.
  340. [17179569.404000] eth0: IP3912 at 0xc1600000 using no phy
  341. [17179569.408000] NFTL driver: nftlcore.c $Revision: 1.1.1.1 $, nftlmount.c $Revision: 1.1.1.1 $
  342. [17179569.412000] physmap platform flash device: 02000000 at 80000000
  343. [17179569.420000] physmap-flash physmap-flash.0: map_probe failed
  344. [17179569.428000] NAND device: Manufacturer ID: 0xad, Chip ID: 0x75 (Hynix NAND 32MiB 3,3V 8-bit)
  345. [17179569.432000] Using Full Image's RootFS
  346. [17179569.436000] Using static partition definition
  347. [17179569.440000] !!! do adler32 checksum !!!
  348. [17179571.280000] File system image checksum OK
  349. [17179571.284000] Creating 11 MTD partitions on "gen_nand":
  350. [17179571.288000] 0x00000000-0x00060000 : "u-boot"
  351. [17179571.292000] 0x00060000-0x00080000 : "u-bootenv"
  352. [17179571.296000] 0x00080000-0x01460000 : "ROMIMAGE"
  353. [17179571.300000] 0x01460000-0x01b60000 : "HALFIMAGE"
  354. [17179571.304000] 0x00200000-0x01460000 : "LINUX_ROOTFS"
  355. [17179571.312000] 0x01b60000-0x01d60000 : "HS_FW"
  356. [17179571.316000] 0x01d60000-0x01e60000 : "FPAR"
  357. [17179571.320000] 0x01e60000-0x01ee0000 : "CISCO"
  358. [17179571.328000] 0x01ee0000-0x01f00000 : "EEPROM"
  359. [17179571.332000] 0x01f00000-0x01f80000 : "NVRAM"
  360. [17179571.336000] 0x01f80000-0x02000000 : "CA_DATA"
  361. [17179571.340000] clock [spi1] enabled
  362. [17179571.344000] spi-pnx8181 spi-pnx8181: probe succeded
  363. [17179571.352000] i2c /dev entries driver
  364. [17179571.468000] ksz8873 0-005f: KSZ8873 3-Port Managed Switch Driver
  365. [17179571.472000] PNX8181 watchdog timer: timer margin 16 sec
  366. [17179571.476000] Registered led device: led1
  367. [17179571.480000] Registered led device: led2
  368. [17179571.484000] cordless: character device initialized (major=254)
  369. [17179571.492000] coma-debug: coma debug support enabled
  370. [17179571.496000] GACT probability on
  371. [17179571.500000] Mirror/redirect action on
  372. [17179571.504000] u32 classifier
  373. [17179571.508000] Performance counters on
  374. [17179571.512000] input device check on
  375. [17179571.516000] Actions configured
  376. [17179571.520000] Netfilter messages via NETLINK v0.30.
  377. [17179571.524000] nf_conntrack version 0.5.0 (1024 buckets, 4096 max)
  378. [17179571.532000] ip_tables: (C) 2000-2006 Netfilter Core Team
  379. [17179571.536000] ipt_time loading
  380. [17179571.540000] TCP cubic registered
  381. [17179571.544000] NET: Registered protocol family 17
  382. [17179571.548000] Bridge firewalling registered
  383. [17179571.552000] Ebtables v2.0 registered
  384. [17179571.560000] RPC: Registered udp transport module.
  385. [17179571.564000] RPC: Registered tcp transport module.
  386. [17179571.568000] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
  387. [17179571.572000] All bugs added by David S. Miller <davem@redhat.com>
  388. [17179571.580000] LINUX_ROOTFS is 4
  389. [17179571.588000] VFS: Mounted root (squashfs filesystem) readonly.
  390. [17179571.592000] Freeing init memory: 120K
  391. ln: voice: Read-only file system
  392. [17179575.860000] coma-config: netlink interface registered
  393. [17179575.976000] coma-cpi: netlink interface registered
  394. [17179576.024000] coma-ss7: netlink interface registered
  395. [17179576.084000] coma-voice: character device initialized (major=253)
  396. [17179576.136000] coma-userch: netlink interface registered
  397. insmod: coma-gmep.ko: module not found
  398. [17179576.244000] coma-dsr: netlink interface registered
  399. [17179576.280000] ***** LED_DRV init *****
  400. [17179576.284000] ***** LED_DRV end *****
  401. [17179576.312000] *** sys event driver initialized ***
  402. ECC failed: 0
  403. ECC corrected: 0
  404. Number of bad blocks: 0
  405. Number of bbt blocks: 0
  406. Block size 16384, page size 512, OOB size 16
  407. Dumping data starting at 0x00000000 and ending at 0x00020000...
  408. ECC failed: 0
  409. ECC corrected: 0
  410. Number of bad blocks: 0
  411. Number of bbt blocks: 0
  412. Block size 16384, page size 512, OOB size 16
  413. Dumping data starting at 0x00000000 and ending at 0x00020000...
  414. Model Name: bootenv[SPA122] boardinfo[2][SPA122] define[Payton]
  415. model_name[SPA122] router_name[SPA122] pid_name[SPA122] locale[US] model_type[]
  416.  
  417. Hit enter to continue...
  418.  
  419.  
  420.  
  421.  
  422.  
  423.  
  424.  
  425. login: <startWanPort_notag> vlan_id= 0, fake_vlanid= 0, brName= br0, vIfaceName= eth0
  426.  
  427. START
  428. Busybox configured w/o syslogd
  429.  
  430. route(): ioctl fail (17) !!!
  431. lo: File exists
  432. ifconfig: SIOCSIFFLAGS: Cannot assign requested address
  433. ifconfig: SIOCSIFFLAGS: Cannot assign requested address
  434. pool.ntp.org: Host name lookup failure
  435. Time update failed
  436. Last update failed, we need to re-update after 30 seconds
  437. main: system_event_start(httpd_ghLsdZ) done
  438. No Need Sleep
  439. CDPCLIENT_CLIENT_INIT_OK
  440. CDP-LLDP: LINK SP Started
  441. cdp link create ret 0
  442. /etc/start_voice : starting spr_voip for SPA112/122
  443. ####################
  444. pid_name is SPA122 PID is 6
  445. ####################
  446. SIPURA: OAL module initing
  447. SIPURA: OAL Timer module initing
  448. SIPURA: OAL Timer module inited:0
  449. SIPURA: OAL module inited
  450. IVR_DEBUG: ivr init const
  451. [init_modules] Wait Startup Delay <3> seconds
  452. cload.fifo_size = 102400, cload.image=1075023872, cload.image_size=715844,cload.poweron_menu=2,
  453. cload.eeprom=73736,cload.eeprom_len=8129
  454. CDPLINK_INIT_OK
  455. CPPLINK SP Started
  456. NMLINK_INIT_OK
  457. NMLINK SP Started
  458. [17179601.100000] cordless: loading synergy-2015-06-09
  459. [17179601.124000] Created coma thread for processing coma control message
  460. [17179601.136000] cordless: init successful
  461. reset on EEPROM on SPA112/122
  462. eeprom_update : Write Suceeded! returning success reply to Cordless space, bytes written =8129
  463. isVerifiedProslic : REG VAL = 00
  464. si3217x : Channel 0 : Type = PROSLIC
  465. isVerifiedProslic : REG VAL = 00
  466. si3217x : Channel 1 : Type = PROSLIC
  467. si3217x : Channel 0 : ChipType = 18
  468. si3217x : Channel 1 : ChipType = 18
  469. Si3217x : Channel 0 : VBAT Up = 59.914 v
  470. ===== slic chip is === 0
  471. slic IC from Telefunken
  472. Si3217x : Channel 1 : VBAT Up = 59.204 v
  473. ===== slic chip is === 0
  474. slic IC from Telefunken
  475. ****** ntp_main(0,30) ******
  476. pool.ntp.org: Host name lookup failure
  477. Time update failed
  478. Starting LB Cal on channel 0
  479. Starting LB Cal on channel 1
  480. [si_init_proslic_api() 198] 12
  481. gSysNatMap.uiExtIp = 0x0
  482. cc_pre_init finished !!!
  483.  
  484.  
  485. RTP QUERY INTERFACE named pipe 7, read fd 8 ctrl fd 9
  486.  
  487. ch_Init()10 Init Mutex & Sem ...
  488. RPPLINK_INIT_OK
  489. RPPLINK SP Started
  490. [ftr_service_init] profile=AA
  491. [ftr_service_init] line=AA
  492. flash_task
  493. flash_task update
  494. Si3217x PCMStart
  495. Si3217x PCMStart
  496. [AUD_ivr_main] clear audio param for ivr from line 0 to 2
  497. [AUD_ivr_main] get buf 0x411dd008
  498. router : RPPLINK SP Started
  499. Bootup params update in /tmp/voice_config_info
  500. Debug_Level [0]
  501. TP_setCosValue+++++++++++++++++++COS=6
  502. [check_dns] start stun 1 max line 13
  503. 2. res_query failed:111
  504. 2. res_query failed:111
  505. 2. res_query failed:111
  506. 2. res_query failed:111
  507. 2. res_query failed:111
  508. 2. res_query failed:111
  509. [fprv_eval_profile_rule] rule (null), fprv.step: 0
  510. [fprv_eval_profile_rule] rc prod 0 rc_enable 0
  511. 2. res_query failed:111
  512. 2. res_query failed:111
  513. 2. res_query failed:111
  514. 2. res_query failed:111
  515. 2. res_query failed:111
  516. 2. res_query failed:111
  517. [CC_main] dns done
  518. 2. res_query failed:111
  519. ****** ntp_main(0,60) ******
  520. pool.ntp.org: Host name lookup failure
  521. Time update failed
  522. 2. res_query failed:111
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement