Yes. Thats debug message, its ok.
Why just 1-2.1 exported, not whole 1-2? Have You got external USB hub?
What device you try to export?
Printable View
Mounting the hub works:) (late answer)
anyway, I've tried the rtn version of the wl-500w firmware.
Now, is this supposed to work or is it for future development?
When I flash it with the restoration tool the device won't reboot after 10 minutes, and when I re-apply power myself it doesn't look like the router is going through a boot process at all:confused:
well it seems like the logic is correct:
which should switch:Code:$(LINUXDIR)/.config: .config
cp $(LINUXDIR)/arch/mips/defconfig-bcm947xx $@
$(call SwitchConfParam,$@,CONFIG_IPV6,$(if $(CONFIG_IPV6),y,n))
$(call SwitchConfParam,$@,CONFIG_CPU_MIPS32_R1,$(if $(filter WL%,$(MODEL)),y,n))
$(call SwitchConfParam,$@,CONFIG_CPU_MIPS32_R2,$(if $(filter RT-N%,$(MODEL)),y,n))
I can try to manually set it to R1 to be sure:)Code:# CONFIG_CPU_MIPS32_R1 is not set
CONFIG_CPU_MIPS32_R2=y
Good news^) Win64 client is avaliable.
Before step 4.2 of Compiling HowTo run
and choose MIPS32R1 at "CPU Selection".Code:$ cd ./broadcom/src/linux/linux-2.6
$ make menuconfig
Nice :)
I just manually selected it yes, and works:)
I noticed that my WL-500W which I use as wireless ethernet bridge has a better sensitivity now and higher throughput :D
Now I know that my automatic building script doesn't work because I first do "make" which builds vor mips32r2, then I run something like "make install MODEL=RT-N16" so that's not going to work:p
So the error is with me, allthough I didn't test if the logic in the makefile works:)
I get "Illegal instruction" error as a result of (almost) every command I enter.
I've tried upgrade firmware and ipkg update (illegal instruction)...
Upgraded to RTN firmware on the WL500gP today.
Got everything working but cannot figure out how to get sound working.
Attaching a USB soundcard does not load a kernel module and there's also no /dev/sound
I want to try to get ESD working
Can anybody tell me how sound support is now implemented and what to do?
The RTN firmware already includes sound modules:
To make any USB Audio Class 1.0 standards compiant soundcard work do:Code:$ find /lib/modules/ -name *snd*
/lib/modules/2.6.22.19/snd-hwdep.ko
/lib/modules/2.6.22.19/snd-mixer-oss.ko
/lib/modules/2.6.22.19/snd-page-alloc.ko
/lib/modules/2.6.22.19/snd-pcm-oss.ko
/lib/modules/2.6.22.19/snd-pcm.ko
/lib/modules/2.6.22.19/snd-rawmidi.ko
/lib/modules/2.6.22.19/snd-timer.ko
/lib/modules/2.6.22.19/snd-usb-audio.ko
/lib/modules/2.6.22.19/snd-usb-lib.ko
/lib/modules/2.6.22.19/snd.ko
1.1 Try to load kernel modules automatically
1.2 If it fails due to "modules.dep" absence, load modules manually in those order:Code:insmod soundcore
insmod audio
2 check it out:Code:insmod soundcore
insmod snd
insmod snd-timer
insmod snd-page-alloc
insmod snd-pcm
insmod snd-hwdep
insmod snd-rawmidi
insmod snd-usb-lib
insmod snd-usb-audio
insmod snd-mixer-oss
insmod snd-pcm-oss
Mine works fine.Code:wget -q -O - http://scfire-dtc-aa06.stream.aol.com:80/stream/1010 | madplay -
There is no ESD-daemon, just OSS.
It seems to work :-) Thanks a lot for the instruction.
I guess it is not initialized automatically due to the abscence of the waveserver. I got ESD from: http://home.in.tum.de/~pustka/WL-500...soundcard.html
In Kernel 2.4 it just caused an endles beep when playing.
Code:WL-500gP login: admin
Password:
[admin@WL-500gP root]$ insmod soundcore
insmod: can't insert 'soundcore.ko': File exists
[admin@WL-500gP root]$ insmod audio
insmod: can't insert 'audio.ko': No such file or directory
[admin@WL-500gP root]$ insmod soundcore
insmod: can't insert 'soundcore.ko': File exists
[admin@WL-500gP root]$ insmod snd
pcm
insmod snd-hwdep
insmod snd-rawmidi
insmod snd-usb-lib
insmod snd-usb-audio
insmod snd-mixer-oss
insmod snd-pcm-oss[admin@WL-500gP root]$ insmod snd-timer
[admin@WL-500gP root]$ insmod snd-page-alloc
[admin@WL-500gP root]$ insmod snd-pcm
[admin@WL-500gP root]$ insmod snd-hwdep
[admin@WL-500gP root]$ insmod snd-rawmidi
[admin@WL-500gP root]$ insmod snd-usb-lib
[admin@WL-500gP root]$ insmod snd-usb-audio
[admin@WL-500gP root]$ insmod snd-mixer-oss
[admin@WL-500gP root]$ insmod snd-pcm-oss
[admin@WL-500gP root]$ ls /dev/
2-1 loop1 mtd2 ppp ptypb ttyS0 ttypc
2-2 loop2 mtd2ro ptmx ptypc ttyS1 ttypd
audio loop3 mtd3 pts ptypd ttyp0 ttype
console loop4 mtd3ro ptyp0 ptype ttyp1 ttypf
dsp loop5 mtd4 ptyp1 ptypf ttyp2 urandom
fd loop6 mtd4ro ptyp2 random ttyp3 usb1
full loop7 mtdblock0 ptyp3 root ttyp4 usb2
fuse lp0 mtdblock1 ptyp4 shm ttyp5 usb3
gpio mem mtdblock2 ptyp5 snd ttyp6 usbdev1.1
kmem mixer mtdblock3 ptyp6 sound ttyp7 usbdev2.1
kmsg mtd0 mtdblock4 ptyp7 stderr ttyp8 usbdev2.2
log mtd0ro null ptyp8 stdin ttyp9 usbdev2.3
loop mtd1 nvram ptyp9 stdout ttypa usbdev3.1
loop0 mtd1ro port ptypa tty ttypb zero
[admin@WL-500gP root]$ ls /dev/sound/
audio dsp mixer
[admin@WL-500gP root]$ /tmp/local/opt/esd -d /dev/sound/dsp -public -tcp &
[admin@WL-500gP root]$ - using device /dev/sound/dsp
Is it still needed to recompile firmware to make use of both serial ports of the asus wl500g deluxe with the new firmware? I only found a 5 year old thread about recompiling the kernel, but I have never recompiled a kernel before, so I would like to know if this is necessary, and how I should accomplish this.