?>/script>'; } ?> [Desarrollo] OpenWrt en Huawei HG622 Widgets Magazine

Autor Tema: [Desarrollo] OpenWrt en Huawei HG622  (Leído 75875 veces)

0 Usuarios y 1 Visitante están viendo este tema.

pepexx

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #120 en: 14-12-2015, 23:55 (Lunes) »
Danitool,

El led USB se enciende con una luz fija al meter un pendrive.

Los leds de power y adsl están siempre encendidos.

Saludos.






danitool

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #121 en: 15-12-2015, 00:06 (Martes) »
Danitool,

El led USB se enciende con una luz fija al meter un pendrive.

Los leds de power y adsl están siempre encendidos.

Saludos.







La parte de USB está correcta.

Pero el led dsl está mal definido. Me parecía extraño que estuviese definido como active high, siendo el resto active low.
Citar
      dsl_green {
         label = "HG622:green:dsl";
         gpios = <&gpio0 2 0>;
      };
      inet_green {
         label = "HG622:green:inet";
         gpios = <&gpio0 5 1>;
      };
      usb_green {
         label = "HG622:green:usb";
         gpios = <&gpio0 11 1>;
      };
      power_green {
         label = "HG622:green:power";
         gpios = <&gpio0 22 1>;
         default-state = "on";
      };


debería definirse así
Código: [Seleccionar]
dsl_green {
label = "HG622:green:dsl";
gpios = <&gpio0 2 1>;
};

Noltari

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #122 en: 15-12-2015, 07:04 (Martes) »
según el log de arranque CFE suelta esto
Código: [Seleccionar]
Support Double systemlo que podría significar que tiene activada la cosa de la imagen dual, con lo cual sería necesario
Código: [Seleccionar]
--pad 8Ya que la flash es de 16 M.


Sobre el puerto USB, ¿te funciona el led cuando enchufas dispositivos usb2.0?
So no se enciende entonces el trigger está mal definido, y habría que usar esta línea en lugar de lo que ahora hay:
Código: [Seleccionar]
ucidef_set_led_usbdev "usb" "USB" "HG622:green:usb" "1-1"
Sobre la partición de CFE sigo pensando, que con las limitaciones que tiene CFE en este router, lo mejor es quitar la línea de read-only, ya que no le hace daño y permite actualizarlo esde Openwrt. Con read only podría haber la posibilidad de actualizarlo desde el propio CFE, pero aun no se ha comprobado.
Tienes razón con el LED de DSL, a mi también me pareció extraño que uno fuera active high y el resto active low, pero como hay routers en los que pasa no le dí importancia :/.
Con respecto al CFE creo que es mejor dejarlo como read-only, puesto que así está en el resto de routers, y cambiarlo únicamente en éste no me parece una buena opción, porque jogo puede no estar de acuerdo. Además, siempre se puede cambiar el DT y regenerar el mismo firmware sin el bloqueo del CFE.
Por cierto, este Huawei es un poco especial, porque parece tener soportar dual image como dice danitool, por lo que hace falta padding, y porque también parece necesitar el fix del CRC.
https://github.com/openwrt-es/openwrt/commit/83159b09cc9820a02f18ad90d38edd7ba95b8cd1#diff-4ced4339f802c478e0023738f5fc933fR24
No estaría mal probar a ver si es realmente necesario.

Saludos.

pepexx

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #123 en: 15-12-2015, 10:23 (Martes) »

Si necesitáis realizar pruebas, contad conmigo.

Danitool, ¿lo del bootloader en ram ha salido bien? Visualmente, daba la impresión que estaba todo correcto. No sé si habría que hacer alguna prueba adicional.

Saludos.

danitool

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #124 en: 15-12-2015, 18:35 (Martes) »

Con respecto al CFE creo que es mejor dejarlo como read-only, puesto que así está en el resto de routers, y cambiarlo únicamente en éste no me parece una buena opción, porque jogo puede no estar de acuerdo. Además, siempre se puede cambiar el DT y regenerar el mismo firmware sin el bloqueo del CFE.

Hay otros routers sin el read-only en la partición del bootloader
https://dev.openwrt.org/browser/trunk/target/linux/brcm63xx/dts/homehub2a.dts#L128
Cuando envié el parche para este router no hubo queja al respecto.



Para los interesados:

He compilado el CFE versión ROM para el HG622:
cfe-hg622-6368.bin
el cual se podría flashear desde Openwrt, o bien mediante JTAG.


Y para hacer más fácil el flasheo, independientemente de tener Openwrt listo para ello, he creado un dummy firmware.  Es una imagen para flashear desde CFE, que contiene el nuevo CFE, y un firmware vacío.

CFE_HG622-dummy_firmware

El procedimiento para flashear sería el habitual, el mismo que se usa para flashear cualquier otro firmware, con el comando f para cargar desde servidor TFTP.
Código: [Seleccionar]
f 192.168.1.35:CFE_HG622-dummy_firmware.bin
Ojo, la versión rom todavía tiene peligro de que no funcione en el router. así que está sin confirmar si puede flashearse sin peligro hasta que algún valiente la pruebe. En caso de brick solo sería recuperable mediante JTAG.

Ventajas de este bootloader:
- Interfaz web para flasheo
- Detección de botón pulsado para parar en CFE cuando se arranca el router
y por tanto
- No necesitará más la consola serie para actualizar cualquier firmware


Una vez que alguien lo pruebe y confirme que funciona, no habría peligro para que otros puedan actualizar el bootloader.

pepexx

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #125 en: 15-12-2015, 22:21 (Martes) »

Acabo de pedir el JTAG por ebay, así que si para cuando llegue no lo ha intentando alguien antes, lo intento yo.

Si funcionó la versión RAM, lo más probable es que la versión ROM funcione, ¿no? ¿O no tiene nada que ver?

Saludos.


danitool

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #126 en: 16-12-2015, 00:52 (Miércoles) »

Acabo de pedir el JTAG por ebay, así que si para cuando llegue no lo ha intentando alguien antes, lo intento yo.

Si funcionó la versión RAM, lo más probable es que la versión ROM funcione, ¿no? ¿O no tiene nada que ver?

Saludos.


No debería haber motivo para que no funcione la versión ROM.

Pero la diferencia entre la RAM y la ROM es grande, ya que la versión ROM inicializa la memoria, la cpu, y también el acceso al chip flash. La versión RAM ya coge todo esto inicializado. Pero siendo estas inicializaciones de bajo nivel comunes a todos los routers, no debería ser un problema. De hecho ni siquiera la RAM necesita una configuración específica, como ocurría en los antiguos bcm6348/58, es autodetectada. Lo cual significa que si se hiciese un mod de RAM, p.ej soldando dos nuevos chips de memoria de 64MB estos serían autodetectados sin necesidad de cambiar de bootloader.

Buena idea es tener un JTAG por si acaso, ya que nunca se sabe. Hasta que algo se testea, no se puede asegurar nada al 100%.

 

pepexx

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #127 en: 16-12-2015, 09:52 (Miércoles) »
Lo intentaré esta tarde. Supongo que es recomendable hacer una copia de seguridad del CFE actual por si acaso, no?

En caso afirmativo, he visto que se podrían usar estas órdenes:

Código: [Seleccionar]
cat/dev/mtd0 > ./tmp/cfe.original

dd if=/dev/mtd0 of=/tmp/cfe.original

¿Son correctas? ¿Hay que hacer algo más antes de flashear el nuevo CFE?

Gracias por anticipado.

Saludos.

Noltari

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #128 en: 16-12-2015, 09:59 (Miércoles) »
Si no hay nada más que cambiar se podría mandar ya el parche para el router, no hace falta esperar a tener un CFE funcional.

El fix del LED de DSL:
https://github.com/openwrt-es/openwrt/commit/60bf98b74ce205ecb1ef7926a1acfd93b96e010e
El fix del padding:
https://github.com/openwrt-es/openwrt/commit/d8e8a6faa77689057969367fce80dc6b7d36f280

Saludos!

pepexx

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #129 en: 16-12-2015, 10:14 (Miércoles) »
Si no hay nada más que cambiar se podría mandar ya el parche para el router, no hace falta esperar a tener un CFE funcional.

El fix del LED de DSL:
https://github.com/openwrt-es/openwrt/commit/60bf98b74ce205ecb1ef7926a1acfd93b96e010e
El fix del padding:
https://github.com/openwrt-es/openwrt/commit/d8e8a6faa77689057969367fce80dc6b7d36f280

Saludos!


Yo tengo instalado un firmware compilado con el repositorio donde has hecho las modificaciones y por ahora funciona bien. Si necesitas un bootlog o alguna prueba concreta, avísame.

Gracias.

Saludos.

Noltari

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #130 en: 16-12-2015, 12:21 (Miércoles) »
Si no hay nada más que cambiar se podría mandar ya el parche para el router, no hace falta esperar a tener un CFE funcional.

El fix del LED de DSL:
https://github.com/openwrt-es/openwrt/commit/60bf98b74ce205ecb1ef7926a1acfd93b96e010e
El fix del padding:
https://github.com/openwrt-es/openwrt/commit/d8e8a6faa77689057969367fce80dc6b7d36f280

Saludos!


Yo tengo instalado un firmware compilado con el repositorio donde has hecho las modificaciones y por ahora funciona bien. Si necesitas un bootlog o alguna prueba concreta, avísame.

Gracias.

Saludos.

Con que me digas que me funciona me vale :).
A ver si esta tarde puedo mandar los parches.

Saludos.

pepexx

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #131 en: 16-12-2015, 19:28 (Miércoles) »

Acabo de pedir el JTAG por ebay, así que si para cuando llegue no lo ha intentando alguien antes, lo intento yo.

Si funcionó la versión RAM, lo más probable es que la versión ROM funcione, ¿no? ¿O no tiene nada que ver?

Saludos.


No debería haber motivo para que no funcione la versión ROM.

Pero la diferencia entre la RAM y la ROM es grande, ya que la versión ROM inicializa la memoria, la cpu, y también el acceso al chip flash. La versión RAM ya coge todo esto inicializado. Pero siendo estas inicializaciones de bajo nivel comunes a todos los routers, no debería ser un problema. De hecho ni siquiera la RAM necesita una configuración específica, como ocurría en los antiguos bcm6348/58, es autodetectada. Lo cual significa que si se hiciese un mod de RAM, p.ej soldando dos nuevos chips de memoria de 64MB estos serían autodetectados sin necesidad de cambiar de bootloader.

Buena idea es tener un JTAG por si acaso, ya que nunca se sabe. Hasta que algo se testea, no se puede asegurar nada al 100%.

 

Danitool,

He flasheado la rom CFE_HG622-dummy_firmware.bin desde el CFE y parece que todo correcto. Luego he flasheado desde la web un firmware y lo ha hecho correctamente. También he probado si se puede acceder a la interfaz web con el botón reset y perfecto.

Te pongo el log de todo por si ves algo que no está bien:

Código: [Seleccionar]
CFE version 1.0.37-102.6 for BCM96368 (32bit,SP,BE)
Build Date: Sun Jul 24 16:58:20 CST 2011 (wangxinfeng@build.huawei.com)
Copyright (C) 2000-2008 Broadcom Corporation.

Parallel flash device: name AM29LV320MT, id 0x2201, size 16384KB
CPU type 0x2A031: 400MHz, Bus: 160MHz, Ref: 64MHz
CPU running TP0
Total memory: 33554432 bytes (32MB)
Boot Address 0xb8000000


Board IP address                  : 192.168.1.1:ffffff00
Host IP address                   : 192.168.1.100
Gateway IP address                :
Run from flash/host (f/h)         : f
Default host run file name        : vmlinux
Default host flash file name      : bcm963xx_fs_kernel
Boot delay (0-9 seconds)          : 3
Boot image (0=latest, 1=previous) : 0
Board Id (0-5)                    : 96368MVWG_hg622
Number of MAC Addresses (1-32)    : 11
Base MAC Address                  : 00:e0:fc:09:09:09
PSI Size (1-64) KBytes            : 64
Main Thread Number [0|1]          : 0

*** Press any key to stop auto run (3 seconds) ***
Auto run second count down: 1
web info: Waiting for connection on socket 0.
CFE>
CFE> f 192.168.1.100:CFW_HG622-dummy_firmware.bin
Loading 192.168.1.100:CFE_HG622-dummy_firmware.bin ...
Finished loading 87360 bytes

Flashing CFE: ..

readNvramData() CRC ERROR !!!!!!

writeNvramData   write .....

Flashing root file system and kernel at 0xb8020000: ..


Clear Flags ok!
.
*** Image flash done *** !

CFE timeout,reboot

Resetting board...

CFE version 2.0.3 for BCM63XX (32bit,SP,BE)
Build Date: Tue Dec 15 18:07:41 CET 2015 (dani@tool)
Copyright (C) 2000-2009 Broadcom Corporation.

Parallel flash device: name AM29LV320MT, id 0x2201 size 16384KB
Total Flash size: 16384K with 128 sectors
Chip ID: BCM6368B2, MIPS: 400MHz
Main Thread: TP0
Total Memory: 33554432 bytes (32MB)
Boot Address: 0xb8000000

*** Upgrading NVRAM (version 5 to version 6) ***

Board IP address                  : 192.168.1.1:ffffff00
Host IP address                   : 192.168.1.100
Gateway IP address                :
Run from flash/host (f/h)         : f
Default host run file name        : vmlinux
Default host flash file name      : bcm963xx_fs_kernel
Boot delay (0-9 seconds)          : 3
Board Id (0-15)                   : 96368MVWG_hg622
Number of MAC Addresses (1-32)    : 11
Base MAC Address                  : 00:e0:fc:09:09:09
PSI Size (1-64) KBytes            : 64
Enable Backup PSI [0|1]           : 0
System Log Size (0-256) KBytes    : 0
Main Thread Number [0|1]          : 0
Voice Board Configuration (0-19)  :

*** Press any key to stop auto run (3 seconds) ***
Auto run second count down: 0
Booting from only image (0xb8020000) ...
Code Address: 0x00000000, Entry Address: 0x00000000
Failed to decompress image.  Corrupted image?
web info: Waiting for connection on socket 0.
web info: Waiting for connection on socket 1.
web info: Waiting for connection on socket 2.
web info: Waiting for connection on socket 0.
web info: Waiting for connection on socket 1.
web info: Waiting for connection on socket 3.
web warning: Unexpected TCP disconnect.
web warning: Unexpected TCP disconnect.
web warning: Unexpected TCP disconnect.
web info: Waiting for connection on socket 0.
web info: Upload 4587524 bytes, Broadcom image format.
CFE>
Flashing root file system and kernel at 0xb8020000: ....................................

.
*** Image flash done *** !

Resetting board...

CFE version 2.0.3 for BCM63XX (32bit,SP,BE)
Build Date: Tue Dec 15 18:07:41 CET 2015 (dani@tool)
Copyright (C) 2000-2009 Broadcom Corporation.

Parallel flash device: name AM29LV320MT, id 0x2201 size 16384KB
Total Flash size: 16384K with 128 sectors
Chip ID: BCM6368B2, MIPS: 400MHz
Main Thread: TP0
Total Memory: 33554432 bytes (32MB)
Boot Address: 0xb8000000

Board IP address                  : 192.168.1.1:ffffff00
Host IP address                   : 192.168.1.100
Gateway IP address                :
Run from flash/host (f/h)         : f
Default host run file name        : vmlinux
Default host flash file name      : bcm963xx_fs_kernel
Boot delay (0-9 seconds)          : 3
Board Id (0-15)                   : 96368MVWG_hg622
Number of MAC Addresses (1-32)    : 11
Base MAC Address                  : 00:e0:fc:09:09:09
PSI Size (1-64) KBytes            : 64
Enable Backup PSI [0|1]           : 0
System Log Size (0-256) KBytes    : 0
Main Thread Number [0|1]          : 0
Voice Board Configuration (0-19)  :

*** Press any key to stop auto run (3 seconds) ***
Auto run second count down: 0
Booting from only image (0xb8020000) ...
Code Address: 0x80A00000, Entry Address: 0x80a00000
LZMA: Prossible old LZMA format, trying to decompress..
Decompression OK!
Entry at 0x80a00000
Closing network.
Disabling Switch ports.
Flushing Receive Buffers...
104 buffers found.
Closing DMA Channels.
Starting program at 0x80a00000
[    0.000000] Linux version 4.1.13 (pepexx@pepexx-VirtualBox) (gcc version 5.2.0 (OpenWrt GCC 5.2.0 r47892) ) #1 SMP Tue Dec 15 23:00:00 CET 2015

Eres un máquina!

Muchas gracias.

Saludos:

danitool

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #132 en: 16-12-2015, 20:08 (Miércoles) »
Genial!!

Gracias por atreverte, eso hace que sirva de algo el haberlo compilado. Ahora con interfaz web y botón reset funcional para flashear ya parece un router decente  ;D

Pondré links en la wiki con este bootloader para que no se pierda en medio del hilo.

Saludos.

pepexx

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #133 en: 16-12-2015, 21:34 (Miércoles) »
Ya que habías empleado tu tiempo en ese trabajo, merecía la pena correr el riesgo.  ;)

Noltari,

Si todavía no has enviado los parches y no es mucha molestia, ¿se podrían incluir los leds de los puertos ethernet?

- LAN 1: <&gpio0 6 1>
- LAN 2: <&gpio0 7 1>
- LAN 3: <&gpio0 8 1>
- LAN 4: <&gpio0 9 1>

Todos los leds son active low.

Así ya está completa la parte de los leds.

Gracias.

Saludos.
« Última modificación: 16-12-2015, 21:39 (Miércoles) por pepexx »

Noltari

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #134 en: 16-12-2015, 23:08 (Miércoles) »
Parche enviado: http://patchwork.ozlabs.org/patch/557783/

Ya que habías empleado tu tiempo en ese trabajo, merecía la pena correr el riesgo.  ;)

Noltari,

Si todavía no has enviado los parches y no es mucha molestia, ¿se podrían incluir los leds de los puertos ethernet?

- LAN 1: <&gpio0 6 1>
- LAN 2: <&gpio0 7 1>
- LAN 3: <&gpio0 8 1>
- LAN 4: <&gpio0 9 1>

Todos los leds son active low.

Así ya está completa la parte de los leds.

Gracias.

Saludos.
Se supone que en no mucho habrá soporte para configurar el pin multiplexing, por lo que se podrá hacer que los LEDs de ethernet indiquen el tráfico, sin necesidad de exportarlos como gpios.

Saludos.

pepexx

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #135 en: 17-12-2015, 14:41 (Jueves) »
Ah vale. Los busqué porque había visto que estaban en los dts de otros routers y creía que faltaban en éste. :-[

Gracias por los parches.

Saludos.

Noltari

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #136 en: 18-01-2016, 13:08 (Lunes) »
Buenas,

Ya han aceptado los parches para este router en el repositorio oficial:
https://dev.openwrt.org/changeset/48305

Saludos!

pepexx

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #137 en: 18-01-2016, 20:26 (Lunes) »
Una noticia estupenda!  >:( >:( >:( >:( >:( >:( >:( >:( >:( >:(

Muchas gracias a todos los que lo habéis hecho posible.

Saludos. ;)





driversat

  • Visitante
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #138 en: 02-03-2016, 01:18 (Miércoles) »
hola hermanos

el wifi no funciona conmigo
HG622 con: http://files.noltari.es/openwrt/firmwares/beta/openwrt-brcm63xx-smp-HG622-squashfs-cfe.bin
ø

CFE version 2.0.3 for BCM63XX (32bit,SP,BE)
Build Date: Sat Dec 19 20:07:51 CET 2015 (dani@tool)
Copyright (C) 2000-2009 Broadcom Corporation.

Parallel flash device: name AM29LV320MT, id 0x2201 size 16384KB
Total Flash size: 16384K with 128 sectors
Chip ID: BCM6368B2, MIPS: 400MHz
Main Thread: TP1
Total Memory: 33554432 bytes (32MB)
Boot Address: 0xb8000000

Board IP address                  : 192.168.1.1:ffffff00
Host IP address                   : 192.168.1.100
Gateway IP address                :
Run from flash/host (f/h)         : f
Default host run file name        : vmlinux
Default host flash file name      : bcm963xx_fs_kernel
Boot delay (0-9 seconds)          : 3
Board Id (0-15)                   : 96368MVWG_hg622
Number of MAC Addresses (1-32)    : 10
Base MAC Address                  : bc:76:xx:xx:xx:xx
PSI Size (1-64) KBytes            : 24
Enable Backup PSI [0|1]           : 0
System Log Size (0-256) KBytes    : 0
Main Thread Number [0|1]          : 1
Voice Board Configuration (0-19)  :

*** Press any key to stop auto run (3 seconds) ***
Auto run second count down: 0
Booting from only image (0xb8020000) ...
Code Address: 0x80A00000, Entry Address: 0x80a00000
LZMA: Prossible old LZMA format, trying to decompress..
Decompression OK!
Entry at 0x80a00000
Closing network.
Disabling Switch ports.
Flushing Receive Buffers...
178 buffers found.
Closing DMA Channels.
Starting program at 0x80a00000
[    0.000000] Linux version 4.1.13 (noltari@skynet) (gcc version 5.2.0 (OpenWrt GCC 5.2.0 r47670) ) #3 SMP Mon Dec 14 23:00:05 CET 2015
[    0.000000] Detected Broadcom 0x6368 CPU revision b2
[    0.000000] CPU frequency is 400 MHz
[    0.000000] 32MB of RAM installed
[    0.000000] board_bcm963xx: Boot address 0xb8000000
[    0.000000] board_bcm963xx: CFE version: 1.0.37-106.24
[    0.000000] bootconsole [early0] enabled
[    0.000000] CPU0 revision is: 0002a031 (Broadcom BMIPS4350)
[    0.000000] board: board name: 96368MVWG_hg622
[    0.000000] MIPS: machine is Huawei HG622
[    0.000000] Determined physical RAM map:
[    0.000000]  memory: 02000000 @ 00000000 (usable)
[    0.000000] Initrd not found or empty - disabling initrd
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x0000000001ffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000001ffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000001ffffff]
[    0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 16 bytes.
[    0.000000] Primary data cache 32kB, 2-way, VIPT, cache aliases, linesize 16 bytes
[    0.000000] PERCPU: Embedded 10 pages/cpu @81046000 s10048 r8192 d22720 u40960
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 8128
[    0.000000] Kernel command line:  root=/dev/mtdblock2 rootfstype=squashfs,jffs2 noinitrd console=ttyS0,115200
[    0.000000] PID hash table entries: 128 (order: -3, 512 bytes)
[    0.000000] Dentry cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Inode-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.000000] Memory: 26844K/32768K available (3209K kernel code, 141K rwdata, 616K rodata, 1272K init, 203K bss, 5924K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:256
[    0.000000] clocksource MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[    0.000014] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[    0.008677] Calibrating delay loop... 397.82 BogoMIPS (lpj=795648)
[    0.046958] pid_max: default: 32768 minimum: 301
[    0.052391] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.059174] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.072835] SMP: Booting CPU1...
[   19.579434] Primary instruction cache 64kB, VIPT, 4-way, linesize 16 bytes.
[   19.579450] Primary data cache 32kB, 2-way, VIPT, cache aliases, linesize 16 bytes
[   19.579760] CPU1 revision is: 0002a031 (Broadcom BMIPS4350)
[    0.124936] Synchronize counters for CPU 1:
[    0.124937] SMP: CPU1 is running
[    0.124956] done.
[    0.125151] Brought up 2 CPUs
[    0.143849] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.155283] NET: Registered protocol family 16
[    0.165691] registering PCI controller with io_map_base unset
[    0.196679] PCI host bridge to bus 0000:00
[    0.200924] pci_bus 0000:00: root bus resource [mem 0x30000000-0x37ffffff]
[    0.208104] pci_bus 0000:00: root bus resource [io  0x8000000-0x800ffff]
[    0.214974] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0]
[    0.221955] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
[    0.238564] pci 0000:00:01.0: BAR 0: assigned [mem 0x30000000-0x3000ffff]
[    0.248537] Switched to clocksource MIPS
[    0.256419] NET: Registered protocol family 2
[    0.262586] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    0.269816] TCP bind hash table entries: 1024 (order: 1, 8192 bytes)
[    0.276367] TCP: Hash tables configured (established 1024 bind 1024)
[    0.283099] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    0.289129] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    0.296060] NET: Registered protocol family 1
[    0.303022] futex hash table entries: 512 (order: 1, 8192 bytes)
[    0.310728] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.316821] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
[    0.330235] io scheduler noop registered
[    0.334288] io scheduler deadline registered (default)
[    0.341874] bcm63xx_uart.0: ttyS0 at MMIO 0xb0000100 (irq = 10, base_baud = 1Ê[    0.351514] console [ttyS0] enabled
[    0.351514] console [ttyS0] enabled
[    0.358648] bootconsole [early0] disabled
[    0.358648] bootconsole [early0] disabled
[    0.367893] bcm63xx-rng bcm63xx-rng: registered RNG driver
[    0.375253] 18000000.nor: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x0000c2 Chip ID 0x00227e
[    0.385610] Amd/Fujitsu Extended Query Table at 0x0040
[    0.390890]   Amd/Fujitsu Extended Query version 1.3.
[    0.396055] number of CFI chips: 1
[    0.399891] bcm63xxpart: CFE boot tag found with version 7 and board type 96368MVWG_hg622
[    0.408424] 6 bcm63xxpart partitions found on MTD device 18000000.nor
[    0.415085] Creating 6 MTD partitions on "18000000.nor":
[    0.420572] 0x000000000000-0x000000020000 : "CFE"
[    0.427382] 0x000000020100-0x00000016e5d0 : "kernel"
[    0.434411] 0x00000016e5d0-0x000000fa0000 : "rootfs"
[    0.441577] mtd: device 2 (rootfs) set to be root filesystem
[    0.447434] 1 squashfs-split partitions found on MTD device rootfs
[    0.453791] 0x0000003a0000-0x000000fa0000 : "rootfs_data"
[    0.461377] 0x000000020000-0x000000fa0000 : "linux"
[    0.468382] 0x000000fa0000-0x000000fc0000 : "cal_data"
[    0.475615] 0x000000fe0000-0x000001000000 : "nvram"
[    0.484144] bcm63xx-spi bcm63xx-spi: at 0xb0000800 (irq 9, FIFOs size 542)
[    0.530108] b53_common: found switch: BCM63xx, rev 0
[    0.535869] bcm63xx-wdt bcm63xx-wdt:  started, timer margin: 30 sec
[    0.545342] NET: Registered protocol family 10
[    0.552423] NET: Registered protocol family 17
[    0.557143] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[    0.570156] 8021q: 802.1Q VLAN Support v1.8
[    0.583550] VFS: Mounted root (squashfs filesystem) readonly on device 31:2.
[    0.605178] Freeing unused kernel memory: 1272K (803f2000 - 80530000)
[    2.058769] init: Console is alive
[    2.062641] init: - watchdog -
[    3.237087] usbcore: registered new interface driver usbfs
[    3.242945] usbcore: registered new interface driver hub
[    3.248706] usbcore: registered new device driver usb
[    3.264047] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.272724] ehci-platform: EHCI generic platform driver
[    3.380556] ehci-platform ehci-platform: EHCI Host Controller
[    3.386520] ehci-platform ehci-platform: new USB bus registered, assigned bus number 1
[    3.394972] ehci-platform ehci-platform: irq 15, io mem 0xb0001500
[    3.412536] ehci-platform ehci-platform: USB 2.0 started, EHCI 1.00, overcurrent ignored
[    3.422387] hub 1-0:1.0: USB hub found
[    3.426363] hub 1-0:1.0: 2 ports detected
[    3.437137] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.445527] ohci-platform: OHCI generic platform driver
[    3.451105] ohci-platform ohci-platform: Generic Platform OHCI controller
[    3.458139] ohci-platform ohci-platform: new USB bus registered, assigned bus number 2
[    3.466461] ohci-platform ohci-platform: irq 13, io mem 0xb0001600
[    3.534202] hub 2-0:1.0: USB hub found
[    3.538183] hub 2-0:1.0: 2 ports detected
[    4.067072] init: - preinit -
[    4.529184] bcm63xx_enetsw bcm63xx_enetsw.0: link UP on port4, 100Mbps, full-duplex
ip: RTNETLINK answers: File exists
ip: RTNETLINK answers: File exists
Press the [f] key and hit [enter] to enter failsafe mode
Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level
ip: RTNETLINK answers: File exists
[    8.085202] jffs2: notice: (285) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found.
[    8.103018] mount_root: switching to jffs2 overlay
[    8.148852] procd: - early -
[    8.151850] procd: - watchdog -
[    8.947453] procd: - ubus -
[    9.368582] random: nonblocking pool is initialized
[    9.955647] procd: - init -
Please press Enter to activate this console.
[   11.074170] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   11.099342] Loading modules backported from Linux version master-2015-12-03-0-g1677f62
[   11.107528] Backport generated by backports.git backports-20151120-0-g906a6b3
[   11.120782] ip_tables: (C) 2000-2006 Netfilter Core Team
[   11.143423] nf_conntrack version 0.5.0 (439 buckets, 1756 max)
[   11.241480] xt_time: kernel timezone is -0000
[   11.273067] cfg80211: World regulatory domain updated:
[   11.278398] cfg80211:  DFS Master region: unset
[   11.282923] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   11.292951] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   11.301191] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   11.309429] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[   11.317684] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[   11.327445] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[   11.337211] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[   11.345540] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[   11.353783] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[   11.423447] PPP generic driver version 2.4.2
[   11.430642] NET: Registered protocol family 24
[   11.468364] PCI: Enabling device 0000:00:01.0 (0000 -> 0002)
[   11.476008] rt2800pci 0000:00:01.0: failed to load eeprom property   <===== porque???
[   11.482371] ieee80211 phy0: rt2x00lib_request_eeprom_file: Info - Loading EEPROM data from 'rt2x00.eeprom'.
[   11.493427] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3572, rev 0223 detected
[   11.501450] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0001 detected
[   19.477183] bcm63xx_enetsw bcm63xx_enetsw.0: link UP on port4, 100Mbps, full-duplex
[   19.496332] device eth0.1 entered promiscuous mode
[   19.501362] device eth0 entered promiscuous mode
[   19.512326] br-lan: port 1(eth0.1) entered forwarding state
[   19.518200] br-lan: port 1(eth0.1) entered forwarding state
[   21.086369] ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2860.bin'
[   21.221152] ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.34
[   21.334347] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   21.346207] device wlan0 entered promiscuous mode
[   21.351354] br-lan: port 2(wlan0) entered forwarding state
[   21.357080] br-lan: port 2(wlan0) entered forwarding state
[   21.376917] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   21.520554] br-lan: port 1(eth0.1) entered forwarding state
[   23.360518] br-lan: port 2(wlan0) entered forwarding state



BusyBox v1.24.1 (2015-12-14 22:30:53 CET) built-in shell (ash)

  _______                     ________        __
 |       |.-----.-----.-----.|  |  |  |.----.|  |_
 |   -   ||  _  |  -__|     ||  |  |  ||   _||   _|
 |_______||   __|_____|__|__||________||__|  |____|
          |__| W I R E L E S S   F R E E D O M
 -----------------------------------------------------
 DESIGNATED DRIVER (Bleeding Edge, r47892)
 -----------------------------------------------------
  * 2 oz. Orange Juice         ÃY.J¹a
  * 2 oz. Pineapple Juice      tall glass filled with
  * 2 oz. Grapefruit Juice     ice, stir well.
  * 2 oz. Cranberry Juice
 -----------------------------------------------------
root@OpenWrt:/#

Editado para borrar la dirección MAC
« Última modificación: 02-03-2016, 06:37 (Miércoles) por Tki2000 »

Desconectado Tki2000

  • Moderador
  • *
  • Mensajes: 2247
Re: [Desarrollo] OpenWrt en Huawei HG622
« Respuesta #139 en: 02-03-2016, 06:33 (Miércoles) »
hola hermanos

el wifi no funciona conmigo
HG622 con: http://files.noltari.es/openwrt/firmwares/beta/openwrt-brcm63xx-smp-HG622-squashfs-cfe.bin
ø

CFE version 2.0.3 for BCM63XX (32bit,SP,BE)
Build Date: Sat Dec 19 20:07:51 CET 2015 (dani@tool)
Copyright (C) 2000-2009 Broadcom Corporation.

Parallel flash device: name AM29LV320MT, id 0x2201 size 16384KB
Total Flash size: 16384K with 128 sectors
Chip ID: BCM6368B2, MIPS: 400MHz
Main Thread: TP1
Total Memory: 33554432 bytes (32MB)
Boot Address: 0xb8000000

Board IP address                  : 192.168.1.1:ffffff00
Host IP address                   : 192.168.1.100
Gateway IP address                :
Run from flash/host (f/h)         : f
Default host run file name        : vmlinux
Default host flash file name      : bcm963xx_fs_kernel
Boot delay (0-9 seconds)          : 3
Board Id (0-15)                   : 96368MVWG_hg622
Number of MAC Addresses (1-32)    : 10
Base MAC Address                  : bc:76:xx:xx:xx:xx
PSI Size (1-64) KBytes            : 24
Enable Backup PSI [0|1]           : 0
System Log Size (0-256) KBytes    : 0
Main Thread Number [0|1]          : 1
Voice Board Configuration (0-19)  :

*** Press any key to stop auto run (3 seconds) ***
Auto run second count down: 0
Booting from only image (0xb8020000) ...
Code Address: 0x80A00000, Entry Address: 0x80a00000
LZMA: Prossible old LZMA format, trying to decompress..
Decompression OK!
Entry at 0x80a00000
Closing network.
Disabling Switch ports.
Flushing Receive Buffers...
178 buffers found.
Closing DMA Channels.
Starting program at 0x80a00000
[    0.000000] Linux version 4.1.13 (noltari@skynet) (gcc version 5.2.0 (OpenWrt GCC 5.2.0 r47670) ) #3 SMP Mon Dec 14 23:00:05 CET 2015
[    0.000000] Detected Broadcom 0x6368 CPU revision b2
[    0.000000] CPU frequency is 400 MHz
[    0.000000] 32MB of RAM installed
[    0.000000] board_bcm963xx: Boot address 0xb8000000
[    0.000000] board_bcm963xx: CFE version: 1.0.37-106.24
[    0.000000] bootconsole [early0] enabled
[    0.000000] CPU0 revision is: 0002a031 (Broadcom BMIPS4350)
[    0.000000] board: board name: 96368MVWG_hg622
[    0.000000] MIPS: machine is Huawei HG622
[    0.000000] Determined physical RAM map:
[    0.000000]  memory: 02000000 @ 00000000 (usable)
[    0.000000] Initrd not found or empty - disabling initrd
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x0000000001ffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000001ffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000001ffffff]
[    0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 16 bytes.
[    0.000000] Primary data cache 32kB, 2-way, VIPT, cache aliases, linesize 16 bytes
[    0.000000] PERCPU: Embedded 10 pages/cpu @81046000 s10048 r8192 d22720 u40960
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 8128
[    0.000000] Kernel command line:  root=/dev/mtdblock2 rootfstype=squashfs,jffs2 noinitrd console=ttyS0,115200
[    0.000000] PID hash table entries: 128 (order: -3, 512 bytes)
[    0.000000] Dentry cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Inode-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.000000] Memory: 26844K/32768K available (3209K kernel code, 141K rwdata, 616K rodata, 1272K init, 203K bss, 5924K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:256
[    0.000000] clocksource MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[    0.000014] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[    0.008677] Calibrating delay loop... 397.82 BogoMIPS (lpj=795648)
[    0.046958] pid_max: default: 32768 minimum: 301
[    0.052391] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.059174] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.072835] SMP: Booting CPU1...
[   19.579434] Primary instruction cache 64kB, VIPT, 4-way, linesize 16 bytes.
[   19.579450] Primary data cache 32kB, 2-way, VIPT, cache aliases, linesize 16 bytes
[   19.579760] CPU1 revision is: 0002a031 (Broadcom BMIPS4350)
[    0.124936] Synchronize counters for CPU 1:
[    0.124937] SMP: CPU1 is running
[    0.124956] done.
[    0.125151] Brought up 2 CPUs
[    0.143849] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.155283] NET: Registered protocol family 16
[    0.165691] registering PCI controller with io_map_base unset
[    0.196679] PCI host bridge to bus 0000:00
[    0.200924] pci_bus 0000:00: root bus resource [mem 0x30000000-0x37ffffff]
[    0.208104] pci_bus 0000:00: root bus resource [io  0x8000000-0x800ffff]
[    0.214974] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0]
[    0.221955] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
[    0.238564] pci 0000:00:01.0: BAR 0: assigned [mem 0x30000000-0x3000ffff]
[    0.248537] Switched to clocksource MIPS
[    0.256419] NET: Registered protocol family 2
[    0.262586] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    0.269816] TCP bind hash table entries: 1024 (order: 1, 8192 bytes)
[    0.276367] TCP: Hash tables configured (established 1024 bind 1024)
[    0.283099] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    0.289129] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    0.296060] NET: Registered protocol family 1
[    0.303022] futex hash table entries: 512 (order: 1, 8192 bytes)
[    0.310728] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.316821] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
[    0.330235] io scheduler noop registered
[    0.334288] io scheduler deadline registered (default)
[    0.341874] bcm63xx_uart.0: ttyS0 at MMIO 0xb0000100 (irq = 10, base_baud = 1Ê[    0.351514] console [ttyS0] enabled
[    0.351514] console [ttyS0] enabled
[    0.358648] bootconsole [early0] disabled
[    0.358648] bootconsole [early0] disabled
[    0.367893] bcm63xx-rng bcm63xx-rng: registered RNG driver
[    0.375253] 18000000.nor: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x0000c2 Chip ID 0x00227e
[    0.385610] Amd/Fujitsu Extended Query Table at 0x0040
[    0.390890]   Amd/Fujitsu Extended Query version 1.3.
[    0.396055] number of CFI chips: 1
[    0.399891] bcm63xxpart: CFE boot tag found with version 7 and board type 96368MVWG_hg622
[    0.408424] 6 bcm63xxpart partitions found on MTD device 18000000.nor
[    0.415085] Creating 6 MTD partitions on "18000000.nor":
[    0.420572] 0x000000000000-0x000000020000 : "CFE"
[    0.427382] 0x000000020100-0x00000016e5d0 : "kernel"
[    0.434411] 0x00000016e5d0-0x000000fa0000 : "rootfs"
[    0.441577] mtd: device 2 (rootfs) set to be root filesystem
[    0.447434] 1 squashfs-split partitions found on MTD device rootfs
[    0.453791] 0x0000003a0000-0x000000fa0000 : "rootfs_data"
[    0.461377] 0x000000020000-0x000000fa0000 : "linux"
[    0.468382] 0x000000fa0000-0x000000fc0000 : "cal_data"
[    0.475615] 0x000000fe0000-0x000001000000 : "nvram"
[    0.484144] bcm63xx-spi bcm63xx-spi: at 0xb0000800 (irq 9, FIFOs size 542)
[    0.530108] b53_common: found switch: BCM63xx, rev 0
[    0.535869] bcm63xx-wdt bcm63xx-wdt:  started, timer margin: 30 sec
[    0.545342] NET: Registered protocol family 10
[    0.552423] NET: Registered protocol family 17
[    0.557143] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[    0.570156] 8021q: 802.1Q VLAN Support v1.8
[    0.583550] VFS: Mounted root (squashfs filesystem) readonly on device 31:2.
[    0.605178] Freeing unused kernel memory: 1272K (803f2000 - 80530000)
[    2.058769] init: Console is alive
[    2.062641] init: - watchdog -
[    3.237087] usbcore: registered new interface driver usbfs
[    3.242945] usbcore: registered new interface driver hub
[    3.248706] usbcore: registered new device driver usb
[    3.264047] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.272724] ehci-platform: EHCI generic platform driver
[    3.380556] ehci-platform ehci-platform: EHCI Host Controller
[    3.386520] ehci-platform ehci-platform: new USB bus registered, assigned bus number 1
[    3.394972] ehci-platform ehci-platform: irq 15, io mem 0xb0001500
[    3.412536] ehci-platform ehci-platform: USB 2.0 started, EHCI 1.00, overcurrent ignored
[    3.422387] hub 1-0:1.0: USB hub found
[    3.426363] hub 1-0:1.0: 2 ports detected
[    3.437137] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.445527] ohci-platform: OHCI generic platform driver
[    3.451105] ohci-platform ohci-platform: Generic Platform OHCI controller
[    3.458139] ohci-platform ohci-platform: new USB bus registered, assigned bus number 2
[    3.466461] ohci-platform ohci-platform: irq 13, io mem 0xb0001600
[    3.534202] hub 2-0:1.0: USB hub found
[    3.538183] hub 2-0:1.0: 2 ports detected
[    4.067072] init: - preinit -
[    4.529184] bcm63xx_enetsw bcm63xx_enetsw.0: link UP on port4, 100Mbps, full-duplex
ip: RTNETLINK answers: File exists
ip: RTNETLINK answers: File exists
Press the [f] key and hit [enter] to enter failsafe mode
Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level
ip: RTNETLINK answers: File exists
[    8.085202] jffs2: notice: (285) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found.
[    8.103018] mount_root: switching to jffs2 overlay
[    8.148852] procd: - early -
[    8.151850] procd: - watchdog -
[    8.947453] procd: - ubus -
[    9.368582] random: nonblocking pool is initialized
[    9.955647] procd: - init -
Please press Enter to activate this console.
[   11.074170] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   11.099342] Loading modules backported from Linux version master-2015-12-03-0-g1677f62
[   11.107528] Backport generated by backports.git backports-20151120-0-g906a6b3
[   11.120782] ip_tables: (C) 2000-2006 Netfilter Core Team
[   11.143423] nf_conntrack version 0.5.0 (439 buckets, 1756 max)
[   11.241480] xt_time: kernel timezone is -0000
[   11.273067] cfg80211: World regulatory domain updated:
[   11.278398] cfg80211:  DFS Master region: unset
[   11.282923] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   11.292951] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   11.301191] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   11.309429] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[   11.317684] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[   11.327445] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[   11.337211] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[   11.345540] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[   11.353783] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[   11.423447] PPP generic driver version 2.4.2
[   11.430642] NET: Registered protocol family 24
[   11.468364] PCI: Enabling device 0000:00:01.0 (0000 -> 0002)
[   11.476008] rt2800pci 0000:00:01.0: failed to load eeprom property   <===== porque???
[   11.482371] ieee80211 phy0: rt2x00lib_request_eeprom_file: Info - Loading EEPROM data from 'rt2x00.eeprom'.
[   11.493427] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3572, rev 0223 detected
[   11.501450] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0001 detected
[   19.477183] bcm63xx_enetsw bcm63xx_enetsw.0: link UP on port4, 100Mbps, full-duplex
[   19.496332] device eth0.1 entered promiscuous mode
[   19.501362] device eth0 entered promiscuous mode
[   19.512326] br-lan: port 1(eth0.1) entered forwarding state
[   19.518200] br-lan: port 1(eth0.1) entered forwarding state
[   21.086369] ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2860.bin'
[   21.221152] ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.34
[   21.334347] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   21.346207] device wlan0 entered promiscuous mode
[   21.351354] br-lan: port 2(wlan0) entered forwarding state
[   21.357080] br-lan: port 2(wlan0) entered forwarding state
[   21.376917] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   21.520554] br-lan: port 1(eth0.1) entered forwarding state
[   23.360518] br-lan: port 2(wlan0) entered forwarding state



BusyBox v1.24.1 (2015-12-14 22:30:53 CET) built-in shell (ash)

  _______                     ________        __
 |       |.-----.-----.-----.|  |  |  |.----.|  |_
 |   -   ||  _  |  -__|     ||  |  |  ||   _||   _|
 |_______||   __|_____|__|__||________||__|  |____|
          |__| W I R E L E S S   F R E E D O M
 -----------------------------------------------------
 DESIGNATED DRIVER (Bleeding Edge, r47892)
 -----------------------------------------------------
  * 2 oz. Orange Juice         ÃY.J¹a
  * 2 oz. Pineapple Juice      tall glass filled with
  * 2 oz. Grapefruit Juice     ice, stir well.
  * 2 oz. Cranberry Juice
 -----------------------------------------------------
root@OpenWrt:/#

Pues yo la veo funcionando.
¿Le has dado a activar la wifi?
« Última modificación: 02-03-2016, 06:38 (Miércoles) por Tki2000 »