Comtrend STB-7007 backup memoria flash (V)

Llegados a este punto, con información sobre el hardware y el software. Seria importante realizar un backup de la memoria flash por lo que pueda pasar, sobretodo si vamos a tocar cosas y encontrar el problema que luego no arranca el sistema.

Para realizar la copia, utilizaremos el comando dd y conectaremos un pendrive en el USB.

Con el comando cat /proc/mtd nos informa que el sistema tiene un total de 18 particiones.

[root@stb:/] # cat /proc/mtd 
dev:    size   erasesize  name
mtd0: 00080000 00010000 "CFE"
mtd1: 00020000 00010000 "CFE config"
mtd2: 00320000 00010000 "reserved"
mtd3: 00020000 00010000 "secure storage"
mtd4: 0001f800 00010000 "MAC address"
mtd5: 00000800 00010000 "hdcp"
mtd6: 00800000 00020000 "Kernel"
mtd7: 00c00000 00020000 "/usr"
mtd8: 01000000 00020000 "/usr/local"
mtd9: 02000000 00020000 "/usr/lib/MediaBrowser"
mtd10: 02000000 00020000 "/usr/lib/MediaServer"
mtd11: 00800000 00020000 "Kernel (alt)"
mtd12: 00c00000 00020000 "/usr (alt)"
mtd13: 01000000 00020000 "/usr/local (alt)"
mtd14: 02000000 00020000 "/usr/lib/MediaBrowser (alt)"
mtd15: 02000000 00020000 "/usr/lib/MediaServer (alt)"
mtd16: 00400000 00020000 "Splash"
mtd17: 32e00000 00020000 "/rw/yaffs"
[root@stb:/] #

Durante el proceso de arranque se crean 6 particiones (mtd0 a mtd5) que corresponden con la memoria NOR Flash Spansion S29GL032A.

Creating 6 MTD partitions on "Broadcom 9xxxx mapped flash":
0x0000000000000000-0x0000000000080000 : "CFE"
0x0000000000080000-0x00000000000a0000 : "CFE config"
0x00000000000a0000-0x00000000003c0000 : "reserved"
0x00000000003c0000-0x00000000003e0000 : "secure storage"
0x00000000003e0000-0x00000000003ff800 : "MAC address"
mtd: partition "MAC address" doesn't end on an erase block -- force read-only
0x00000000003ff800-0x0000000000400000 : "hdcp

Mapa de particiones NOR Flash

 * +----------------------------------+
 * |       Mapa de particiones        |
 * |                                  |
 * +-0x00000000-----------------------+
 * |            bootloader   CFE      | 512 kb
 * +-0x00080000-----------------------+
 * |            CFE config            | 128 kb
 * +-0x000a0000-----------------------+
 * |            reserve               | 3.2 Mb
 * +-0x003c0000-----------------------+
 * |            secure storage        | 128 kb
 * +-0x003e0000-----------------------+
 * |            MAC address           | 126 kb
 * +-0x003ff800-----------------------+
 * |            hdcp                  | 2 kb
 * +-0x00400000-----------------------+

Las otras 12 particiones (mtd6 a mtd17) corresponden a la memoria NAND Flash Samsung K9K8G08U0A.

Creating 12 MTD partitions on "bcm7xxx-nand.0":
0x0000000006400000-0x0000000006c00000 : "Kernel"
0x0000000006c00000-0x0000000007800000 : "/usr"
0x0000000007800000-0x0000000008800000 : "/usr/local"
0x0000000008800000-0x000000000a800000 : "/usr/lib/MediaBrowser"
0x000000000a800000-0x000000000c800000 : "/usr/lib/MediaServer"
0x0000000000000000-0x0000000000800000 : "Kernel (alt)"
0x0000000000800000-0x0000000001400000 : "/usr (alt)"
0x0000000001400000-0x0000000002400000 : "/usr/local (alt)"
0x0000000002400000-0x0000000004400000 : "/usr/lib/MediaBrowser (alt)"
0x0000000004400000-0x0000000006400000 : "/usr/lib/MediaServer (alt)"
0x000000000c800000-0x000000000cc00000 : "Splash"
0x000000000cc00000-0x000000003fa00000 : "/rw/yaffs"

Mapa de particiones NAND Flash

 * +----------------------------------------+
 * |       Mapa de particiones              |
 * |                                        |
 * +-0x00000000-----------------------------+
 * |            Kernel (alt)                | 8 Mb
 * +-0x00800000-----------------------------+
 * |            /usr (alt)                  | 12 Mb
 * +-0x01400000-----------------------------+
 * |            /usr/local (alt)            | 16 Mb
 * +-0x02400000-----------------------------+
 * |            /usr/lib/MediaBrowser (alt) | 32 Mb
 * +-0x04400000-----------------------------+
 * |            /usr/lib/MediaServer (alt)  | 32 Mb
 * +-0x06400000-----------------------------+
 * |            Kernel                      | 8 Mb
 * +-0x06c00000-----------------------------+
 * |            /usr                        | 12 Mb
 * +-0x07800000-----------------------------+
 * |            /usr/local                  | 16 Mb
 * +-0x08800000-----------------------------+
 * |            /usr/lib/MediaBrowser       | 32 Mb
 * +-0x0a800000-----------------------------+
 * |            /usr/lib/MediaServer        | 32 Mb
 * +-0x0c800000-----------------------------+
 * |            Splash                      | 4 Mb
 * +-0x0cc00000-----------------------------+
 * |            /rw/yaffs                   | 833 Mb
 * +-0x3fa00000-----------------------------+

Una vez analizada la estructura de la memoria flash, procederemos a realizar el backup.
EL primer paso sera encender el equipo y dejar que finalice el proceso de arranque completo, después conectaremos el pendrive al usb.

Ahora desde la consola, se crea la carpeta donde se montará el usb y se comprueba que este montado correctamente. En mi caso la carpeta la he creado en /tmp/usb.

[root@stb:/] # mkdir /tmp/usb
[root@stb:/] # mount /dev/sda1 /tmp/usb
[root@stb:/] # df -h
Filesystem                Size      Used Available Use% Mounted on
/dev/romblock7            3.3M      3.3M         0 100% /usr
/dev/romblock8           12.3M     12.3M         0 100% /usr/local
/dev/romblock9           11.3M     11.3M         0 100% /usr/lib/MediaBrowser
/dev/romblock10           1.0M      1.0M         0 100% /usr/lib/MediaServer
/dev/mtdblock17         814.0M      2.3M    811.7M   0% /rw
tmpfs                    32.0M     20.0k     32.0M   0% /tmp
/dev/sda1                 7.4G      3.6G      3.9G  48% /tmp/usb
[root@stb:/] # 

Copia de seguridad de la memoria NOR Flash.

[root@stb:/] # dd if=/dev/mtd0 of=/tmp/usb/cfe.bin
1024+0 records in
1024+0 records out
[root@stb:/] # dd if=/dev/mtd1 of=/tmp/usb/cfe_config.bin
256+0 records in
256+0 records out
[root@stb:/] # dd if=/dev/mtd2 of=/tmp/usb/reserve       
6400+0 records in
6400+0 records out
[root@stb:/] # dd if=/dev/mtd3 of=/tmp/usb/secure_storage
256+0 records in
256+0 records out
[root@stb:/] # dd if=/dev/mtd4 of=/tmp/usb/MAC_address   
252+0 records in
252+0 records out
[root@stb:/] # dd if=/dev/mtd5 of=/tmp/usb/hdcp       
4+0 records in
4+0 records out
[root@stb:/] #

Copia de seguridad de la memoria NAND Flash.

[root@stb:/] # dd if=/dev/mtd6 of=/tmp/usb/kernel
16384+0 records in
16384+0 records out
[root@stb:/] # dd if=/dev/mtd7 of=/tmp/usb/usr
24576+0 records in
24576+0 records out
[root@stb:/] # dd if=/dev/mtd8 of=/tmp/usb/usr_local
32768+0 records in
32768+0 records out
[root@stb:/] # dd if=/dev/mtd9 of=/tmp/usb/u_l_mb
65536+0 records in
65536+0 records out
[root@stb:/] # dd if=/dev/mtd10 of=/tmp/usb/u_l_ms
65536+0 records in
65536+0 records out
[root@stb:/] # dd if=/dev/mtd11 of=/tmp/usb/kernelalt
16384+0 records in
16384+0 records out
[root@stb:/] # dd if=/dev/mtd12 of=/tmp/usb/usr_alt
24576+0 records in
24576+0 records out
[root@stb:/] # dd if=/dev/mtd13 of=/tmp/usb/usr_lo_al
32768+0 records in
32768+0 records out
[root@stb:/] # dd if=/dev/mtd14 of=/tmp/usb/u_l_mb_alt
65536+0 records in
65536+0 records out
[root@stb:/] # dd if=/dev/mtd15 of=/tmp/usb/u_l_ms_alt
65536+0 records in
65536+0 records out
[root@stb:/] # dd if=/dev/mtd16 of=/tmp/usb/splash
8192+0 records in
8192+0 records out
[root@stb:/] # dd if=/dev/mtd17 of=/tmp/usb/yaffs
1667072+0 records in
1667072+0 records out

Ahora ya tenemos nuestra copia completada, recomiendo tener dos copias del backup, una sin tocar "original" y la otra para análisis, modificaciones, etc. Un buen lugar puede ser el disco duro o la nube personal.

Estos son los enlaces a mi copia.

mtd0: ["CFE"] 512KB
mtd1: ["CFE config"] 128KB
mtd2: ["reserved"] 3.1MB
mtd3: ["secure storage"] 128KB
mtd4: ["MAC address"] 126KB
mtd5: ["hdcp"] 2KB
mtd6: ["Kernel"] 8MB
mtd7: ["/usr"] 12MB
mtd8: ["/usr/local"] 16MB
mtd9: ["/usr/lib/MediaBrowser"] 32MB
mtd10 ["/usr/lib/MediaServer"] 32MB
mtd11 ["Kernel (alt)"] 8MB
mtd12 ["/usr (alt)"] 12MB
mtd13 ["/usr/local (alt)"] 16MB
mtd14 ["/usr/lib/MediaBrowser (alt)"] 32MB
mtd15 ["/usr/lib/MediaServer (alt)"] 32MB
mtd16 ["Splash"] 4MB
mtd17 ["/rw/yaffs"] 833MB

Comtrend STB-7007 Linux OS 2.6.18-7.1 y shell BusyBox v1.12.4 (IV)

Una vez finalizado el arranque, si presionamos Ctrl+C aparecera el shell de Linux.
Caught signal SIGINT (2, "Inte

[root@stb:/] # 
[root@stb:/] #

Acceder a la shell y listado de utilidades de BusyBox
[root@stb:/] # sh
/ # busybox 
BusyBox v1.12.4 (2010-11-15 09:44:53 CET) multi-call binary
Copyright (C) 1998-2008 Erik Andersen, Rob Landley, Denys Vlasenko
and others. Licensed under GPLv2.
See source distribution for full notice.

Usage: busybox [function] [arguments]...
   or: function [arguments]...

        BusyBox is a multi-call binary that combines many common Unix
        utilities into a single executable.  Most people will create a
        link to busybox for each function they wish to use and BusyBox
        will act like whatever it was invoked as!

Currently defined functions:
        [, [[, ash, awk, basename, bunzip2, bzcat, cat, chgrp, chmod, chown,
        clear, cp, cpio, cut, date, dd, df, dirname, dmesg, du, echo, egrep,
        env, expr, false, fdisk, fgrep, find, fold, fsck, getty, grep,
        gunzip, gzip, halt, head, hexdump, hostid, hostname, hwclock, id,
        ifconfig, ifdown, ifup, inetd, init, insmod, kill, killall, killall5,
        klogd, length, less, linuxrc, ln, logger, login, logname, ls, lsmod,
        mdev, mesg, mkdir, mkfifo, mknod, mktemp, modprobe, more, mount,
        mv, netstat, nice, nohup, nslookup, od, ping, poweroff, printenv,
        printf, ps, pwd, rdev, realpath, reboot, reset, rm, rmdir, rmmod,
        route, rtcwake, script, sed, sh, sleep, stty, sync, syslogd, tail,
        tar, tee, telnet, telnetd, test, tftp, tftpd, top, touch, tr, traceroute,
        true, tty, udhcpc, umount, uname, uniq, usleep, vi, watch, wc,
        wget, which, whoami, zcat, zcip

/ #

Listado de directorios de la ubicación actual. # ls
[root@stb:/] # ls
bin      etc      lib      opt      rw       sys      var
boot     home     linuxrc  proc     sbin     tmp
dev      init     mnt      root     share    usr
[root@stb:/] # 

Información acerca del sistema de archivo. # df
[root@stb:/] # df -h   
Filesystem                Size      Used Available Use% Mounted on
/dev/romblock7            3.3M      3.3M         0 100% /usr
/dev/romblock8           14.8M     14.8M         0 100% /usr/local
/dev/romblock9            9.9M      9.9M         0 100% /usr/lib/MediaBrowser
/dev/romblock10           1.0M      1.0M         0 100% /usr/lib/MediaServer
/dev/mtdblock17         814.0M      2.3M    811.7M   0% /rw
tmpfs                    32.0M     24.0k     32.0M   0% /tmp
[root@stb:/] #

Información del sistema. # ls /proc/
[root@stb:/] # ls /proc/
1            20           359          devices      loadavg      swaps
10           21           364          diskstats    locks        sys
11           22           4            driver       meminfo      sysvipc
12           23           5            execdomains  misc         tty
13           24           6            filesystems  modules      uptime
132          25           7            fs           mounts       version
14           26           8            interrupts   mtd          vmstat
15           27           9            iomem        net          yaffs
16           28           bcmdriver    ioports      partitions   zoneinfo
17           29           buddyinfo    irq          scsi
18           3            bus          kallsyms     self
19           313          cmdline      kcore        slabinfo
2            314          cpuinfo      kmsg         stat
[root@stb:/] #

Mediante algunos comandos de BusyBox, podemos obtener información sobre la CPU, memoria, dispositivos, etc.

Información acerca del procesador, tipo, modelo, etc. # cat /proc/cpuinfo
[root@stb:/] # cat /proc/cpuinfo
system type             : BCM97xxx Settop Platform
build target            : unknown
processor               : 0
cpu model               : BMIPS4380 V4.4  FPU V0.1
cpu MHz                 : 402.43
BogoMIPS                : 402.43    ( udelay_val : 201216  HZ = 1000 )
wait instruction        : yes
microsecond timers      : yes
tlb_entries             : 32
extra interrupt vector  : yes
hardware watchpoint     : no
ASEs implemented        : mips16
VCED exceptions         : not available
VCEI exceptions         : not available
RAC setting             : Unknown
unaligned access        : 7
rdhwr/brdhwr traps      : 0 / 0
process migrations      : 290
processor               : 1
cpu model               : BMIPS4380 V4.4  FPU V0.1
cpu MHz                 : 404.48
BogoMIPS                : 404.48    ( udelay_val : 202240  HZ = 1000 )
wait instruction        : yes
microsecond timers      : yes
tlb_entries             : 32
extra interrupt vector  : yes
hardware watchpoint     : no
ASEs implemented        : mips16
VCED exceptions         : not available
VCEI exceptions         : not available
RAC setting             : Unknown
[root@stb:/] #

Información sobre la memoria física. # cat /proc/meminfo
[root@stb:/] # cat /proc/meminfo 
MemTotal:       122488 kB
MemFree:         59528 kB
Buffers:         13300 kB
Cached:          36880 kB
SwapCached:          0 kB
Active:          21296 kB
Inactive:        29184 kB
HighTotal:           0 kB
HighFree:            0 kB
LowTotal:       122488 kB
LowFree:         59528 kB
SwapTotal:           0 kB
SwapFree:            0 kB
Dirty:               0 kB
Writeback:           0 kB
AnonPages:         276 kB
Mapped:            504 kB
Slab:             8352 kB
PageTables:         48 kB
NFS_Unstable:        0 kB
Bounce:              0 kB
CommitLimit:     91864 kB
Committed_AS:     1156 kB
VmallocTotal:   786424 kB
VmallocUsed:      3212 kB
VmallocChunk:   781648 kB
[root@stb:/] #

Información sobre el mapa actual de memoria. # cat /proc/iomem
[root@stb:/] # cat /proc/iomem 
00000000-0fffffff : System RAM
  00001000-0031544f : Kernel code
  00315450-003bf4ff : Kernel data
10480300-104803a8 : brcm-ehci0-IO
  10480300-104803a8 : ehci_hcd
10480400-1048046f : brcm-ohci0-IO
  10480400-1048046f : ohci_hcd
10480500-104805a8 : brcm-ehci1-IO
  10480500-104805a8 : ehci_hcd
10480600-1048066f : brcm-ohci1-IO
  10480600-1048066f : ohci_hcd
10510000-1051ffff : sata pci memory space
  10510000-10517fff : 0000:01:00.0
    10510000-10517fff : sata_svw
b0002800-b00028c0 : brcmnand-base
d0000000-efffffff : ext pci memory space
  d0000000-d0003fff : 0000:00:04.0
[root@stb:/] #

Información sobre los dispositivos configurados. # cat /proc/devices
[root@stb:/] # cat /proc/devices
Character devices:
  1 mem
  4 ttyS
  5 /dev/tty
  5 /dev/console
  5 /dev/ptmx
 10 misc
 13 input
 21 sg
 30 brcm
 90 mtd
128 ptm
136 pts
180 usb
189 usb_device

Block devices:
  7 loop
  8 sd
 11 sr
 31 mtdblock
 65 sd
 66 sd
 67 sd
 68 sd
 69 sd
 70 sd
 71 sd
128 sd
129 sd
130 sd
131 sd
132 sd
133 sd
134 sd
135 sd
253 romblock
[root@stb:/] #

Información sobre los sistemas de ficheros montados. # cat /proc/mounts
[root@stb:/] # cat /proc/mounts 
rootfs / rootfs rw 0 0
none /proc proc rw 0 0
none /sys sysfs rw 0 0
none /dev/pts devpts rw 0 0
none /proc/bus/usb usbfs rw 0 0
/dev/romblock7 /usr squashfs ro 0 0
/dev/romblock8 /usr/local squashfs ro 0 0
/dev/romblock9 /usr/lib/MediaBrowser squashfs ro 0 0
/dev/romblock10 /usr/lib/MediaServer squashfs ro 0 0
/dev/mtdblock17 /rw yaffs rw 0 0
tmpfs /tmp tmpfs rw 0 0
[root@stb:/] #

Información sobre las particiones en la memoria flash y sus puntos de montaje. # cat /proc/mtd
[root@stb:/] # cat /proc/mtd 
dev:    size   erasesize  name
mtd0: 00080000 00010000 "CFE"
mtd1: 00020000 00010000 "CFE config"
mtd2: 00320000 00010000 "reserved"
mtd3: 00020000 00010000 "secure storage"
mtd4: 0001f800 00010000 "MAC address"
mtd5: 00000800 00010000 "hdcp"
mtd6: 00800000 00020000 "Kernel"
mtd7: 00c00000 00020000 "/usr"
mtd8: 01000000 00020000 "/usr/local"
mtd9: 02000000 00020000 "/usr/lib/MediaBrowser"
mtd10: 02000000 00020000 "/usr/lib/MediaServer"
mtd11: 00800000 00020000 "Kernel (alt)"
mtd12: 00c00000 00020000 "/usr (alt)"
mtd13: 01000000 00020000 "/usr/local (alt)"
mtd14: 02000000 00020000 "/usr/lib/MediaBrowser (alt)"
mtd15: 02000000 00020000 "/usr/lib/MediaServer (alt)"
mtd16: 00400000 00020000 "Splash"
mtd17: 32e00000 00020000 "/rw/yaffs"
[root@stb:/] #

Listado de las particiones y su tamaño. # cat /proc/partitions
[root@stb:/] # cat /proc/partitions 
major minor  #blocks  name

  31     0        512 mtdblock0
  31     1        128 mtdblock1
  31     2       3200 mtdblock2
  31     3        128 mtdblock3
  31     4        126 mtdblock4
  31     5          2 mtdblock5
  31     6       8192 mtdblock6
  31     7      12288 mtdblock7
  31     8      16384 mtdblock8
  31     9      32768 mtdblock9
  31    10      32768 mtdblock10
  31    11       8192 mtdblock11
  31    12      12288 mtdblock12
  31    13      16384 mtdblock13
  31    14      32768 mtdblock14
  31    15      32768 mtdblock15
  31    16       4096 mtdblock16
  31    17     833536 mtdblock17
 253     0        512 romblock0
 253     1        128 romblock1
 253     2       3200 romblock2
 253     3        128 romblock3
 253     4        126 romblock4
 253     5          2 romblock5
 253     6       8192 romblock6
 253     7      12288 romblock7
 253     8      16384 romblock8
 253     9      32768 romblock9
 253    10      32768 romblock10
 253    11       8192 romblock11
 253    12      12288 romblock12
 253    13      16384 romblock13
 253    14      32768 romblock14
 253    15      32768 romblock15
 253    16       4096 romblock16
 253    17     833536 romblock17
[root@stb:/] #

Sigue leyendo Parte V

Comtrend STB-7007 Conectando con la UART (III)

Para determinar la velocidad de comunicación entre el ordenador y la UART, podemos ir cambiando la velocidad de forma manual en la aplicación utilizada.

También se puede optar por utilizar esta aplicación llamada baurate, mediante los cursores se incrementa o decrementa la velocidad de comunicación, es posible que no se actualice el terminal o aparezcan caracteres extraños, en esos casos quiere decir que la velocidad no es la adecuada.

Una vez detectada la velocidad correcta, automáticamente nos permitiría grabar la configuración de minicom.

La configuración correcta para poder comunicar el reproductor y el ordenador debe quedar así:

Velocidad: 115200

Bits de datos: 8

Paridad: ninguna

Bits de parada: 1

Control de flujo: no


COM: en mi caso utilizo un conversor de USB a RS232 /dev/ttyUSB0

La aplicación utilizada para las comunicaciones entre el reproductor y ordenador es minicom, pero se puede utilizar cualquier otra.

Desde un terminal lanzamos minicom.

minicom

Encendemos el reproductor y comienza a arrancar.

Se puede observar que el bootloader es el CFE de Broadcom y lleva un kernel Linux.

BCM97413B1 CFE v2.24, CFE core v2.12, Endian Mode: Little
Build Date: Mon Jul 26 19:27:11 BST 2010 (bob@turmoil)
Copyright (C) Broadcom Corporation.
Linux version 2.6.18-7.1 (josemi@avantasiadev) (gcc version 4.2.0 20070124 (prerelease) - BRCM 10ts-20080721) #13 SMP Tue Nov 23 09:26:18 CET 2010
El código fuente del kernel y el de las diferentes utilidades no esta disponible para su descarga, o por lo menos no lo he sabido encontrar en las diferentes webs de Movistar, Investrónica (Inves) o el propio Comtrend, en su zona GPL. Boot log completo.
SCfC

BCM97413B1 CFE v2.24, CFE core v2.12, Endian Mode: Little
Build Date: Mon Jul 26 19:27:11 BST 2010 (bob@turmoil)
Copyright (C) Broadcom Corporation.

Enabling NAND flash at CS1, NOR flash at CS0
NAND Flash size = 1024MB
DDR Freq:      396MHz
CPU speed:     405MHz
Memory Config: 64-bit UMA
Device Tech:   1Gb
Total memory:  512MB
Boot Device:   NOR
Total flash:   4MB

Initializing USB.
USB: Locating Class 09 Vendor 0000 Product 0000: USB Hub

CFE initialized.

Warning: No user interface in this CFE build!

Starting splash screen.
***************************************************
Found splash image - Width = 720 Height = 576
***************************************************

Loader:elf Filesys:raw Dev:nandflash0.system1 File: Options:bootimage=1
Loading: 0x80001000/3626420 0x80378000/2562180 0x805e9884/182160 Entry address is 0x803c0000
TP1 Entry Address at 0x80000ffc = 803c0000
Starting program at 0x803c0000

<5>Linux version 2.6.18-7.1 (josemi@avantasiadev) (gcc version 4.2.0 20070124 (prerelease) - BRCM 10ts-20080721) #13 SMP Tue Nov 23 09:26:18 CET 2010
Fetching vars from bootloader... OK (E,D,B,C)
Detected 512 MB on MEMC0 (strap 0x23460010)
Board strapped at 512 MB, default is 256 MB
CFE EnvVar: SPLASH_PART_STARTAD: 0c800000, SPLASH_PART_SIZE: 00400000
Default command line = 
root=/dev/sda1 rw console=ttyS0,115200n8
g_board_RAM_size=512MB
Options: sata=1 enet=1 emac_1=1 no_mdio=0 docsis=0 ebi_war=0 pci=1 smp=1
CPU revision is: 0002a044
FPU revision is: 00130001
Primary instruction cache 32kB, physically tagged, 2-way, linesize 64 bytes.
Primary data cache 64kB, 4-way, linesize 64 bytes.
<6>Synthesized TLB refill handler (23 instructions).
<6>Synthesized TLB load handler fastpath (37 instructions).
<6>Synthesized TLB store handler fastpath (37 instructions).
<6>Synthesized TLB modify handler fastpath (36 instructions).
Determined physical RAM map:
 memory: 10000000 @ 00000000 (usable)
Using 128MB for memory, overwrite by passing mem=xx
User-defined physical RAM map:
node [00000000, 08000000: RAM]
node [08000000, 08000000: RSVD]
<5>Reserving 128 MB upper memory starting at 08000000
<7>On node 0 totalpages: 65536
<7>  DMA zone: 65536 pages, LIFO batch:15
<7>On node 1 totalpages: 65536
<7>  Normal zone: 65536 pages, LIFO batch:15
Built 2 zonelists.  Total pages: 131072
<5>Kernel command line: bootimage=1 root=/dev/sda1 rw console=ttyS0,115200n8
PID hash table entries: 4096 (order: 12, 16384 bytes)
Found MIPS counter frequency: 203 Mhz
Using 202.501 MHz high precision timer.
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Memory: 120192k/262144k available (3153k kernel code, 141880k reserved, 680k data, 2216k init, 0k highmem)
Mount-cache hash table entries: 512
Checking for 'wait' instruction...  available.
plat_prepare_cpus: ENABLING 2nd Thread...
TP0: prom_boot_secondary: Kick off 2nd CPU...
CPU revision is: 0002a044
FPU revision is: 00130001
Primary instruction cache 32kB, physically tagged, 2-way, linesize 64 bytes.
Primary data cache 64kB, 4-way, linesize 64 bytes.
Synthesized TLB refill handler (23 instructions).
Brought up 2 CPUs
migration_cost=1000
NET: Registered protocol family 16
PCI->SDRAM window size: 512MB
SCSI subsystem initialized
usbcore: registered new driver usbfs
usbcore: registered new driver hub
PCI: found device 14e4:432c on PCI bus, slot 4 (irq 35)
PCI: found device 14e4:8602 on SATA bus, slot 0 (irq 42)
NET: Registered protocol family 2
IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
TCP established hash table entries: 16384 (order: 5, 131072 bytes)
TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
TCP: Hash tables configured (established 16384 bind 8192)
TCP reno registered
brcm-pm: disabling power to USB block
brcm-pm: disabling power to ENET block
brcm-pm: disabling power to SATA block
squashfs: version 3.2-r2 (2007/01/15) Phillip Lougher
NTFS driver 2.1.27 [Flags: R/O].
JFFS2 version 2.2. (NAND) (SUMMARY)  (C) 2001-2006 Red Hat, Inc.
io scheduler noop registered
io scheduler anticipatory registered (default)
io scheduler deadline registered
io scheduler cfq registered
Serial: 8250/16550 driver $Revision: 1.90 $ 3 ports, IRQ sharing disabled
serial8250: ttyS0 at MMIO 0x0 (irq = 22) is a 16550A
serial8250: ttyS1 at MMIO 0x0 (irq = 66) is a 16550A
serial8250: ttyS2 at MMIO 0x0 (irq = 67) is a 16550A
loop: loaded (max 8 devices)
brcm-pm: enabling power to ENET block
Broadcom BCM7413 P21 Ethernet Network Device v2.0 Nov 15 2010 10:23:10
Config Internal PHY Through MDIO: Auto-negotiation timed-out
: 10 MB Half-Duplex (assumed)
bcmemac: no PHY detected on EMAC_1, disabling
brcm-pm: enabling power to SATA block
PCI: Enabling device 0000:01:00.0 (0000 -> 0003)
ata1: SATA max UDMA/133 cmd 0xB0510000 ctl 0xB0510020 bmdma 0xB0510030 irq 42
ata2: SATA max UDMA/133 cmd 0xB0510100 ctl 0xB0510120 bmdma 0xB0510130 irq 42
scsi0 : sata_svw
ata1: SATA link down (SStatus 4 SControl 300)
ATA: abnormal status 0x7F on port 0xb051001c
scsi1 : sata_svw
ata2: SATA link down (SStatus 4 SControl 300)
ATA: abnormal status 0x7F on port 0xb051011c
BCM97XXX flash device: 0x04000000 @ 0x1c000000
Broadcom 9xxxx mapped flash: Found 1 x16 devices at 0x0 in 16-bit bank
 Amd/Fujitsu Extended Query Table at 0x0040
number of CFI chips: 1
cfi_cmdset_0002: Disabling erase-suspend-program due to code brokenness.
Creating 6 MTD partitions on "Broadcom 9xxxx mapped flash":
0x0000000000000000-0x0000000000080000 : "CFE"
0x0000000000080000-0x00000000000a0000 : "CFE config"
0x00000000000a0000-0x00000000003c0000 : "reserved"
0x00000000003c0000-0x00000000003e0000 : "secure storage"
0x00000000003e0000-0x00000000003ff800 : "MAC address"
mtd: partition "MAC address" doesn't end on an erase block -- force read-only
0x00000000003ff800-0x0000000000400000 : "hdcp"
mtd: partition "hdcp" doesn't start on an erase block boundary -- force read-only
usbmon: debugfs is not available
ehci_hcd_brcm_init: Initializing 2 EHCI controller(s)
brcm-pm: enabling power to USB block
10 Dec 2004 USB 2.0 'Enhanced' Host Controller (EHCI) Driver (EHCI-brcm-0)
drivers/usb/host/ehci-brcm.c: starting brcm EHCI USB Controller
 - USB h/w setup mode 
 - USB power enable set for active LOW mode
brcm-ehci brcm-ehci.0: BRCM EHCI
brcm-ehci brcm-ehci.0: new USB bus registered, assigned bus number 1
brcm-ehci brcm-ehci.0: irq 62, io mem 0x10480300
brcm-ehci brcm-ehci.0: USB 0.0 started, EHCI 1.00, driver 10 Dec 2004
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
10 Dec 2004 USB 2.0 'Enhanced' Host Controller (EHCI) Driver (EHCI-brcm-1)
drivers/usb/host/ehci-brcm.c: starting brcm EHCI USB Controller
brcm-ehci-1 brcm-ehci-1.1: BRCM EHCI
brcm-ehci-1 brcm-ehci-1.1: new USB bus registered, assigned bus number 2
brcm-ehci-1 brcm-ehci-1.1: irq 57, io mem 0x10480500
brcm-ehci-1 brcm-ehci-1.1: USB 0.0 started, EHCI 1.00, driver 10 Dec 2004
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
ohci_hcd_brcm_init: Initializing 2 OHCI controller(s)
2005 April 22 USB 1.1 'Open' Host Controller (OHCI) Driver (OHCI-brcm-0)
drivers/usb/host/ohci-brcm.c: starting brcm OHCI USB Controller
 - Resetting at b0480408
<-- -="" 00000fc6="" 0x10480400="" 0x10480600="" 1.1="" 1024mb="" 17="" 1="" 2005="" 2216k="" 22="" 2="" 3-0:1.0:="" 3="" 4-0:1.0:="" 4="" 5363444f="" 63="" 64="" acc="d7ff1010," acc_control="d7ff1010" adjusted:="" after:="" after="" all="" april="" asix="" assigned="" at="" b0480608="" b4:="" b4="" base="0x" based="" bbt_erase_shift="17," bic="" blocksize="128K," bootimage="1" brcm-1="" brcm-ohci-0.0:="" brcm-ohci-0="" brcm-ohci-1.1:="" brcm-ohci-1="" brcm="" brcm_start_hc="" brcmnand="" brcmnand_probe:="" brcmnand_scan:="" broadcom="" bus="" buswidth="1," cdc_ether="" cfg="18152300," chip="" chip_shift="30," chipselect="1" chipsize="1024MB," choice="" chosen="" common="" config:="" configuration="" configure_hotplug="" configure_vm="" console="ttyS0,115200n8" controller="" core="" cs1:="" cs="" d3="" d7ff1010="" detected="" dev_id="ecd35195" device="" driver...="" driver="" drivers="" ec="" ecclevel="15" egasus="" erase_shift="11" etc="" ethernet="" family="" flash:="" flash="" flashid="ecd35195," for="" found="" freed="" freeing="" from="" hid-core.c:="" hid="" host="" hub="" i="1," ii="" init.d="" initializing="" input="" io="" irq="" k9k8g08u0a="" kernel="" mass="" mb="" mdev="" mem="" memory:="" mfg="" mice:="" mice="" mouse="" mtd-="" nand:="" nand="" nand_select="50000000" nandconfig="18152300" nanddrv="" nandselect="50000000," net1080="" net:="" net="" new="" not="" number="" ohci-brcm.c:="" ohci="" on="" page_mask="000007ff" page_shift="11," pagesize="2048B," pegasus:="" pegasus="" pen="" phys_erase_shift="17" ports="" protocol="" ps="" pseudo_filesystems="" rcmnand="" reg="18152300," registered.="" registered="" resetting="" root="/dev/sda1" rtl8150.c:="" rtl8150="" rw="" samsung="" select="" size="" slc="" start:="" starting="" stb="" storage="" support="" tcp="" tim1="5363444f," tim2="00000fc6" timing1="" timing2="" unused="" usable="" usb-ethernet="" usb-storage="" usb3:="" usb4:="" usb="" usbcore:="" usbhid="" v0.6.13="" v0.6.2="" v2.6:usb="" version="3.2" zaurus="">oobsize=64, mtd->eccOobSize=16
brcmnand_scan:  mtd->oobsize=64
brcmnand_scan: oobavail=50, eccsize=512, writesize=2048
brcmnand_scan, eccsize=512, writesize=2048, eccsteps=4, ecclevel=15, eccbytes=3
brcmnand_default_bbt: bbt_td = bbt_main_descr
brcmnandCET: Status -> Deferred
Creating 12 MTD partitions on "bcm7xxx-nand.0":
0x0000000006400000-0x0000000006c00000 : "Kernel"
0x0000000006c00000-0x0000000007800000 : "/usr"
0x0000000007800000-0x0000000008800000 : "/usr/local"
0x0000000008800000-0x000000000a800000 : "/usr/lib/MediaBrowser"
0x000000000a800000-0x000000000c800000 : "/usr/lib/MediaServer"
0x0000000000000000-0x0000000000800000 : "Kernel (alt)"
0x0000000000800000-0x0000000001400000 : "/usr (alt)"
0x0000000001400000-0x0000000002400000 : "/usr/local (alt)"
0x0000000002400000-0x0000000004400000 : "/usr/lib/MediaBrowser (alt)"
0x0000000004400000-0x0000000006400000 : "/usr/lib/MediaServer (alt)"
0x000000000c800000-0x000000000cc00000 : "Splash"
0x000000000cc00000-0x000000003fa00000 : "/rw/yaffs"
Start: /etc/init.d/S05filesystems
Start: /etc/init.d/S10modules
bcmdriver: module license 'Proprietary' taints kernel.
BCMDRV: Initializing bcmdriver version $ 17 $
BCMDRV: Total intc words=3,Total Irqs=97
BCMDRV: Global Interrupt Mask 0:0xD3DF7FFF,1:0x1CBF95F3,2:0x00000008,3:0x00000000
BCMDRV: Initialization complete...
Start: /etc/init.d/S11bcm4322
PCI: Enabling device 0000:00:04.0 (0000 -> 0002)
wlan0: Broadcom BCM432c 802.11 Wireless Controller 5.14.58.7
Start: /etc/init.d/S19network_interfaces
Start: /etc/init.d/S30flash
yaffs Nov 15 2010 09:32:38 Installing. 
yaffs: dev is 32505873 name is "mtdblock17"
yaffs: Attempting MTD mount on 31.17, "mtdblock17"
yaffs: auto selecting yaffs2
block 803 is bad
block 3013 is bad
Start: /etc/init.d/S90misc_initialisation
Start: /etc/init.d/S98server
Start: /etc/init.d/S99browser
Oregan Media Browser - v1.0.4 rev.1 beta Build: 64910 Nov 30 2010 12:01:51 starting
LOG: Using CET-1CEST TIME ZONE
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.DeviceSummary is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.DeviceSummary is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.DeviceInfo.Manufacturer is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.DeviceInfo.Manufacturer is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.DeviceInfo.ManufacturerOUI is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.DeviceInfo.ManufacturerOUI is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.DeviceInfo.ModelName is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.DeviceInfo.ModelName is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.DeviceInfo.Description is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.DeviceInfo.Description is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.DeviceInfo.ProductClass is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.DeviceInfo.ProductClass is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.DeviceInfo.SerialNumber is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.DeviceInfo.SerialNumber is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.DeviceInfo.HardwareVersion is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.DeviceInfo.HardwareVersion is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.DeviceInfo.SoftwareVersion is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.DeviceInfo.SoftwareVersion is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.DeviceInfo.DeviceStatus is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.DeviceInfo.DeviceStatus is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.DeviceInfo.UpTime is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.DeviceInfo.UpTime is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.URL is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.URL is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.Username is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.Username is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.Password is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.Password is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.PeriodicInformEnable is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.PeriodicInformEnable is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.PeriodicInformInterval is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.PeriodicInformInterval is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.PeriodicInformTime is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.PeriodicInformTime is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.ParameterKey is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.ParameterKey is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.ConnectionRequestURL is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.ConnectionRequestURL is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.ConnectionRequestUsername is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.ConnectionRequestUsername is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.ConnectionRequestPassword is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.ConnectionRequestPassword is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.UpgradesManaged is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.UpgradesManaged is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.UDPConnectionRequestAddress is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.UDPConnectionRequestAddressNotificationLimit is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.UDPConnectionRequestAddressNotificationLimit is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.STUNEnable is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.STUNEnable is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.STUNServerAddress is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.STUNServerAddress is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.STUNServerPort is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.STUNServerPort is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.STUNUsername is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.STUNUsername is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.STUNPassword is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.STUNPassword is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.STUNMaximumKeepAlivePeriod is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.STUNMaximumKeepAlivePeriod is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.STUNMinimumKeepAlivePeriod is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.STUNMinimumKeepAlivePeriod is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.ManagementServer.NATDetected is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.ManagementServer.NATDetected is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.GatewayInfo.ManufacturerOUI is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.GatewayInfo.ManufacturerOUI is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.GatewayInfo.ProductClass is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.GatewayInfo.ProductClass is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.GatewayInfo.SerialNumber is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.GatewayInfo.SerialNumber is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.AddressingType is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.AddressingType is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.IPAddress is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.IPAddress is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.SubnetMask is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.SubnetMask is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.DefaultGateway is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.DefaultGateway is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.DNSServers is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.DNSServers is not in passive notification list
LOG: hTR069Object->pcObjectName [Device.LAN.MACAddress] is persistent hTR069Object->pcConfigOptionName [TR069_Device__LAN__MACAddress]
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.MACAddress is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.MACAddress is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.Stats.ConnectionUpTime is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.Stats.ConnectionUpTime is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.Stats.TotalBytesSent is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.Stats.TotalBytesSent is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.Stats.TotalBytesReceived is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.Stats.TotalBytesReceived is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.Stats.TotalPacketsSent is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.Stats.TotalPacketsSent is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.Stats.TotalPacketsReceived is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.Stats.TotalPacketsReceived is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.X_TELEFONICA-ES_WLAN_Client.WLANList is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.X_TELEFONICA-ES_WLAN_Client.WLANList is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.X_TELEFONICA-ES_WLAN_Client.Connected is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.X_TELEFONICA-ES_WLAN_Client.Connected is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.X_TELEFONICA-ES_WLAN_Client.SSID is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.X_TELEFONICA-ES_WLAN_Client.SSID is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.X_TELEFONICA-ES_WLAN_Client.EncryptionType is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.X_TELEFONICA-ES_WLAN_Client.EncryptionType is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.X_TELEFONICA-ES_WLAN_Client.Key is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.X_TELEFONICA-ES_WLAN_Client.Key is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.LAN.X_TELEFONICA-ES_WLAN_Client.Channel is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.LAN.X_TELEFONICA-ES_WLAN_Client.Channel is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBServiceNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBServiceNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.MaxActiveAVStreams is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.MaxActiveAVStreams is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.MaxActiveAVPlayers is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.MaxActiveAVPlayers is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.FrontEnd.IP.StreamingControlProtocols is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.FrontEnd.IP.StreamingControlProtocols is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.FrontEnd.IP.StreamingTransportProtocols is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.FrontEnd.IP.StreamingTransportProtocols is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.FrontEnd.IP.StreamingTransportControlProtocols is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.FrontEnd.IP.StreamingTransportControlProtocols is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.FrontEnd.IP.MultiplexTypes is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.FrontEnd.IP.MultiplexTypes is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.FrontEnd.IP.MaxDejitteringBufferSize is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.FrontEnd.IP.MaxDejitteringBufferSize is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.PVR.MaxIOStreams is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.PVR.MaxIOStreams is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.PVR.MaxRecordingStreams is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.PVR.MaxRecordingStreams is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.PVR.MaxPlaybackStreams is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.PVR.MaxPlaybackStreams is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.PVR.MaxTimeDelay is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.PVR.MaxTimeDelay is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.AudioDecoder.AudioStandards is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.AudioDecoder.AudioStandards is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.VideoStandards is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.VideoStandards is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.AudioStandards is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.AudioStandards is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevelNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevelNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.1.Profile is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.1.Profile is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.1.Level is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.1.Level is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.1.MaximumDecodingCapability is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.1.MaximumDecodingCapability is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.AudioStandards is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.AudioStandards is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevelNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevelNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.1.Profile is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.1.Profile is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.1.Level is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.1.Level is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.1.MaximumDecodingCapability is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.1.MaximumDecodingCapability is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.AudioStandards is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.AudioStandards is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevelNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevelNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.1.Profile is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.1.Profile is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.1.Level is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.1.Level is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.1.MaximumDecodingCapability is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.1.MaximumDecodingCapability is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.AudioStandards is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.AudioStandards is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevelNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevelNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.1.Profile is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.1.Profile is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.1.Level is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.1.Level is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.1.MaximumDecodingCapability is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.1.MaximumDecodingCapability is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.AudioOutput.AudioFormats is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.AudioOutput.AudioFormats is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoOutput.CompositeVideoStandards is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoOutput.CompositeVideoStandards is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoOutput.VideoFormats is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoOutput.VideoFormats is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoOutput.Macrovision is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoOutput.Macrovision is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.VideoOutput.HDCP is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.VideoOutput.HDCP is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.CA.CASystems is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.CA.CASystems is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.CA.DRMSystems is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.CA.DRMSystems is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.ServiceMonitoring.MaxActiveMainStreams is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.ServiceMonitoring.MaxActiveMainStreams is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.ServiceMonitoring.MinSampleInterval is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.ServiceMonitoring.MinSampleInterval is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.ServiceMonitoring.MaxReportSamples is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.ServiceMonitoring.MaxReportSamples is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Capabilities.ServiceMonitoring.HighLevelMetricNames is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Capabilities.ServiceMonitoring.HighLevelMetricNames is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEndNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEndNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.AudioDecoderNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.AudioDecoderNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoDecoderNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoDecoderNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.AudioOutputNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.AudioOutputNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoOutputNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoOutputNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.Status is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.Status is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.Name is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.Name is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.InboundNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.InboundNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.Status is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.Status is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.MaximumNumberOfConcurrentGroups is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.MaximumNumberOfConcurrentGroups is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.ClientVersion is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.ClientVersion is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.ClientUnsolicitedReportInterval is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.ClientUnsolicitedReportInterval is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Dejittering.BufferSize is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Dejittering.BufferSize is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Dejittering.BufferInitialLevel is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Dejittering.BufferInitialLevel is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.StreamingControlProtocol is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.StreamingControlProtocol is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.StreamingTransportProtocol is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.StreamingTransportProtocol is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.StreamingTransportControlProtocol is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.StreamingTransportControlProtocol is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.MultiplexType is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.MultiplexType is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.DownloadTransportProtocol is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.DownloadTransportProtocol is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.SourceAddress is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.SourceAddress is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.SourcePort is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.SourcePort is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.DestinationAddress is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.DestinationAddress is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.DestinationPort is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.DestinationPort is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.URI is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.URI is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.Bitrate is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.Bitrate is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.FrontEnd.1.IP.ServiceConnect.URI is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.FrontEnd.1.IP.ServiceConnect.URI is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.AudioDecoder.Status is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.AudioDecoder.Status is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.AudioDecoder.Name is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.AudioDecoder.Name is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.AudioDecoder.AudioStandard is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.AudioDecoder.AudioStandard is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoDecoder.Status is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoDecoder.Status is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoDecoder.Name is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoDecoder.Name is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoDecoder.MPEG2Part2 is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoDecoder.MPEG2Part2 is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoDecoder.MPEG4Part2 is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoDecoder.MPEG4Part2 is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoDecoder.MPEG4Part10 is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoDecoder.MPEG4Part10 is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoDecoder.SMPTEVC1 is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoDecoder.SMPTEVC1 is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoDecoder.ContentAspectRatio is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoDecoder.ContentAspectRatio is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.AudioOutput.Status is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.AudioOutput.Status is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.AudioOutput.Name is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.AudioOutput.Name is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.AudioOutput.AudioFormat is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.AudioOutput.AudioFormat is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.AudioOutput.AudioLevel is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.AudioOutput.AudioLevel is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.AudioOutput.CancelMute is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.AudioOutput.CancelMute is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoOutput.Status is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoOutput.Status is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoOutput.Name is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoOutput.Name is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoOutput.CompositeVideoStandard is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoOutput.CompositeVideoStandard is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoOutput.VideoFormat is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoOutput.VideoFormat is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.Components.VideoOutput.AspectRatioBehaviour is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.Components.VideoOutput.AspectRatioBehaviour is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVStreams.AVStream.1.Status is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVStreams.AVStream.1.Status is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVStreams.AVStream.1.Name is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVStreams.AVStream.1.Name is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVStreams.AVStream.1.FrontEnd is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVStreams.AVStream.1.FrontEnd is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVStreams.AVStream.1.AudioDecoder is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVStreams.AVStream.1.AudioDecoder is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVStreams.AVStream.1.VideoDecoder is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVStreams.AVStream.1.VideoDecoder is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVStreams.AVStream.1.Inbound is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVStreams.AVStream.1.Inbound is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.ActiveAVPlayers is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.ActiveAVPlayers is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.AVPlayerNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.AVPlayerNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.PreferredAudioLanguage is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.PreferredAudioLanguage is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.PreferredSubtitlingLanguage is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.PreferredSubtitlingLanguage is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.AVPlayer.1.Status is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.AVPlayer.1.Status is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.AVPlayer.1.Name is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.AVPlayer.1.Name is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.AVPlayer.1.AudioLanguage is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.AVPlayer.1.AudioLanguage is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.AVPlayer.1.SubtitlingStatus is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.AVPlayer.1.SubtitlingStatus is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.AVPlayer.1.SubtitlingLanguage is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.AVPlayer.1.SubtitlingLanguage is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.AVPlayer.1.AudioOutputs is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.AVPlayer.1.AudioOutputs is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.AVPlayer.1.VideoOutputs is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.AVPlayer.1.VideoOutputs is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.AVPlayer.1.MainStream is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.AVPlayer.1.MainStream is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.AVPlayers.AVPlayer.1.PIPStreams is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.AVPlayers.AVPlayer.1.PIPStreams is not in passive notification list
LOG: hTR069Object->pcObjectName [Device.Services.STBService.1.ServiceMonitoring.SampleEnable] is persistent hTR069Object->pcConfigOptionName [TR069_Device__Services__STBService__1__ServiceMonitoring__SampleEnable]
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.SampleEnable is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.SampleEnable is not in passive notification list
LOG: hTR069Object->pcObjectName [Device.Services.STBService.1.ServiceMonitoring.SampleState] is persistent hTR069Object->pcConfigOptionName [TR069_Device__Services__STBService__1__ServiceMonitoring__SampleState]
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.SampleState is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.SampleState is not in passive notification list
LOG: hTR069Object->pcObjectName [Device.Services.STBService.1.ServiceMonitoring.SampleInterval] is persistent hTR069Object->pcConfigOptionName [TR069_Device__Services__STBService__1__ServiceMonitoring__SampleInterval]
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.SampleInterval is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.SampleInterval is not in passive notification list
LOG: hTR069Object->pcObjectName [Device.Services.STBService.1.ServiceMonitoring.ReportSamples] is persistent hTR069Object->pcConfigOptionName [TR069_Device__Services__STBService__1__ServiceMonitoring__ReportSamples]
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.ReportSamples is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.ReportSamples is not in passive notification list
LOG: hTR069Object->pcObjectName [Device.Services.STBService.1.ServiceMonitoring.TimeReference] is persistent hTR069Object->pcConfigOptionName [TR069_Device__Services__STBService__1__ServiceMonitoring__TimeReference]
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.TimeReference is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.TimeReference is not in passive notification list
LOG: hTR069Object->pcObjectName [Device.Services.STBService.1.ServiceMonitoring.FetchSamples] is persistent hTR069Object->pcConfigOptionName [TR069_Device__Services__STBService__1__ServiceMonitoring__FetchSamples]
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.FetchSamples is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.FetchSamples is not in passive notification list
LOG: hTR069Object->pcObjectName [Device.Services.STBService.1.ServiceMonitoring.ReportStartTime] is persistent hTR069Object->pcConfigOptionName [TR069_Device__Services__STBService__1__ServiceMonitoring__ReportStartTime]
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.ReportStartTime is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.ReportStartTime is not in passive notification list
LOG: hTR069Object->pcObjectName [Device.Services.STBService.1.ServiceMonitoring.ReportEndTime] is persistent hTR069Object->pcConfigOptionName [TR069_Device__Services__STBService__1__ServiceMonitoring__ReportEndTime]
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.ReportEndTime is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.ReportEndTime is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStreamNumberOfEntries is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStreamNumberOfEntries is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.Reset is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.Reset is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.ResetTime is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.ResetTime is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MaxBitrate is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MaxBitrate is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MinBitrate is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MinBitrate is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.AverageBitrate is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.AverageBitrate is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.DejitteringStats.Overruns is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.DejitteringStats.Overruns is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.DejitteringStats.Underruns is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.DejitteringStats.Underruns is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSPacketsReceived is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSPacketsReceived is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.PacketDiscontinuityCounter is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.PacketDiscontinuityCounter is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSPacketsDrained is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSPacketsDrained is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSSyncLossCount is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSSyncLossCount is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSSyncByteErrorCount is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSSyncByteErrorCount is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MaxBitrate is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MaxBitrate is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MinBitrate is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MinBitrate is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.AverageBitrate is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.AverageBitrate is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.DejitteringStats.Underruns is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.DejitteringStats.Underruns is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.DejitteringStats.Overruns is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.DejitteringStats.Overruns is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSPacketsReceived is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSPacketsReceived is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.PacketDiscontinuityCounter is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.PacketDiscontinuityCounter is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSPacketsDrained is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSPacketsDrained is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSSyncLossCount is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSSyncLossCount is not in passive notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2827): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSSyncByteErrorCount is not in active notification list
[root] tr69ObjectTree_CheckWhetherInPersistentObjectList(2844): Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSSyncByteErrorCount is not in passive notification list
LOG: FOUND BRANCH OBJECT: hInformObject [Device.DeviceSummary]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.DeviceInfo.Manufacturer]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.DeviceInfo.ManufacturerOUI]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.DeviceInfo.ModelName]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.DeviceInfo.Description]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.DeviceInfo.ProductClass]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.DeviceInfo.SerialNumber]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.DeviceInfo.HardwareVersion]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.DeviceInfo.SoftwareVersion]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.DeviceInfo.DeviceStatus]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.DeviceInfo.UpTime]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.URL]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.Username]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.Password]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.PeriodicInformEnable]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.PeriodicInformInterval]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.PeriodicInformTime]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.ParameterKey]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.ConnectionRequestURL]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.ConnectionRequestUsername]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.ConnectionRequestPassword]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.UpgradesManaged]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.UDPConnectionRequestAddress]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.UDPConnectionRequestAddressNotificationLimit]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.STUNEnable]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.STUNServerAddress]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.STUNServerPort]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.STUNUsername]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.STUNPassword]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.STUNMaximumKeepAlivePeriod]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.STUNMinimumKeepAlivePeriod]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.ManagementServer.NATDetected]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.GatewayInfo.ManufacturerOUI]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.GatewayInfo.ProductClass]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.GatewayInfo.SerialNumber]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.AddressingType]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.IPAddress]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.SubnetMask]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.DefaultGateway]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.DNSServers]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.MACAddress]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.Stats.ConnectionUpTime]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.Stats.TotalBytesSent]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.Stats.TotalBytesReceived]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.Stats.TotalPacketsSent]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.Stats.TotalPacketsReceived]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.X_TELEFONICA-ES_WLAN_Client.WLANList]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.X_TELEFONICA-ES_WLAN_Client.Connected]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.X_TELEFONICA-ES_WLAN_Client.SSID]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.X_TELEFONICA-ES_WLAN_Client.EncryptionType]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.X_TELEFONICA-ES_WLAN_Client.Key]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.LAN.X_TELEFONICA-ES_WLAN_Client.Channel]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBServiceNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.MaxActiveAVStreams]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.MaxActiveAVPlayers]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.FrontEnd.IP.StreamingControlProtocols]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.FrontEnd.IP.StreamingTransportProtocols]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.FrontEnd.IP.StreamingTransportControlProtocols]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.FrontEnd.IP.MultiplexTypes]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.FrontEnd.IP.MaxDejitteringBufferSize]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.PVR.MaxIOStreams]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.PVR.MaxRecordingStreams]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.PVR.MaxPlaybackStreams]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.PVR.MaxTimeDelay]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.AudioDecoder.AudioStandards]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.VideoStandards]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.AudioStandards]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevelNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.1.Profile]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.1.Level]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.1.MaximumDecodingCapability]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.AudioStandards]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevelNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.1.Profile]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.1.Level]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.1.MaximumDecodingCapability]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.AudioStandards]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevelNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.1.Profile]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.1.Level]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.1.MaximumDecodingCapability]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.AudioStandards]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevelNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.1.Profile]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.1.Level]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.1.MaximumDecodingCapability]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.AudioOutput.AudioFormats]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoOutput.CompositeVideoStandards]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoOutput.VideoFormats]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoOutput.Macrovision]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.VideoOutput.HDCP]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.CA.CASystems]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.CA.DRMSystems]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.ServiceMonitoring.MaxActiveMainStreams]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.ServiceMonitoring.MinSampleInterval]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.ServiceMonitoring.MaxReportSamples]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Capabilities.ServiceMonitoring.HighLevelMetricNames]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEndNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.AudioDecoderNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoDecoderNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.AudioOutputNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoOutputNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.Status]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.Name]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.InboundNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.Status]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.MaximumNumberOfConcurrentGroups]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.ClientVersion]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.IGMP.ClientUnsolicitedReportInterval]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Dejittering.BufferSize]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Dejittering.BufferInitialLevel]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.StreamingControlProtocol]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.StreamingTransportProtocol]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.StreamingTransportControlProtocol]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.MultiplexType]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.DownloadTransportProtocol]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.SourceAddress]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.SourcePort]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.DestinationAddress]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.DestinationPort]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.URI]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.Inbound.1.Bitrate]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.FrontEnd.1.IP.ServiceConnect.URI]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.AudioDecoder.Status]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.AudioDecoder.Name]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.AudioDecoder.AudioStandard]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoDecoder.Status]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoDecoder.Name]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoDecoder.MPEG2Part2]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoDecoder.MPEG4Part2]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoDecoder.MPEG4Part10]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoDecoder.SMPTEVC1]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoDecoder.ContentAspectRatio]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.AudioOutput.Status]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.AudioOutput.Name]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.AudioOutput.AudioFormat]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.AudioOutput.AudioLevel]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.AudioOutput.CancelMute]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoOutput.Status]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoOutput.Name]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoOutput.CompositeVideoStandard]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoOutput.VideoFormat]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.Components.VideoOutput.AspectRatioBehaviour]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVStreams.AVStream.1.Status]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVStreams.AVStream.1.Name]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVStreams.AVStream.1.FrontEnd]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVStreams.AVStream.1.AudioDecoder]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVStreams.AVStream.1.VideoDecoder]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVStreams.AVStream.1.Inbound]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.ActiveAVPlayers]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.AVPlayerNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.PreferredAudioLanguage]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.PreferredSubtitlingLanguage]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.AVPlayer.1.Status]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.AVPlayer.1.Name]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.AVPlayer.1.AudioLanguage]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.AVPlayer.1.SubtitlingStatus]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.AVPlayer.1.SubtitlingLanguage]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.AVPlayer.1.AudioOutputs]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.AVPlayer.1.VideoOutputs]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.AVPlayer.1.MainStream]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.AVPlayers.AVPlayer.1.PIPStreams]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.SampleEnable]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.SampleState]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.SampleInterval]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.ReportSamples]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.TimeReference]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.FetchSamples]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.ReportStartTime]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.ReportEndTime]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStreamNumberOfEntries]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.Reset]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.ResetTime]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MaxBitrate]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MinBitrate]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.AverageBitrate]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.DejitteringStats.Overruns]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.DejitteringStats.Underruns]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSPacketsReceived]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.PacketDiscontinuityCounter]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSPacketsDrained]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSSyncLossCount]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Total.MPEG2TSStats.TSSyncByteErrorCount]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MaxBitrate]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MinBitrate]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.AverageBitrate]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.DejitteringStats.Underruns]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.DejitteringStats.Overruns]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSPacketsReceived]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.PacketDiscontinuityCounter]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSPacketsDrained]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSSyncLossCount]
LOG: FOUND BRANCH OBJECT: hInformObject [Device.Services.STBService.1.ServiceMonitoring.MainStream.1.Sample.MPEG2TSStats.TSSyncByteErrorCount]
LOG: $HeadURL: file:///home/homeserver/Software/tags/HomeServer-3.3/System/INST/VERSION $
LOG: $WhatBCMTOP: /opt/Oregan/repository/crosstools_hf-linux-2.6.18.0_gcc-4.2-8ts_uclibc-nptl-0.9.29-20070423_20080520 $
LOG: $WhatBCMSYS: mipsel-linux $
LOG: $WhatOMBSW: /opt/Oregan/repository/BroadcomPesiDTV2200_OMB4.4.7r1_OAL1.0.4r1_SDK1.1.7r1_20090611/release $
LOG: $WhatREFSW: /opt/Oregan/repository/BroadcomPesiDTV2200_OMB4.4.7r1_OAL1.0.4r1_SDK1.1.7r1_20090611/release/Support/refsw-20090501.97405 $
LOG: $WhatEXTRA: /opt/Oregan/repository/toolextra-20090619/mips/usr/local $
LOG: $WhatTOOLS: sqlite-3.6.11 libupnp-1.6.6 zlib-1.2.3 lighttpd-1.4.22 curl-7.19.5 libxml2-2.7.3 php-5.2.9 $
LOG: Using Comtrend remote control
LOG: Key repetition DISABLED
LOG: Keypad ENABLED
LOG: StandBy reboot DISABLED
LOG: Key input check STARTED
Inicializado MediaItem SAMBAAA!!!!
MediaItem Samba inicializado con exito
EXT.HSOPTIONS.: GetKey "RebootTest"
EXT.HSOPTIONS.: Llamando getConfigKey
Antes de unescape 
Despues de unescape 
EXT.HSOPTIONS.: getConfigKey fallido, preparando null para enviar
EXT.HSOPTIONS.: Convirtiendo cadena null
EXT.HSOPTIONS.: longitud del pass a convertir 4
EXT.HSOPTIONS.: ERROREXT.HSOPTIONS.: GetKey "version"
EXT.HSOPTIONS.: Llamando getConfigKey
EXT.HSOPTIONS.: getConfigKey con exito, convirtiendo cadena para enviar
EXT.HSOPTIONS.: cadena a convertir: 1
EXT.HSOPTIONS.: Convirtiendo cadena 1
EXT.HSOPTIONS.: longitud del pass a convertir 1
EXT.HSOPTIONS.: Resultado  "1"
EXT.HSOPTIONS.: GetKey "vod_parental_control_active"
EXT.HSOPTIONS.: Llamando getConfigKey
EXT.HSOPTIONS.: getConfigKey con exito, convirtiendo cadena para enviar
EXT.HSOPTIONS.: cadena a convertir: true
EXT.HSOPTIONS.: Convirtiendo cadena true
EXT.HSOPTIONS.: longitud del pass a convertir 4
EXT.HSOPTIONS.: Resultado  "true"
[TR-069 Master Controller Thread] tr069_SessionThread_Queue(237): IGNORING event 2 AS BOOT OR BOOTSTRAP HAS NOT COMPLETED YET
[TR-069 Master Controller Thread] tr069_SessionThread_Queue(237): IGNORING event 2 AS BOOT OR BOOTSTRAP HAS NOT COMPLETED YET

Sigue leyendo Parte IV