Snippets

新妻浩光 ドンキ見守りカメラ u-boot/linux起動ログ

Created by 新妻浩光
-Boot 2012.10 (Dec 26 2017 - 18:17:43) for GK7102 rb-sc1045-v2.0 (GOKE)

HAL:   20160913
DRAM:  64 MiB
Flash: 8 MiB
NAND:  [No SPI nand]
SD/MMC: 0
SF:    8 MiB [page:256 Bytes] [sector:64 KiB] [count:128] (GD25Q64C)
In:    serial
Out:   serial
Err:   serial
Net:   Int PHY
Hit any key to stop autoboot:  0
GK7102 #
GK7102 # help
[PROCESS_SEPARATORS] help
?       - alias for 'help'
base    - print or set address offset
bdinfo  - print Board Info structure
boot    - boot default, i.e., run 'bootcmd'
bootd   - boot default, i.e., run 'bootcmd'
bootelf - Boot from an ELF image in memory
bootm   - boot application image from memory
bootp   - boot image via network using BOOTP/TFTP protocol
bootvx  - Boot vxWorks from an ELF image
bootz   - boot Linux zImage image from memory
cmp     - memory compare
coninfo - print console devices and information
cp      - memory copy
crc32   - checksum calculation
dhcp    - boot image via network using DHCP/TFTP protocol
echo    - echo args to console
editenv - edit environment variable
env     - environment handling commands
erase   - erase FLASH memory
fatinfo - print information about filesystem
fatload - load binary file from a dos filesystem
fatls   - list files in a directory (default /)
fatwrite- write file into a dos filesystem
flinfo  - print FLASH memory information
gkupdate- Gk_update sub-system
go      - start application at address 'addr'
help    - print command description/usage
iminfo  - print header information for application image
imls    - list all images found in flash
imxtract- extract a part of a multi-image
itest   - return true/false on integer compare
loadb   - load binary file over serial line (kermit mode)
loads   - load S-Record file over serial line
loady   - load binary file over serial line (ymodem mode)
loop    - infinite loop on address range
md      - memory display
mm      - memory modify (auto-incrementing address)
mmc     - MMC sub system
mmcinfo - display MMC info
mtest   - simple RAM read/write test
mw      - memory write (fill)
nfs     - boot image via network using NFS protocol
nm      - memory modify (constant address)
ping    - send ICMP ECHO_REQUEST to network host
printenv- print environment variables
protect - enable or disable FLASH write protection
reset   - Perform RESET of the CPU
run     - run commands in an environment variable
saveenv - save environment variables to persistent storage
setenv  - set environment variables
sf      - SPI flash sub-system
sleep   - delay execution for some time
snand   - SpiNAND sub-system
source  - run script from memory
tftpboot- boot image via network using TFTP protocol
version - print monitor, compiler and linker version
GK7102 # version
[PROCESS_SEPARATORS] version

U-Boot 2012.10 (Dec 26 2017 - 18:17:43) for GK7102 rb-sc1045-v2.0 (GOKE)
arm-goke-linux-uclibcgnueabi-gcc (crosstool-NG 1.18.0) 4.6.1
GNU ld (crosstool-NG 1.18.0) 2.21.1
GK7102 # printenv
[PROCESS_SEPARATORS] printenv
arm_freq=0x00112032
baudrate=115200
bootargs=console=ttySGK0,115200 mem=36M rootfstype=squashfs root=/dev/mtdblock2 init=linuxrc mtdparts=gk_flash:320K(U),1664K(K),1152K(R),2560K(A),-(H)
bootcmd=sf probe;sf read 0xc1000000 0x50000 0x1A0000;bootm 0xc1000000;
bootdelay=1
bootfile=zImage
bsbsize=1M
consoledev=ttySGK0
ethact=gk7101
ethaddr=3C:97:0E:22:E1:14
filesize=256D78
gatewayip=192.168.0.1
hostname="gk7102s"
ipaddr=192.168.0.27
loadaddr=0xC1000000
mem=36M
netdev=eth0
netmask=255.255.255.0
nfsserver=11.1.4.19
phytype=0
rootfstype=ubi.mtd=3 rootfstype=ubifs root=ubi0:rootfs
rootpath=/opt/work
serverip=192.168.0.29
sfboot=setenv bootargs console=${consoledev},${baudrate} noinitrd mem=${mem} rw ${rootfstype} init=linuxrc ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}:${netdev} mac=${ethaddr} phytype=${phytype};sf probe 0 0;sf read ${loadaddr} ${sfkernel} ${filesize}; bootm
sfkernel=0x50000
stderr=serial
stdin=serial
stdout=serial
tftpboot=setenv bootargs root=/dev/nfs nfsroot=${nfsserver}:${rootpath},proto=tcp,nfsvers=3,nolock ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}:${netdev} mac=${ethaddr} phytype=${phytype} console=${consoledev},${baudrate} mem=${mem};tftpboot ${bootfile};bootm

Environment size: 1290/65532 bytes
GK7102 # mmc
[PROCESS_SEPARATORS] mmc
mmc - MMC sub system

Usage:
mmc read addr blk# cnt
mmc write addr blk# cnt
mmc erase blk# cnt
mmc rescan
mmc part - lists available partition on current mmc device
mmc dev [dev] [part] - show or set current mmc device [partition]
mmc list - lists available devices
GK7102 # flinfo
[PROCESS_SEPARATORS] flinfo

Bank # 1: flash_print_info()
GK7102 # sf
[PROCESS_SEPARATORS] sf
sf - SPI flash sub-system

Usage:
sf probe [[bus:]cs] [hz] [mode] - init flash device on given SPI bus
                                  and chip select
sf read addr offset len         - read `len' bytes starting at
                                  `offset' to memory at `addr'
sf write addr offset len        - write `len' bytes from memory
                                  at `addr' to flash at `offset'
sf erase offset [+]len          - erase `len' bytes from `offset'
                                  `+len' round up `len' to block size
sf update addr offset len       - erase and write `len' bytes from memory
                                  at `addr' to flash at `offset'
GK7102 # sf probe
[PROCESS_SEPARATORS] sf probe
SF:    8 MiB [page:256 Bytes] [sector:64 KiB] [count:128] (GD25Q64C)
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631

U-Boot 2012.10 (Dec 26 2017 - 18:17:43) for GK7102 rb-sc1045-v2.0 (GOKE)

HAL:   20160913
DRAM:  64 MiB
Flash: 8 MiB
NAND:  [No SPI nand]
SD/MMC: 0
SF:    8 MiB [page:256 Bytes] [sector:64 KiB] [count:128] (GD25Q64C)
In:    serial
Out:   serial
Err:   serial
Net:   Int PHY
Hit any key to stop autoboot:  0
[PROCESS_SEPARATORS] sf probe;sf read 0xc1000000 0x50000 0x1A0000;bootm 0xc1000000;
SF:    8 MiB [page:256 Bytes] [sector:64 KiB] [count:128] (GD25Q64C)
put param to memory
mem size (36)
total mem size (64)
bsb size (1)
usr size (0)

the kernel image is zImage or Image
entry = 0xc1000000
## Transferring control to Linux (at address c1000000)...

Starting kernel ...

machid = 3988 r2 = 0xc0000100
Uncompressing Linux... done, booting the kernel.
[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.4.43-gk (root@localhost.localdomain) (gcc version 4.6.1 (crosstool-NG 1.18.0) ) #71 PREEMPT Fri Nov 10 15:20:07 CST 2017
[    0.000000] CPU: ARMv6-compatible processor [410fb767] revision 7 (ARMv7), cr=00c5387d
[    0.000000] CPU: VIPT aliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine: Goke IPC Board
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] AHB: 0x90000000  0xf2000000  -- 0x1000000
[    0.000000] APB: 0xa0000000  0xf3000000  -- 0x1000000
[    0.000000] PPM: 0xc0000000  0xc0000000  -- 0x200000
[    0.000000] BSB: 0xc2600000  0xf5000000  -- 0x100000
[    0.000000] DSP: 0xc2700000  0xf6000000  -- 0x18f0000
[    0.000000] USR: 0xc3ff0000  0xfe000000  -- 0x10000
[    0.000000] hal version = 20160913
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 9144
[    0.000000] Kernel command line: console=ttySGK0,115200 mem=36M rootfstype=squashfs root=/dev/mtdblock2 init=linuxrc mtdparts=gk_flash:320K(U),1664K(K),1152K(R),2560K(A),-(H)
[    0.000000] PID hash table entries: 256 (order: -2, 1024 bytes)
[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Memory: 36MB = 36MB total
[    0.000000] Memory: 31776k/31776k available, 5088k reserved, 0K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     DMA     : 0xff600000 - 0xffe00000   (   8 MB)
[    0.000000]     vmalloc : 0x82800000 - 0xff000000   (1992 MB)
[    0.000000]     lowmem  : 0x80000000 - 0x82400000   (  36 MB)
[    0.000000]     modules : 0x7f000000 - 0x80000000   (  16 MB)
[    0.000000]       .text : 0x80008000 - 0x80412000   (4136 kB)
[    0.000000]       .init : 0x80412000 - 0x80433000   ( 132 kB)
[    0.000000]       .data : 0x80434000 - 0x8045bbe0   ( 159 kB)
[    0.000000]        .bss : 0x8045bc04 - 0x8048e1b8   ( 202 kB)
[    0.000000] NR_IRQS:128
[    0.000000] >> gk init irq vic1...
[    0.000000] >> gk init irq vic2...
[    0.000000] gk init vic...
[    0.000000] mach gk init timer...
[    0.000000] sched_clock: 32 bits at 100 Hz, resolution 10000000ns, wraps every 4294967286ms
[    0.000000] Console: colour dummy device 80x30
[    0.000000] console [ttySGK0] enabled
[    0.020000] Calibrating delay loop... 597.60 BogoMIPS (lpj=2988032)
[    0.080000] pid_max: default: 32768 minimum: 301
[    0.080000] Mount-cache hash table entries: 512
[    0.090000] CPU: Testing write buffer coherency: ok
[    0.100000] Setting up static identity map for 0xc0544288 - 0xc05442c0
[    0.110000] NET: Registered protocol family 16
[    0.120000] init timer...
[    0.120000] Init HW timer for DSP communication
[    0.120000] init gpio...
[    0.130000] ###################################
[    0.130000] [BOOT VERSION] GK7102 rb-sc1045-v2.0 v2.0
[    0.140000] [NET  INT_CLK] Internal PHY clock
[    0.140000] [GPIO]#############################
[    0.150000] [GPIO] gpio map get from uboot
[    0.150000] [GPIO CFG] gpio   count = 53
[    0.160000] [GPIO CFG] intphy count = 3
[    0.160000] [GPIO CFG] extphy count = 3
[    0.170000] [GPIO CFG] IR LED CTL    (12)
[    0.170000] [GPIO CFG] IR CUT1       (44)
[    0.170000] [GPIO CFG] IR CUT2       (39)
[    0.180000] [GPIO CFG] SENSOR Reset  (27)
[    0.180000] [GPIO CFG] PHY Reset     (53)
[    0.190000] [GPIO CFG] PHY Speed Led (54)
[    0.190000] [GPIO CFG] SPI0 EN       (53)
[    0.200000] [GPIO CFG] SPI1 EN       (53)
[    0.200000] [GPIO CFG] USB HOST      (53)
[    0.210000] [GPIO CFG] SD Detect     (55)
[    0.210000] [GPIO CFG] SD Power      (55)
[    0.210000] [GPIO]#############################
[    0.220000] gpiochip_add: registered GPIOs 0 to 63 on device: gk-gpio0
[    0.230000] create proc dir
[    0.230000] gk register devices 10
[    0.240000] gk register I2C
[    0.250000] bio: create slab <bio-0> at 0
[    0.260000] spi spi.0: gk SPI Controller 0 created
[    0.260000] spi spi.0: master is unqueued, this is deprecated
[    0.270000] spi spi.1: gk SPI Controller 1 created
[    0.270000] spi spi.1: master is unqueued, this is deprecated
[    0.280000] usbcore: registered new interface driver usbfs
[    0.290000] usbcore: registered new interface driver hub
[    0.290000] usbcore: registered new device driver usb
[    0.300000] i2c regbase: 0xf3003000
[    0.300000] i2c i2c.0: i2c irq:registers 9
[    0.310000] i2c i2c.0: GK I2C[0] adapter[i2c-0] probed!
[    0.310000] i2c regbase: 0xf3004000
[    0.320000] i2c i2c.1: i2c irq:registers 58
[    0.320000] i2c i2c.1: GK I2C[1] adapter[i2c-1] probed!
[    0.340000] cfg80211: Calling CRDA to update world regulatory domain
[    0.340000] FS-Cache: Loaded
[    0.350000] CacheFiles: Loaded
[    0.360000] gk-sd gk-sd.0: Slot0 req_size=0x00010000, segs=16, seg_size=0x00010000
[    0.390000] gk-sd gk-sd.0: GK SD/MMC[0] has 1 slots @ 50181818Hz, [0x09e130b0:0x00000000]
[    0.400000] NET: Registered protocol family 2
[    0.400000] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.410000] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    0.420000] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
[    0.430000] TCP: Hash tables configured (established 2048 bind 2048)
[    0.430000] TCP: reno registered
[    0.440000] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.440000] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.450000] NET: Registered protocol family 1
[    0.460000] RPC: Registered named UNIX socket transport module.
[    0.460000] RPC: Registered udp transport module.
[    0.470000] RPC: Registered tcp transport module.
[    0.480000] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.480000] mdma init...
[    0.490000] mdma request irq: 54
[    0.500000] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.500000] NFS: Registering the id_resolver key type
[    0.510000] jffs2: version 2.2. (NAND) c 2001-2006 Red Hat, Inc.
[    0.520000] msgmni has been set to 62
[    0.530000] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.540000] io scheduler noop registered
[    0.540000] io scheduler deadline registered
[    0.550000] io scheduler cfq registered (default)
[    0.550000] uart.0: ttySGK0 at MMIO 0xa0005000 (irq = 31) is a gkuart
[    0.560000] uart.1: ttySGK1 at MMIO 0xa001f000 (irq = 15) is a gkuart
[    0.570000] uart.2: ttySGK2 at MMIO 0xa001e000 (irq = 27) is a gkuart
[    0.590000] brd: module loaded
[    0.590000] loop: module loaded
[    0.600000] adc initialized (10:11)
[    0.600000] speed_mod is 0
[    0.610000] USE 1X mode read and 1X mode write
[    0.610000] gk_flash gk_flash.0: GD25Q64C (8192 Kbytes)
[    0.620000] 5 cmdlinepart partitions found on MTD device gk_flash
[    0.620000] Creating 5 MTD partitions on "gk_flash":
[    0.630000] 0x000000000000-0x000000050000 : "U"
[    0.640000] 0x000000050000-0x0000001f0000 : "K"
[    0.640000] 0x0000001f0000-0x000000310000 : "R"
[    0.650000] 0x000000310000-0x000000590000 : "A"
[    0.660000] 0x000000590000-0x000000800000 : "H"
[    0.660000] slram: not enough parameters.
[    0.670000] GKETH_init
[    0.670000] [GKETH_drv_probe] eth_base = 0xf200e000
[    0.680000] mii id = 0
[    0.680000] ###### PHY Reset.1.0.2
[    0.800000] mdiobus_register: PHY[0] whose id 0x00000000
[    0.800000] goke MII Bus: probed
[    0.810000] gk-eth gk-eth.0: MAC Address[02:11:22:a3:a0:00].
[    0.820000] musb-hdrc: version 6.0, ?dma?, otg (peripheral+host)
[    0.820000] musb phy Begin initial sequence ...
[    1.130000] gk musb init end...
[    1.140000] dma_controller_create_non_init ok
[    1.140000] musb-hdrc musb-hdrc: MUSB HDRC host driver
[    1.150000] musb-hdrc musb-hdrc: new USB bus registered, assigned bus number 1
[    1.160000] hub 1-0:1.0: USB hub found
[    1.160000] hub 1-0:1.0: 1 port detected
[    1.160000] musb-hdrc musb-hdrc: USB Host mode controller at f0006000 using DMA, IRQ 26
[    1.170000] platform add gk musb...
[    1.180000] mousedev: PS/2 mouse device common for all mice
[    1.180000] input: GKInput as /devices/virtual/input/input0
[    1.190000] Protocol NEC[0]
[    1.190000] ir request irq: 62
[    1.200000] IR Host Controller probed!
[    1.200000] gk rtc init...
[    1.210000] rtc base: 0xf2080000
[    1.210000] os read tm: t=0
[    1.210000] gk-rtc gk-rtc: rtc core: registered gk-rtc as rtc0
[    1.220000] i2c /dev entries driver
[    1.220000] gk_wdt_v1_00: GK Watchdog Timer, (c) 2014 Goke Microelectronics
[    1.230000] [gk_wdt_init]: init
[    1.240000] [gk_wdt_probe]: probe
[    1.240000] [gk_wdt_probe]: probe mapped wdt_base=f3006000
[    1.250000] watchdog inactive, reset disabled, irq disabled
[    1.250000] IPv4 over IPv4 tunneling driver
[    1.260000] gre: GRE over IPv4 demultiplexor driver
[    1.260000] ip_gre: GRE over IPv4 tunneling driver
[    1.270000] TCP: cubic registered
[    1.280000] Initializing XFRM netlink socket
[    1.280000] NET: Registered protocol family 10
[    1.290000] IPv6 over IPv4 tunneling driver
[    1.300000] NET: Registered protocol family 17
[    1.300000] NET: Registered protocol family 15
[    1.310000] Registering the dns_resolver key type
[    1.310000] VFP support v0.3: implementor 41 architecture 1 part 20 variant b rev 5
[    1.320000] os read tm: t=0
[    1.320000] gk-rtc gk-rtc: setting system clock to 1970-01-01 00:00:00 UTC (0)
[    1.340000] VFS: Mounted root (squashfs filesystem) readonly on device 31:2.
[    1.350000] Freeing init memory: 132K
[    1.620000] usb 1-1: new high-speed USB device number 2 using musb-hdrc
can't run '/bin/hostname': No such file or directory
Starting logging: /etc/init.d/S01logging: line 24: start-stop-daemon: not found
/etc/init.d/S01logging: line 24: start-stop-daemon: not found
OK
Starting mdev...
Initializing random number generator... read-only file system detected...done
Starting network...
/etc/init.d/S40network: line 22: /sbin/ifup: not found
GOKE 7102S BOARD 20170515 START:
Press 'q' in 1 seconds to exit: ro_rootfs
[    5.250000] gpio_dev init suc
insmod: can't open '/home/drv/exfat.ko': No such file or directory
[    5.370000] exFAT: Version 1.2.9
[    6.130000] hal: module license 'Proprietary' taints kernel.
[    6.140000] Disabling lock debugging due to kernel taint
[    6.170000] crypto initialized (10:11)
Media driver version (gcc version 4.6.1 (crosstool-NG 1.18.0) (uClibc)) v2.0.0 #svn r11887 Thu Apr 27 14:04:15 CST 2017
[    6.480000]  request_irq...24 ok-- video_sync
[    6.490000]  request_irq...59 ok-- video_frame_last_pixel
[    6.490000]  request_irq...61 ok-- video_frame
GOKE ADI: R(10836) LIBC(uClibc) (gcc version 4.6.1 (crosstool-NG[    6.740000] sensor board reset...
 1.18.0) ) 2016-10-27 15:58:20
[    7.010000] detect:gc2033 at 0x6e
[    7.010000] gc2033 i2c read 0x000000f0 is 0x00000020
[    7.020000] gc2033 i2c read 0x000000f1 is 0x00000033
[    7.020000] ===================================================
[    7.030000] ================find:gc2033 at 0x6e================
[    7.040000] ===================================================
find:gc2033 at 0x6e
rm: can't remove '/tmp/sensor_hw.bin': No such file or directory
rm: can't remove '/tmp/sensor_ex.ko.lzma': No such file or directory
exec factory_tool.sh .......
ls: /mnt/*-hwcfg.ini: No such file or directory
ls: /mnt/*-VOICE.tgz: No such file or directory
ls: /mnt/*-ptz.cfg: No such file or directory
ls: /mnt/*-hardinfo.bin: No such file or directory
ls: /mnt/*-custom_init.sh: No such file or directory
umount: can't umount /mnt: Invalid argument
[    8.550000] usbcore: registered new interface driver rtl8188fu
[   10.270000] ADDRCONF(NETDEV_UP): wlan0: link is not ready
ifconfig: SIOCGIFFLAGS: No such device
[   10.310000] net eth0: ###### GKETH_start_hw
[   10.320000] net eth0: ###### GKETH_phy_start_aneg...
[   10.330000] ADDRCONF(NETDEV_UP): eth0: link is not ready
/home/start.sh: line 158: [-f: not found
listen on port 3201.
[   10.930000] initlializing ptz...
[   10.930000]
[   10.930000] Parameters of PTZ driver:
[   10.940000]  test_max_pos = 0
[   10.940000]  max_pps = 1000
[   10.940000]          pulse interval: 100/1000 = 0
[   10.950000]  xchg_dir = 2
[   10.950000]  hspd_slfck = 50
[   10.950000]  vspd_slfck = 30
[   10.960000]  hspd_normal = 50
[   10.960000]  vspd_normal = 30
[   10.960000]  hspd_reloc = 30
[   10.970000]  vspd_reloc = 10
[   10.970000]  spd_zoom = 3
[   10.970000]  hmotor_upbound = 510
[   10.980000]  vmotor_upbound = 180
[   10.980000]  zmotor_upbound = 130
[   10.980000]  no_selfck = 0
[   10.990000]  other_flags = 544
[   10.990000]  hmotor_center = 0
[   10.990000]  vmotor_center = 0
[   11.000000]          other_flags:
[   11.000000]                  0x0001  --- Return to center when power on
[   11.000000]                  0x0002  --- Z-Motor only
[   11.000000]                  0x0004  --- No self-check
[   11.000000]                  0x0008  --- Ignore position
[   11.000000]                  0x0010  --- Respect spd_slfck
[   11.000000]                  0x0020  --- No posotion-switch detection
[   11.010000]  motor pins: 46,47,42,43,40,41,37,38
[   11.010000] orig position: <255, 90, 0>
[   11.020000] GK710X gpio ptz(goke timer) device driver[2018.12.14] initialized.
rsyscall_suc
/home/start.sh: line 218: can't create /sys/class/net/ra0/mtu: nonexistent directory
【APP START】:
========v2 pthread statck size 131072===
eye+ wait. av[0] id[0] testMode[0]



===============================
  ver: 3.4.1.0114
===============================



========v2 pthread statck size 65536===
========v2 pthread statck size 65536===
0: Watchdog started... feed interval 15 seconds.
Watchdog wd_setTimeOut [15] complete.
gk ic type 1[0- 7102S; 1-7102]
gpio15, 4 parts, pinmux reg[0x0]:[0x0], effectValue[1]
gpio53, 4 parts, pinmux reg[0x0]:[0x0], effectValue[0]
gpio33, 4 parts, pinmux reg[0x0]:[0x0], effectValue[0]
gpio12, 4 parts, pinmux reg[0x0]:[0x0], effectValue[1]
gpio44, 4 parts, pinmux reg[0x0]:[0x0], effectValue[1]
gpio39, 4 parts, pinmux reg[0x0]:[0x0], effectValue[1]
ptz/tty, protocol:0, port:0, bps:2400
ptz/tty, protocol:1, port:0, bps:2400
[HW] max_pps : -1
[HW] max_pps : 1000
[HW] xchg_dir : -1
[HW] xchg_dir : 2
[HW] other_flags : -1
[HW] other_flags : 544
[HW] hmotor_upbound : -1
[HW] hmotor_upbound : 510
[HW] vmotor_upbound : -1
[HW] vmotor_upbound : 180
[HW] hspd_normal : -1
[HW] hspd_normal : 50
[HW] vspd_normal : -1
[HW] vspd_normal : 30
[HW] hspd_slfck : -1
[HW] hspd_slfck : 50
[HW] vspd_slfck : -1
[HW] vspd_slfck : 30
[HW] hspd_reloc : -1
[HW] hspd_reloc : -1
[HW] vspd_reloc : -1
[HW] vspd_reloc : -1
---------open /tmp/sc2135 failed
---------open /tmp/sc2235 failed
---------open /tmp/sc1235 failed
---------open /tmp/ar0130 failed
---------open /tmp/sc1145 failed
---------open /tmp/jxh42 failed
---------open /tmp/sc1135 failed
---------open /tmp/jxh62 failed
---------open /tmp/f22 failed
---------open /tmp/f23 failed
---------open /tmp/gc1034 failed
---------open /tmp/gc2033 ok
######Get Hardware Info: model:CloudCam,  firmware-ident:eyeplus_ipc_gk_005
GPIO: RedLed[-1], BlueLed[15], BoardReset[53] ptzSupport[1], LocalImageAuto[2400] promptVoice[1]...
GPIO open success. GIO fd = 8
ERROR: gpio = -1 return !
ERROR: gpio = -1 return !
ERROR: gpio = -1 return !
ERROR: gpio = -1 return !
ERROR: gpio = -1 return !
ERROR: gpio = -1 return !
ERROR: gpio = -1 return !
reset sensor ######
silent_reboot_time = 4516
---------open /home/reboot.time failed
sys init finished.
Can't ope[   13.860000] net eth0: ###### GKETH_phy_stop
n parameter file /home/devParam.dat on flash, er[   13.870000] net eth0: ###### GKETH_start_hw
rno=0x2.



----------------[   13.880000] net eth0: ###### GKETH_phy_start_aneg...
-1080p encode pa[   13.890000] device eth0 entered promiscuous mode
ram init fps = 1[   13.890000] ADDRCONF(NETDEV_UP): eth0: link is not ready
2---------------


---------open /home/cls.conf failed
??到?海外版本
support all id, langauge check from platform, not from VOICE file.
open /etc/passwd file errno=30GET EYE SER: AJWL190329101XTQPIV4BJJZ4M008160
linktest(eth0) = 0
init eth0...
init wlan0...
NET INTERFACE is wlan0
avEncInit start, sensorMode = 21
GOKE ADI: R(12529) LIBC(uClibc) (gcc version 4.6.1 (crosstool-NG 1.18.0) ) 2017-08-09 16:00:24
[PRI] firmware version:6080.
Image library version (gcc version 4.6.1 (crosstool-NG 1.18.0) (uClibc)) v2.0.0 #svn r11883 Thu Apr 27 10:01:52 CST 2017
[   14.590000] ===================================================
[   14.600000] =====gc2033 drv create at 20161117 ver:20170210====
[   14.600000] ===================================================
[   14.610000] [sensor_get_dev_id 276]find sensor id: 00002033
[   14.630000] sensor board reset...
===========================gadi_venc_map_dsp call======================
got sensor size: 1920x1080
viParams:
resoluMode=0x991e021c, frameRate=25, mirrorMode={0,0}

stream_formats:
streamId encodeType channelId flipRotate width height xOffset yOffset fps keepAspRat
       0          1         0          0  1920   1080       0       0  12 0
       1          1         1          0   640    360       0       0  12 0
       2          0         2          0   320    180       0       0  12 0
       3          2         1          0   640    360       0       0   3 0

h264Conf:
streamId brcMode cbrAvgBps gopM gopModel gopN idrInterval profile reEncMode vbrMaxbps vbrMinbps
       0       1    400000    1        0   80           1       0         1    384000     80000
       1       1    130000    1        0   80           1       0         1    200000     60000
       2       1    200000    1        0   50           1       0         1    400000    100000
       3       1    200000    1        0   50           1       0         1    400000    100000

chanParams:
chan1Type=1, chan1Width=1920, chan1Height=1080
chan2Type=1, chan2Width=640, chan2Height=360
chan3Type=0, chan3Width=320, chan3Height=180
chan4Type=0, chan4Width=0, chan4Height=0
got sensor size: 1920x1080
[   15.920000] sensor board reset...
[   16.190000] hhl add: gain_index=0
[   16.190000] hhl add: gain: 0x0  0x1  0x0
[   16.200000] hhl add: gain_index=53
[   16.200000] hhl add: gain: 0x2  0x1  0x0
[   16.210000] win_height:0 win_width:0
[   16.210000] win_height:0 win_width:0
eye+ wait. av[0] id[1] testMode[0]
############################## venc_isp_start##########################
[   17.530000] hhl add: gain_index=0
[   17.540000] hhl add: gain: 0x0  0x1  0x0
start stream[0]
=======================================
[GK]DE-MBLK 4x4 basing on 1/16 orig pic version: v2.1.0
=======================================
             total         used         free       shared      buffers
Mem:         31908        18464        13444            0          576
-/+ buffers:              17888        14020
Swap:            0            0            0
/bin/sh: -l: not found
Auto login as root ...
GK710XS login: start stream[1]
start stream[3]
eye+ wait. av[0] id[1] testMode[0]
VENC INIT OK!
/etc/sensors/gc2033.bin/etc/sensors/gc2033.binbin file name :gc2033
size is 168348
[Loading] sensor bin:gc2033.bin

Handle next connect...
gk_md_start
audio frame size: 160
_audio_ao_start 333792
gadi_audio_ao_set_volume 0xb9
----------------soundDetectInit: sensitivity[98]
========v2 pthread statck size 65536===
no SD card, do not init record buffer.
IsStorageReady() = 0, p_devcfg_param->recordMode=0
[FUN]pda_thread [LINE]1771  face detection init ok
getMainStreamVideoSize: w 1920 h 1080 [res = 0xa]
#####GOKE_change_bpsfps bpsType = 0 bps = 768 fps = 12 keyFrmae = 60(not use now), quant = 2
sensorType2Name, type=21
------------------venc_video_set_qp--------------
qpMaxOnI[35], qpMaxOnP[42], qpMinOnI[29], qpMinOnP[33]
#####GOKE_change_bpsfps bpsType = 0 bps = 256 fps = 12 keyFrmae = 60(not use now), quant = 2
sensorType2Name, type=21
------------------venc_video_set_qp--------------
qpMaxOnI[35], qpMaxOnP[42], qpMinOnI[29], qpMinOnP[33]
========v2 pthread statck size 65536===
========v2 pthread statck size 65536===
========v2 pthread statck size 65536===
========v2 pthread statck size 65536===
--------------SONG TOOL INIT------------
========v2 pthread statck size 65536===
========v2 pthread statck size 65536===
========v2 pthread statck size 65536===
========v2 pthread statck size 65536===
========v2 pthread statck size 65536===
---------open /home/reboot.time failed
stat check system time!!!!!!
CTP Server Started at  8001
setsockopt IP_ADD_MEMBERSHIP: No such device
no hswl board, exit hswl_task!
get_ipaddr ioctl error and errno=99 interface_name = wlan0
---------ip got, start onvif-----------
------------uuid is 1df2e14e-1dd2-11b2-8323-304a268b71db and mac = 304a268b71db
-------------------eye+ init---------------
vendor.moduleid: eyeplus_ipc_gk_005
=============CreateDevicePtz OK =============
ctp_proc_live_video, mt=1
---------open /opt/upgrading failed
getMainStreamVideoSize: w 1920 h 1080 [res = 0xa]
getMainStreamVideoSize: w 1920 h 1080 [res = 0xa]
getMainStreamVideoSize: w 1920 h 1080 [res = 0xa]
getMainStreamVideoSize: w 1920 h 1080 [res = 0xa]
CreateDevicePlayback
Thu Jan  1 08:00:19 CST 1970
eye+ sdk version: 10823
----------->GetDeviceId buf AJWL190329101XTQPIV4BJJZ4M008160
--------------DevSystem_GetMacAddr MAC: 304a268b71db
[p2pwrapper] [08:00:20] [1996067616] LogOn SVN Info[@000]
[   22.110000] net eth0: ###### GKETH_phy_stop
stat GatherWifiSetting++++++++++++++++++++++++++++


 GatherWifiSetting.........
========v2 pthread statck size 131072===
========v2 pthread statck size 65536===
start get vi frame
GetDefaultConfig, get DeviceType: {"gateway":"Off"}
APModePlay = Yes
TransmitStatistics = No
LiveCtrl = Yes
APModePlay = Yes
APModePlay = Yes
gk_isp_daynight sensorModel 32774 isday = 1
getVideoStandard : 0
[gk_isp_daynight]gadi_venc_set_framerate:streamid:0,fps:12
[gk_isp_daynight]gadi_venc_set_framerate:streamid:1,fps:12
gk_isp_daynight: set day mode
----------------->sensorModel == GADI_ISP_SENSOR_GC2033, turn to day!
sensorType2Name, type=21
try section isp_gc2033_day...
try section isp_day...
#####IR CUT in Day Mode.
[   23.600000] hhl add: gain_index=0
[   23.600000] hhl add: gain: 0x0  0x1  0x0
AudioEncode = G711A
inlanPlay = Yes
[OnStatus]--------status: 0x101
[OnStatus]--------device have no account!
gk_isp_daynight sensorModel 32774 isday = 0
getVideoStandard : 0
[gk_isp_daynight]gadi_venc_set_framerate:streamid:0,fps:8
[[   24.560000] hhl add: gain_index=0
gk_isp_daynight][   24.560000] hhl add: gain: 0x0  0x1  0x0
gadi_venc_set_framerate:streamid:1,fps:8
gk_isp_daynight: set night mode
----------------->sensorModel == GADI_ISP_SENSOR_GC2033, turn to night!
sensorType2Name, type=21
try section isp_gc2033_night...
try section isp_night...
random: Trying to read entropy from /dev/random
Configuration file: /tmp/hostapd.conf
drv->ifindex=6
l2_sock_recv==l2_sock_xmit=0x0x1f80570
BSS count 1, BSSID mask 00:00:00:00:00:00 (0 bits)
Allowed channel: mode=1 chan=1 freq=2412 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=2 freq=2417 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=3 freq=2422 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=4 freq=2427 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=5 freq=2432 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=6 freq=2437 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=7 freq=2442 MHz max_tx_power=0 dBm
Allowed channel: mode[   25.410000] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
=1 chan=8 freq=2447 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=9 freq=2452 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=10 freq=2457 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=11 freq=2462 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=12 freq=2467 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=13 freq=2472 MHz max_tx_power=0 dBm
Allowed channel: mode=1 chan=14 freq=2484 MHz max_tx_power=0 dBm
Allowed channel: mode=0 chan=1 freq=2412 MHz max_tx_power=0 dBm
Allowed channel: mode=0 chan=2 freq=2417 MHz max_tx_power=0 dBm
Allowed channel: mode=0 chan=3 freq=2422 MHz max_tx_power=0 dBm
Allowed channel: mode=0 chan=4 freq=2427 MHz max_tx_power=0 dBm
Allowed channel: mode=0 chan=5 freq=2432 MHz max_tx_power=0 dBm
Allowed channel: mode=0 chan=6 freq=2437 MHz max_tx_power=0 dBm
Allowed channel: mode=0 chan=7 freq=2442 MHz max_tx_power=0 dBm
Allowed channel: mode=0 chan=8 freq=2447 MHz max_tx_power=0 dBm
Allowed channel: mode=0 chan=9 freq=2452 MHz max_tx_power=0 dBm
Allowed channel: mode=0 chan=10 freq=2457 MHz max_tx_power=0 dBm
Allowed channel: mode=0 chan=11 freq=2462 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=36 freq=5180 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=40 freq=5200 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=44 freq=5220 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=48 freq=5240 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=52 freq=5260 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=56 freq=5280 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=60 freq=5300 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=64 freq=5320 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=100 freq=5500 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=104 freq=5520 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=108 freq=5540 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=112 freq=5560 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=116 freq=5580 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=120 freq=5600 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=124 freq=5620 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=128 freq=5640 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=132 freq=5660 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=136 freq=5680 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=140 freq=5700 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=149 freq=5745 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=153 freq=5765 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=157 freq=5785 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=161 freq=5805 MHz max_tx_power=0 dBm
Allowed channel: mode=2 chan=165 freq=5825 MHz max_tx_power=0 dBm
Completing interface initialization
Mode: IEEE 802.11g  Channel: 4  Frequency: 2427 MHz
RATE[0] rate=10 flags=0x1
RATE[1] rate=20 flags=0x1
RATE[2] rate=55 flags=0x1
RATE[3] rate=110 flags=0x1
RATE[4] rate=60 flags=0x0
RATE[5] rate=90 flags=0x0
RATE[6] rate=120 flags=0x0
RATE[7] rate=180 flags=0x0
RATE[8] rate=240 flags=0x0
RATE[9] rate=360 flags=0x0
RATE[10] rate=480 flags=0x0
RATE[11] rate=540 flags=0x0
Flushing old station entries
Deauthenticate all stations
+rtl871x_sta_deauth_ops, ff:ff:ff:ff:ff:ff is deauth, reason=2
rtl871x_set_key_ops
rtl871x_set_key_ops
rtl871x_set_key_ops
rtl871x_set_key_ops
Using interface wlan0 with hwaddr 30:4a:26:8b:71:db and ssid 'CLOUDCAM_304a268b71db'
Using existing control interface directory.
rtl871x_set_beacon_ops
rtl871x_set_hidden_ssid ignore_broadcast_ssid:0, CLOUDCAM_304a268b71db,21
rtl871x_set_acl
wlan0: Setup of interface done.
wifi ap CLOUDCAM_304a268b71db started ...
cur 473, total:1608, max!
=============>DevVideo_GetSize called
getMainStreamVideoSize: w 1920 h 1080 [res = 0xa]
killall: dhcpd: no process killed
/home/ap/start-ap.sh: line 12: dhcpd: not found
SoftAPThread terminated.
#####IR CUT in Night Mode.
audio coding is PCM!
------playSound /tmp/VOICE/Please_configure_camera_by_AP_hotspot_or_scanning_code.wav
playHiAudioFile start /tmp/VOICE/Please_configure_camera_by_AP_hotspot_or_scanning_code.wav..

Comments (1)

  1. Linda Melson

    goodreads.com/user/show/177488397-editsiz-serverler twitch.tv/editsizserverler behance.net/editsizserverl instapaper.com/p/14184805 coub.com/metin2-pvpserverler myanimelist.net/profile/editsizserverler worldcosplay.net/member/1754620 onmogul.com/editsiz-serverler metin2pvpserverler.hashnode.dev/metin2-pvp-serverler gaiaonline.com/profiles/editsizserverler/46656672/ leetcode.com/editsizserverler/ coolors.co/u/editsiz_serverler unsplash.com/@editsizserverler metin2-pvp-serverler.jimdosite.com/ zazzle.com/mbr/238039878416461152 brownbook.net/business/52637466/metin2-pvp-serverler community.tubebuddy.com/index.php?members/205346/#about reedsy.com/discovery/user/editsizserverler hackerearth.com/@editsizserverlerorg wakelet.com/wake/7OIcdWsbjqXHh82vRa9ZZ peatix.com/user/21877725/view penzu.com/public/eef09aac2dcbfc71 experiment.com/users/eeditsizserverler pearltrees.com/editsizserverler wefunder.com/editsizserverler imageevent.com/editsizserverler ourclass.mn.co/members/23696284 friendtalk.mn.co/members/23696354 slides.com/editsizserverler roosterteeth.com/g/user/EditsizServerler/activity opencollective.com/editsiz-serverler pastelink.net/erd7vohi fairygodboss.com/users/profile/48WIpe-gxe/editsizserverler codingame.com/profile/e076eaf315403d3ed090624d8cdccc234708506 jigsawplanet.com/editsizserverler?viewas=3d85ff6a3ee9 jsfiddle.net/editsizserverler/x0sorwL5/6/ jsfiddle.net/editsizserverler/x0sorwL5/7/ jsfiddle.net/editsizserverler/x0sorwL5/8/ jsfiddle.net/editsizserverler/x0sorwL5/9/ jsfiddle.net/editsizserverler/x0sorwL5/10/ jsfiddle.net/editsizserverler/x0sorwL5/11/ jsfiddle.net/editsizserverler/x0sorwL5/12/ jsfiddle.net/editsizserverler/x0sorwL5/13/ jsfiddle.net/editsizserverler/x0sorwL5/14/ jsfiddle.net/editsizserverler/x0sorwL5/15/ jsfiddle.net/editsizserverler/x0sorwL5/16/ jsfiddle.net/editsizserverler/x0sorwL5/17/ jsfiddle.net/editsizserverler/x0sorwL5/18/ jsfiddle.net/editsizserverler/x0sorwL5/19/ jsfiddle.net/editsizserverler/x0sorwL5/20/ jsfiddle.net/editsizserverler/x0sorwL5/21/ jsfiddle.net/editsizserverler/x0sorwL5/22/ jsfiddle.net/editsizserverler/x0sorwL5/23/ jsfiddle.net/editsizserverler/x0sorwL5/24/ jsfiddle.net/editsizserverler/x0sorwL5/25/ jsfiddle.net/editsizserverler/x0sorwL5/26/ jsfiddle.net/editsizserverler/x0sorwL5/27/ jsfiddle.net/editsizserverler/x0sorwL5/28/ jsfiddle.net/editsizserverler/x0sorwL5/29/ jsfiddle.net/editsizserverler/x0sorwL5/30/ jsfiddle.net/editsizserverler/x0sorwL5/31/ jsfiddle.net/editsizserverler/x0sorwL5/32/ jsfiddle.net/editsizserverler/x0sorwL5/33/ jsfiddle.net/editsizserverler/x0sorwL5/34/ jsfiddle.net/editsizserverler/x0sorwL5/35/ jsfiddle.net/editsizserverler/x0sorwL5/36/ jsfiddle.net/editsizserverler/x0sorwL5/37/ jsfiddle.net/editsizserverler/x0sorwL5/38/ jsfiddle.net/editsizserverler/x0sorwL5/39/ jsfiddle.net/editsizserverler/x0sorwL5/40/ jsfiddle.net/editsizserverler/x0sorwL5/41/ jsfiddle.net/editsizserverler/x0sorwL5/42/ jsfiddle.net/editsizserverler/x0sorwL5/43/ jsfiddle.net/editsizserverler/x0sorwL5/44/ jsfiddle.net/editsizserverler/x0sorwL5/45/ jsfiddle.net/editsizserverler/x0sorwL5/46/ jsfiddle.net/editsizserverler/x0sorwL5/47/ jsfiddle.net/editsizserverler/x0sorwL5/48/ jsfiddle.net/editsizserverler/x0sorwL5/49/ jsfiddle.net/editsizserverler/x0sorwL5/50/ jsfiddle.net/editsizserverler/x0sorwL5/51/ jsfiddle.net/editsizserverler/x0sorwL5/52/ jsfiddle.net/editsizserverler/x0sorwL5/53/ jsfiddle.net/editsizserverler/x0sorwL5/54/ jsfiddle.net/editsizserverler/x0sorwL5/55/ jsfiddle.net/editsizserverler/x0sorwL5/56/ jsfiddle.net/editsizserverler/x0sorwL5/57/ jsfiddle.net/editsizserverler/x0sorwL5/58/ jsfiddle.net/editsizserverler/x0sorwL5/59/ jsfiddle.net/editsizserverler/x0sorwL5/60/ jsfiddle.net/editsizserverler/x0sorwL5/61/ jsfiddle.net/editsizserverler/x0sorwL5/62/ jsfiddle.net/editsizserverler/x0sorwL5/63/ jsfiddle.net/editsizserverler/x0sorwL5/64/ jsfiddle.net/editsizserverler/x0sorwL5/65/ jsfiddle.net/editsizserverler/x0sorwL5/66/ jsfiddle.net/editsizserverler/x0sorwL5/67/ jsfiddle.net/editsizserverler/x0sorwL5/68/ jsfiddle.net/editsizserverler/x0sorwL5/69/ jsfiddle.net/editsizserverler/x0sorwL5/70/ jsfiddle.net/editsizserverler/x0sorwL5/71/ jsfiddle.net/editsizserverler/x0sorwL5/72/ jsfiddle.net/editsizserverler/x0sorwL5/73/ jsfiddle.net/editsizserverler/x0sorwL5/74/ jsfiddle.net/editsizserverler/x0sorwL5/75/ jsfiddle.net/editsizserverler/x0sorwL5/76/ jsfiddle.net/editsizserverler/x0sorwL5/77/ jsfiddle.net/editsizserverler/x0sorwL5/78/ jsfiddle.net/editsizserverler/x0sorwL5/79/ jsfiddle.net/editsizserverler/x0sorwL5/80/ jsfiddle.net/editsizserverler/x0sorwL5/81/ jsfiddle.net/editsizserverler/x0sorwL5/82/ jsfiddle.net/editsizserverler/x0sorwL5/83/ jsfiddle.net/editsizserverler/x0sorwL5/84/ jsfiddle.net/editsizserverler/x0sorwL5/85/ jsfiddle.net/editsizserverler/x0sorwL5/86/ jsfiddle.net/editsizserverler/x0sorwL5/87/ jsfiddle.net/editsizserverler/x0sorwL5/88/ jsfiddle.net/editsizserverler/x0sorwL5/89/ jsfiddle.net/editsizserverler/x0sorwL5/90/ jsfiddle.net/editsizserverler/x0sorwL5/91/ jsfiddle.net/editsizserverler/x0sorwL5/92/ jsfiddle.net/editsizserverler/x0sorwL5/93/ jsfiddle.net/editsizserverler/x0sorwL5/94/ jsfiddle.net/editsizserverler/x0sorwL5/95/ jsfiddle.net/editsizserverler/x0sorwL5/96/ jsfiddle.net/editsizserverler/x0sorwL5/97/ jsfiddle.net/editsizserverler/x0sorwL5/98/ jsfiddle.net/editsizserverler/x0sorwL5/99/ jsfiddle.net/editsizserverler/x0sorwL5/100/ intensedebate.com/people/johnhenry2233 pxhere.com/en/photographer-me/4238660 longisland.com/profile/editsizserverler/ metin2-pvp-serverler.webflow.io/ anyflip.com/homepage/gwyra/preview pinshape.com/users/4109032-editsizserverlerorg allmyfaves.com/editsizserverler pexels.com/tr-tr/@editsiz-serverler-1225707393/ slideserve.com/editsizserverler archive.org/details/@editsizserverler divephotoguide.com/user/editsizserverler/ metal-archives.com/users/editsizserverler band.us/band/94702101 camp-fire.jp/profile/editsizserverler subscribe.ru/author/31420877 my.desktopnexus.com/blogamca/journal/metin2-pvp-serverler-49878/ replit.com/@editsizserverle fliphtml5.com/tr/homepage/pspuy/editsizserverlerorg/ free-ebooks.net/profile/1562629/editsiz-serverler qooh.me/editsizsrvl pubhtml5.com/homepage/exapj/ zzb.bz/Ib8s8 australian-school-holidays.mn.co/members/23780373 metin2pvpserverler.gallery.ru/ justpaste.it/eoa85 profile.hatena.ne.jp/editsizserverler/ indiegogo.com/individuals/37682987 taz.de/ list.ly/editsizserverlerorg/lists mypaper.pchome.com.tw/tomasvanek/post/1381781942 mypaper.pchome.com.tw/tomasvanek/post/1381781943 metin2pvpserverler.mystrikingly.com/ ted.com/profiles/46748800 play.eslgaming.com/player/20056929/ metin2pvpserverler.threadless.com/about knowyourmeme.com/users/editsiz-serverler active.popsugar.com/@editsizserverler/profile sitetanitimlari.seesaa.net/article/503120781.html sitetanitimlari.seesaa.net/article/502999078.html sitetanitimlari.seesaa.net/article/502585593.html sitetanitimlari.seesaa.net/article/502585551.html sitetanitimlari.seesaa.net/article/502585519.html sitetanitimlari.seesaa.net/article/502585492.html sitetanitimlari.seesaa.net/article/502585455.html sitetanitimlari.seesaa.net/article/498056830.html filmizle2018.blog.fc2.com/blog-entry-21.html filmizle2018.blog.fc2.com/blog-entry-26.html filmizle2018.blog.fc2.com/blog-entry-31.html ameblo.jp/sitetanitimlari/entry-12787859138.html connect.garmin.com/modern/profile/97fe48da-7177-4ae0-bf0e-34fbe1334538 reddit.com/user/uflee/ agario.buzzsprout.com/2066066/14949093-metin2 linkedin.com/posts/okeyoyna_metin2-ejderhalar-merhaba-metin2-oyununa-activity-7171861395326582784-UlrI/ linkedin.com/pulse/metin2-pvp-serverler-listeleri-okey-oyna-jyhpf/ blogger.com/profile/15166393869257970818 draft.blogger.com/profile/15166393869257970818 instagram.com/realokey/ blogger.com/profile/05227574979353865473 draft.blogger.com/profile/05227574979353865473 tumblr.com/onlineokey twitter.com/mt2org twitch.tv/okeyoynaa pinterest.com/a99io/ google.com/url?q=https://www.okeyoyna.com vimeo.com/846733433 wordpress.com/tr/forums/topic/metin2-pvp-tanirim-scpriti/ dailymotion.com/video/x8e47pq gravatar.com/realokey grepo.travelcarma.com/okeyoyna/okey-oyna beatstars.com/zaferozkel okeyoyunu.mystrikingly.com/ gamblingtherapy.org/user/okeyoyna public.tableau.com/app/profile/okey.oyna/vizzes okeyoyna.amebaownd.com/posts/53051499 wefunder.com/okey sovren.media/u/okeyoyna/ lazi.vn/user/okeyoyna gravatar.com/realokey soundcloud.com/okey-oyna okey-oyna.webflow.io/ guides.co/g/okey-oyna/372469 flickr.com/people/200607646@N08/ my.desktopnexus.com/realokey giantbomb.com/profile/okeyoyna/ giantbomb.com/profile/okeyoyna/blog/ encinitas.bubblelife.com/community/okey_oyna sites.bubblelife.com/users/okeyoynacom_a31336 fanart-central.net/user/okeyoyna/profile klse.i3investor.com/web/cube/blog/okeyoyna globalcatalog.com/okeyoyna.tr articlesjust4you.com/members/okeyoyna/ issuu.com/realokey audiomack.com/okeyoynacom/song/dj-okey-oyna-dii-kartal audiomack.com/okeyoynacom gitlab.nic.cz/okeyoyna ameblo.jp/okeyoyna/entry-12849563639.html ameblo.jp/okeyoyna/ profile.ameba.jp/ameba/okeyoyna nintendo-master.com/profil/okeyoyna band.us/band/94698085 pastelink.net/192agg8x pastelink.net/sxqkqqcx pastelink.net/do4ziud7 pastelink.net/9ebiqvd9 pastelink.net/urv9w3xn agario.buzzsprout.com/2066066/14949093-metin2 reverbnation.com/okeyoynacom disqus.com/by/efehanzkel/about/ hub.docker.com/u/okeyoyna tinhte.vn/members/okey-oyna.3017475/ openhumans.net/member/okeyoyna/ research.openhumans.org/member/okeyoyna/ openhumans.com/member/okeyoyna/ portfolium.com/okeyoyna anobii.com/en/0152c9fb8c9e13a07a/profile/activity gitlab.ifam.edu.br/okeyoyna peatix.com/group/16198815 peatix.com/user/21949084/view rapidapi.com/okeyoynacom/api/demo-project85460/details zillow.com/profile/okeyoynacom/ pinterest.com/a99io/ pinterest.ph/a99io/ pinterest.com/a99io/ pinterest.com.mx/a99io/ pinterest.it/a99io/ pinterest.fr/a99io/ pinterest.ca/a99io/ pinterest.jp/a99io/ pinterest.co.uk/a99io/ pinterest.de/a99io/ pinterest.es/a99io/ se.pinterest.com/a99io/ tr.pinterest.com/a99io/ ru.pinterest.com/a99io/ id.pinterest.com/a99io/ cs.pinterest.com/a99io/ es.pinterest.com/a99io/ pl.pinterest.com/a99io/ pt.pinterest.com/a99io/ br.pinterest.com/a99io/ co.pinterest.com/a99io/ nl.pinterest.com/a99io/ se.pinterest.com/a99io/ at.pinterest.com/a99io/ dk.pinterest.com/a99io/ in.pinterest.com/a99io/ ro.pinterest.com/a99io/ sk.pinterest.com/a99io/ fi.pinterest.com/a99io/ ar.pinterest.com/a99io/ freelance.habr.com/freelancers/okeyoyna 500px.com/p/okeyoyna?view=photos

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.