News: This forum is now permanently frozen.
Pages: 1 [2] 3
Topic: Any chance to include run(4) driver -- Ralink USB IEEE 802.11a/g/n wireless?  (Read 15265 times)
« Reply #15 on: December 23, 2012, 17:12:46 »
Fred Grayson *****
Posts: 994

Whatever happened with this? Is it or is it not in the current beta 1.8.1b535 ?

Thanks.

--
Google is your friend and Bob's your uncle.
« Reply #16 on: January 07, 2013, 14:38:04 »
Lennart Grahl ***
Posts: 153

I'd like to give this thread a push.

These are the changes I've made to r510. I couldn't get the runfw module to load at runtime. Because of this I haven't commited the changes to the current 1.8b yet. It has been quite some time now and maybe there is a way to load it at runtime.
Please, have a look at it:

Code:
Index: build/boot/generic-pc-cdrom/loader.rc
===================================================================
--- build/boot/generic-pc-cdrom/loader.rc (revision 510)
+++ build/boot/generic-pc-cdrom/loader.rc (working copy)
@@ -2,5 +2,6 @@
 set hw.ata.ata_dma="0"
 set kern.ipc.maxpipekva=10485760
 load /kernel
+load /boot/kernel/runfw.ko
 load -t mfs_root /mfsroot
 boot
Index: build/boot/generic-pc-serial/loader.rc
===================================================================
--- build/boot/generic-pc-serial/loader.rc (revision 510)
+++ build/boot/generic-pc-serial/loader.rc (working copy)
@@ -2,5 +2,6 @@
 set hw.ata.ata_dma="0"
 set kern.ipc.maxpipekva=10485760
 load /kernel
+load /boot/kernel/runfw.ko
 load -t mfs_root /mfsroot
 boot -h
Index: build/boot/generic-pc-syslinux/loader.rc
===================================================================
--- build/boot/generic-pc-syslinux/loader.rc (revision 510)
+++ build/boot/generic-pc-syslinux/loader.rc (working copy)
@@ -2,5 +2,6 @@
 set hw.ata.ata_dma="0"
 set kern.ipc.maxpipekva=10485760
 load /kernel
+load /boot/kernel/runfw.ko
 load -t mfs_root /mfsroot
 boot
Index: build/boot/generic-pc/loader.rc
===================================================================
--- build/boot/generic-pc/loader.rc (revision 510)
+++ build/boot/generic-pc/loader.rc (working copy)
@@ -2,5 +2,6 @@
 set hw.ata.ata_dma="0"
 set kern.ipc.maxpipekva=10485760
 load /kernel
+load /boot/kernel/runfw.ko
 load -t mfs_root /mfsroot
 boot
Index: build/files/loader.rc
===================================================================
--- build/files/loader.rc (revision 510)
+++ build/files/loader.rc (working copy)
@@ -2,5 +2,6 @@
 set hw.ata.ata_dma="0"
 set kern.ipc.maxpipekva=10485760
 load /kernel
+load /boot/kernel/runfw.ko
 load -t mfs_root /mfsroot
 boot
\ No newline at end of file
Index: build/kernelconfigs/M0N0WALL_GENERIC.amd64
===================================================================
--- build/kernelconfigs/M0N0WALL_GENERIC.amd64 (revision 510)
+++ build/kernelconfigs/M0N0WALL_GENERIC.amd64 (working copy)
@@ -1,7 +1,7 @@
 cpu HAMMER
 ident M0N0WALL_GENERIC64
 
-makeoptions MODULES_OVERRIDE="dummynet glxsb aesni padlock ipfw if_tap if_vlan"
+makeoptions MODULES_OVERRIDE="dummynet glxsb aesni padlock ipfw if_tap if_vlan runfw"
 
 options HZ=1000
 
@@ -195,7 +195,8 @@
 device          wlan_ccmp               #802.11 CCMP support
 device          wlan_tkip               #802.11 TKIP support
 device          wlan_xauth              #802.11 external authenticator support
-device          wlan_acl
+device          wlan_acl #802.11 MAC-based ACL support
+device wlan_amrr #802.11 adaption algorithm support
 device an # Aironet 4500/4800 802.11 wireless NICs.
 device          ath             # Atheros pci/cardbus NIC's
 device          ath_hal         # pci/cardbus chip support
@@ -267,3 +268,5 @@
 device rum # Ralink Technology RT2501USB wireless NICs
 device ural # Ralink Technology RT2500USB wireless NICs
 device zyd # ZyDAS zb1211/zb1211b wireless NICs
+device run # Ralink Technology RT2700U/RT2800U/RT3000U wireless NICs
+#device runfw # Ralink Technology RT2700/RT2800/RT3000 NICs firmware
Index: build/kernelconfigs/M0N0WALL_GENERIC.i386
===================================================================
--- build/kernelconfigs/M0N0WALL_GENERIC.i386 (revision 510)
+++ build/kernelconfigs/M0N0WALL_GENERIC.i386 (working copy)
@@ -4,7 +4,7 @@
 cpu I686_CPU
 ident M0N0WALL_GENERIC
 
-makeoptions MODULES_OVERRIDE="dummynet glxsb aesni padlock ipfw acpi if_tap if_vlan"
+makeoptions MODULES_OVERRIDE="dummynet glxsb aesni padlock ipfw acpi if_tap if_vlan runfw"
 
 options HZ=1000
 
@@ -211,7 +211,8 @@
 device          wlan_ccmp               #802.11 CCMP support
 device          wlan_tkip               #802.11 TKIP support
 device          wlan_xauth              #802.11 external authenticator support
-device          wlan_acl
+device          wlan_acl #802.11 MAC-based ACL support
+device wlan_amrr #802.11 adaption algorithm support
 device an # Aironet 4500/4800 802.11 wireless NICs.
 device          ath             # Atheros pci/cardbus NIC's
 device          ath_hal         # pci/cardbus chip support
@@ -283,3 +284,5 @@
 device rum # Ralink Technology RT2501USB wireless NICs
 device ural # Ralink Technology RT2500USB wireless NICs
 device zyd # ZyDAS zb1211/zb1211b wireless NICs
+device run # Ralink Technology RT2700U/RT2800U/RT3000U wireless NICs
+#device runfw # Ralink Technology RT2700/RT2800/RT3000 NICs firmware
Index: build/scripts/4buildkernel.sh
===================================================================
--- build/scripts/4buildkernel.sh (revision 510)
+++ build/scripts/4buildkernel.sh (working copy)
@@ -47,7 +47,8 @@
         gzip -9 kernel
         mv kernel.gz $MW_BUILDPATH/tmp/
         cd modules/$MW_BUILDPATH/tmp/sys/modules
-        cp aesni/aesni.ko glxsb/glxsb.ko padlock/padlock.ko if_tap/if_tap.ko if_vlan/if_vlan.ko dummynet/dummynet.ko ipfw/ipfw.ko $MW_BUILDPATH/m0n0fs/boot/kernel
+        cp aesni/aesni.ko glxsb/glxsb.ko padlock/padlock.ko if_tap/if_tap.ko if_vlan/if_vlan.ko dummynet/dummynet.ko ipfw/ipfw.ko runfw/runfw.ko $MW_BUILDPATH/m0n0fs/boot/kernel
+ cp runfw/runfw.ko $MW_BUILDPATH/tmp
  if [ $MW_ARCH = "i386" ]; then
                 cp acpi/acpi/acpi.ko $MW_BUILDPATH/tmp
         fi
Index: build/scripts/5makeimage.sh
===================================================================
--- build/scripts/5makeimage.sh (revision 510)
+++ build/scripts/5makeimage.sh (working copy)
@@ -47,6 +47,7 @@
  cp $MW_BUILDPATH/tmp/kernel.gz $MW_BUILDPATH/tmp/firmwaretmp
  cp $MW_BUILDPATH/tmp/mfsroot-$PLATFORM.gz $MW_BUILDPATH/tmp/firmwaretmp/mfsroot.gz
  cp /boot/{loader,loader.rc} $MW_BUILDPATH/tmp/firmwaretmp
+ cp $MW_BUILDPATH/tmp/runfw.ko $MW_BUILDPATH/tmp/firmwaretmp
  if [ $MW_ARCH = "i386" ]; then
  cp $MW_BUILDPATH/tmp/acpi.ko $MW_BUILDPATH/tmp/firmwaretmp
  fi
@@ -70,6 +71,7 @@
  if [ -r $MW_BUILDPATH/freebsd8/build/boot/$PLATFORM/boot.config ]; then
  cp $MW_BUILDPATH/freebsd8/build/boot/$PLATFORM/boot.config /mnt
  fi
+ cp $MW_BUILDPATH/tmp/runfw.ko /mnt/boot/kernel
  if [ $MW_ARCH = "i386" ]; then
  cp $MW_BUILDPATH/tmp/acpi.ko /mnt/boot/kernel
  fi
@@ -97,6 +99,7 @@
  echo -n "Making ISO..."
  cd $MW_BUILDPATH/tmp
  mkdir -p $MW_BUILDPATH/tmp/cdroot/boot/kernel
+ cp $MW_BUILDPATH/tmp/runfw.ko $MW_BUILDPATH/tmp/cdroot/boot/kernel
  if [ $MW_ARCH = "i386" ]; then
  cp $MW_BUILDPATH/tmp/acpi.ko $MW_BUILDPATH/tmp/cdroot/boot/kernel
  fi
Index: phpconf/inc/globals.inc
===================================================================
--- phpconf/inc/globals.inc (revision 510)
+++ phpconf/inc/globals.inc (working copy)
@@ -48,8 +48,8 @@
     "pppoe_interface" => "ngwan0",
     "debug" => false,
     "latest_config" => "2.0",
-    "wireless_regex" => "/^(wi|an|ath|ral|rum|ural|zyd)/",
-    "wireless_hostap_regex" => "/^(wi|ath|ral|rum|ural)/"
+    "wireless_regex" => "/^(wi|an|ath|ral|rum|ural|zyd|run)/",
+    "wireless_hostap_regex" => "/^(wi|ath|ral|rum|ural|run)/"
 );
 
 ?>
« Reply #17 on: January 07, 2013, 15:58:34 »
Fred Grayson *****
Posts: 994

I'm not a programmer so I can't help much beyond doing some testing of whatever you come up with.

One thing I can report is that on my already running m0n0wall 1.8.1b536, if I plug the Ralink RT2870 USB dongle in, the following is written to the console:

ugen0.2: <Ralink> at usbus0

So it is at least detected from a plug and play sense.

Rebooting with dongle in place doesn't yield anything more.

Do let me know if you come up with any new images you want tested.


Thanks!

--
Google is your friend and Bob's your uncle.
« Reply #18 on: January 16, 2013, 20:06:40 »
Lennart Grahl ***
Posts: 153

I'm still on it but I'm pretty busy for the next few weeks.

It's just a matter of how we are going to include the runfw module.
« Reply #19 on: January 16, 2013, 20:09:35 »
Fred Grayson *****
Posts: 994

Thank you for sticking with this.

--
Google is your friend and Bob's your uncle.
« Reply #20 on: September 04, 2013, 00:06:12 »
Lennart Grahl ***
Posts: 153

I need someone who is willing to test the version I've built (b545_with_run). You can download it from www.lgrahl.de/download

Please tick the new checkbox "Enable Ralink USB wireless devices" on "System -> Advanced" and reboot before trying to use the device.
« Reply #21 on: September 04, 2013, 00:28:12 »
Fred Grayson *****
Posts: 994

Thanks for this. I downloaded generic-pc-serial-1.8.1b545_with_run.img and installed it onto my ALIX board with my RaLink USB wireless dongle plugged in. And I checked the box for this on the Advavced page and rebooted

I do not see the RaLink as available in the Interfaces: Assign network ports: Edit WLAN | Parent interface drop down list. What is there is the ath0 Atheros which is installed. Do I need to test on other hardware that has only the Ralink installed?

Below is my dmesg output:

$ dmesg
Copyright (c) 1992-2012 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
   The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 8.3-RELEASE #0: Tue Sep  3 23:59:35 CEST 2013
    root@bsd-nat:/usr/m0n0wall/build83/tmp/sys/i386/compile/M0N0WALL_GENERIC i386
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: Geode(TM) Integrated Processor by AMD PCS (498.05-MHz 586-class CPU)
  Origin = "AuthenticAMD"  Id = 0x5a2  Family = 5  Model = a  Stepping = 2
  Features=0x88a93d<FPU,DE,PSE,TSC,MSR,CX8,SEP,PGE,CMOV,CLFLUSH,MMX>
  AMD Features=0xc0400000<MMX+,3DNow!+,3DNow!>
real memory  = 268435456 (256 MB)
avail memory = 227209216 (216 MB)
pnpbios: Bad PnP BIOS data checksum
wlan: mac acl policy registered
kbd0 at kbdmux0
K6-family MTRR support enabled (2 registers)
cryptosoft0: <software crypto> on motherboard
pcib0: <Host to PCI bridge> pcibus 0 on motherboard
pci0: <PCI bus> on pcib0
Geode LX: PC Engines ALIX.2 v0.99h tinyBIOS V1.4a (C)1997-2007
pci0: <encrypt/decrypt, entertainment crypto> at device 1.2 (no driver attached)
vr0: <VIA VT6105M Rhine III 10/100BaseTX> port 0x1000-0x10ff mem 0xe0000000-0xe00000ff irq 10 at device 9.0 on pci0
vr0: Quirks: 0x2
vr0: Revision: 0x96
miibus0: <MII bus> on vr0
ukphy0: <Generic IEEE 802.3u media interface> PHY 1 on miibus0
ukphy0:  none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow
vr0: Ethernet address: 00:0d:b9:12:e8:0c
vr0: [ITHREAD]
vr1: <VIA VT6105M Rhine III 10/100BaseTX> port 0x1400-0x14ff mem 0xe0040000-0xe00400ff irq 11 at device 10.0 on pci0
vr1: Quirks: 0x2
vr1: Revision: 0x96
miibus1: <MII bus> on vr1
ukphy1: <Generic IEEE 802.3u media interface> PHY 1 on miibus1
ukphy1:  none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow
vr1: Ethernet address: 00:0d:b9:12:e8:0d
vr1: [ITHREAD]
vr2: <VIA VT6105M Rhine III 10/100BaseTX> port 0x1800-0x18ff mem 0xe0080000-0xe00800ff irq 15 at device 11.0 on pci0
vr2: Quirks: 0x2
vr2: Revision: 0x96
miibus2: <MII bus> on vr2
ukphy2: <Generic IEEE 802.3u media interface> PHY 1 on miibus2
ukphy2:  none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow
vr2: Ethernet address: 00:0d:b9:12:e8:0e
vr2: [ITHREAD]
ath0: <Atheros 5413> mem 0xe00c0000-0xe00cffff irq 9 at device 12.0 on pci0
ath0: [ITHREAD]
ath0: AR5413 mac 10.5 RF5413 phy 6.1
isab0: <PCI-ISA bridge> port 0x6000-0x6007,0x6100-0x61ff,0x6200-0x623f,0x9d00-0x9d7f,0x9c00-0x9c3f at device 15.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <AMD CS5536 UDMA100 controller> port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xff00-0xff0f at device 15.2 on pci0
ata0: <ATA channel> at channel 0 on atapci0
ata0: [ITHREAD]
ata1: <ATA channel> at channel 1 on atapci0
ata1: [ITHREAD]
ohci0: <OHCI (generic) USB controller> mem 0xefffe000-0xefffefff irq 12 at device 15.4 on pci0
ohci0: [ITHREAD]
usbus0: <OHCI (generic) USB controller> on ohci0
ehci0: <AMD CS5536 (Geode) USB 2.0 controller> mem 0xefffd000-0xefffdfff irq 12 at device 15.5 on pci0
ehci0: [ITHREAD]
usbus1: EHCI version 1.0
usbus1: <AMD CS5536 (Geode) USB 2.0 controller> on ehci0
cpu0 on motherboard
pmtimer0 on isa0
orm0: <ISA Option ROM> at iomem 0xe0000-0xea7ff pnpid ORM0000 on isa0
uart0: <16550 or compatible> at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
uart0: [FILTER]
uart0: console (9600,n,8,1)
uart1: <16550 or compatible> at port 0x2f8-0x2ff irq 3 on isa0
uart1: [FILTER]
atrtc0: <AT Real Time Clock> at port 0x70 irq 8 on isa0
Timecounter "TSC" frequency 498052808 Hz quality 800
Timecounters tick every 1.000 msec
IPsec: Initialized Security Association Processing.
IP Filter: v4.1.34 initialized.  Default = block all, Logging = enabled
usbus0: 12Mbps Full Speed USB v1.0
usbus1: 480Mbps High Speed USB v2.0
ugen0.1: <AMD> at usbus0
uhub0: <AMD OHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus0
ugen1.1: <AMD> at usbus1
uhub1: <AMD EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus1
mdad0: 30MB <SanDisk SDCFJ-32 HDX 2.15> at ata0-master PIO4
0: Preloaded image </mfsroot> 22009856 bytes at 0xc0df0274
Root mount waiting for: usbus1 usbus0
uhub0: 4 ports with 4 removable, self powered
Root mount waiting for: usbus1
uhub1: 4 ports with 4 removable, self powered
Root mount waiting for: usbus1
ugen1.2: <Ralink> at usbus1
Trying to mount root from ufs:/dev/md0
glxsb0: <AMD Geode LX Security Block (AES-128-CBC, RNG)> mem 0xefff4000-0xefff7fff irq 9 at device 1.2 on pci0
vr0: link state changed to UP
vr1: link state changed to UP
wlan999: Ethernet address: 00:80:48:7e:99:d7
wlan999: Ethernet address: 00:80:48:7e:99:d7

--
Google is your friend and Bob's your uncle.
« Reply #22 on: September 04, 2013, 18:04:00 »
Lennart Grahl ***
Posts: 153

Meh...

Did the previous version (b510) work for you? It could be that you have a different device to the OP.
« Reply #23 on: September 04, 2013, 19:10:22 »
Fred Grayson *****
Posts: 994

I didn't try your 510 but will as it is easy to do and go back.

It's more work to try them on my old retired GB-1000 firewall appliance but I am willing to give it a go. I'll get back to you with results.


--
Google is your friend and Bob's your uncle.
« Reply #24 on: September 04, 2013, 19:26:35 »
Fred Grayson *****
Posts: 994

1.8.0b510_run_included built on Sat May 26 15:17:59 CEST 2012 on PC Engines ALIX with Ralink USB plugged in:

Like before with b545, Ralink does not appear as available on WLAN setup page. Also, with b510 there is no "Enable Ralink USB wireless devices" on "System -> Advanced" page, but that's understandable. dmesg output below. I am now moving on to testing with my old GB-1000.

$ dmesg
Copyright (c) 1992-2011 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
   The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 8.2-RELEASE-p7 #0: Sat May 26 15:27:09 CEST 2012
    root@compil0r:/usr/m0n0wall/build82/tmp/sys/i386/compile/M0N0WALL_GENERIC i386
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: Geode(TM) Integrated Processor by AMD PCS (498.05-MHz 586-class CPU)
  Origin = "AuthenticAMD"  Id = 0x5a2  Family = 5  Model = a  Stepping = 2
  Features=0x88a93d<FPU,DE,PSE,TSC,MSR,CX8,SEP,PGE,CMOV,CLFLUSH,MMX>
  AMD Features=0xc0400000<MMX+,3DNow!+,3DNow!>
real memory  = 268435456 (256 MB)
avail memory = 227213312 (216 MB)
pnpbios: Bad PnP BIOS data checksum
wlan: mac acl policy registered
kbd0 at kbdmux0
K6-family MTRR support enabled (2 registers)
cryptosoft0: <software crypto> on motherboard
pcib0: <Host to PCI bridge> pcibus 0 on motherboard
pci0: <PCI bus> on pcib0
Geode LX: PC Engines ALIX.2 v0.99h tinyBIOS V1.4a (C)1997-2007
pci0: <encrypt/decrypt, entertainment crypto> at device 1.2 (no driver attached)
vr0: <VIA VT6105M Rhine III 10/100BaseTX> port 0x1000-0x10ff mem 0xe0000000-0xe00000ff irq 10 at device 9.0 on pci0
vr0: Quirks: 0x2
vr0: Revision: 0x96
miibus0: <MII bus> on vr0
ukphy0: <Generic IEEE 802.3u media interface> PHY 1 on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
vr0: Ethernet address: 00:0d:b9:12:e8:0c
vr0: [ITHREAD]
vr1: <VIA VT6105M Rhine III 10/100BaseTX> port 0x1400-0x14ff mem 0xe0040000-0xe00400ff irq 11 at device 10.0 on pci0
vr1: Quirks: 0x2
vr1: Revision: 0x96
miibus1: <MII bus> on vr1
ukphy1: <Generic IEEE 802.3u media interface> PHY 1 on miibus1
ukphy1:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
vr1: Ethernet address: 00:0d:b9:12:e8:0d
vr1: [ITHREAD]
vr2: <VIA VT6105M Rhine III 10/100BaseTX> port 0x1800-0x18ff mem 0xe0080000-0xe00800ff irq 15 at device 11.0 on pci0
vr2: Quirks: 0x2
vr2: Revision: 0x96
miibus2: <MII bus> on vr2
ukphy2: <Generic IEEE 802.3u media interface> PHY 1 on miibus2
ukphy2:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
vr2: Ethernet address: 00:0d:b9:12:e8:0e
vr2: [ITHREAD]
ath0: <Atheros 5413> mem 0xe00c0000-0xe00cffff irq 9 at device 12.0 on pci0
ath0: [ITHREAD]
ath0: AR5413 mac 10.5 RF5413 phy 6.1
isab0: <PCI-ISA bridge> port 0x6000-0x6007,0x6100-0x61ff,0x6200-0x623f,0x9d00-0x9d7f,0x9c00-0x9c3f at device 15.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <AMD CS5536 UDMA100 controller> port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xff00-0xff0f at device 15.2 on pci0
ata0: <ATA channel 0> on atapci0
ata0: [ITHREAD]
ata1: <ATA channel 1> on atapci0
ata1: [ITHREAD]
ohci0: <OHCI (generic) USB controller> mem 0xefffe000-0xefffefff irq 12 at device 15.4 on pci0
ohci0: [ITHREAD]
usbus0: <OHCI (generic) USB controller> on ohci0
ehci0: <AMD CS5536 (Geode) USB 2.0 controller> mem 0xefffd000-0xefffdfff irq 12 at device 15.5 on pci0
ehci0: [ITHREAD]
usbus1: EHCI version 1.0
usbus1: <AMD CS5536 (Geode) USB 2.0 controller> on ehci0
cpu0 on motherboard
pmtimer0 on isa0
orm0: <ISA Option ROM> at iomem 0xe0000-0xea7ff pnpid ORM0000 on isa0
uart0: <16550 or compatible> at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
uart0: [FILTER]
uart0: console (9600,n,8,1)
uart1: <16550 or compatible> at port 0x2f8-0x2ff irq 3 on isa0
uart1: [FILTER]
atrtc0: <AT Real Time Clock> at port 0x70 irq 8 on isa0
Timecounter "TSC" frequency 498052753 Hz quality 800
Timecounters tick every 1.000 msec
IPsec: Initialized Security Association Processing.
IP Filter: v4.1.34 initialized.  Default = block all, Logging = enabled
usbus0: 12Mbps Full Speed USB v1.0
usbus1: 480Mbps High Speed USB v2.0
ugen0.1: <AMD> at usbus0
uhub0: <AMD OHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus0
ugen1.1: <AMD> at usbus1
uhub1: <AMD EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus1
mdad0: 30MB <SanDisk SDCFJ-32 HDX 2.15> at ata0-master PIO4
0: Preloaded image </mfsroot> 21536768 bytes at 0xc0d88c40
Root mount waiting for: usbus1 usbus0
uhub0: 4 ports with 4 removable, self powered
Root mount waiting for: usbus1
uhub1: 4 ports with 4 removable, self powered
Root mount waiting for: usbus1
ugen1.2: <Ralink> at usbus1
Trying to mount root from ufs:/dev/md0
glxsb0: <AMD Geode LX Security Block (AES-128-CBC, RNG)> mem 0xefff4000-0xefff7fff irq 9 at device 1.2 on pci0
wlan999: Ethernet address: 00:80:48:7e:99:d7

--
Google is your friend and Bob's your uncle.
« Reply #25 on: September 04, 2013, 19:57:02 »
Fred Grayson *****
Posts: 994

On my GB-1000 with Ralink USB and generic-pc-serial-1.8.1b545_with_run.img, and checking the box for "Enable Ralink USB wireless devices" on "System -> Advanced", the Ralink is not seen in as available Interfaces: Assign network ports: Edit WLAN | Parent interface drop down list.

On a Windows box the driver that is installed is Ralink RT2870 Wireless LAN Card

I'm fresh out of ideas. Anything else I can do to help?




dmesg output:

$ dmesg
Copyright (c) 1992-2012 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
   The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 8.3-RELEASE #0: Tue Sep  3 23:59:35 CEST 2013
    root@bsd-nat:/usr/m0n0wall/build83/tmp/sys/i386/compile/M0N0WALL_GENERIC i386
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: Intel Celeron (634.78-MHz 686-class CPU)
  Origin = "GenuineIntel"  Id = 0x686  Family = 6  Model = 8  Stepping = 6
  Features=0x383f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE>
real memory  = 268369920 (255 MB)
avail memory = 227090432 (216 MB)
wlan: mac acl policy registered
kbd1 at kbdmux0
cryptosoft0: <software crypto> on motherboard
acpi0: <VIA692 AWRDACPI> on motherboard
acpi0: [ITHREAD]
acpi0: Power Button (fixed)
acpi0: reservation of 0, a0000 (3) failed
acpi0: reservation of 100000, fef0000 (3) failed
Timecounter "ACPI-safe" frequency 3579545 Hz quality 850
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0
cpu0: <ACPI CPU> on acpi0
acpi_button0: <Power Button> on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff,0x4000-0x407f,0x4080-0x40ff,0x5000-0x500f on acpi0
pci0: <ACPI PCI bus> on pcib0
pcib1: <PCI-PCI bridge> at device 1.0 on pci0
pci1: <PCI bus> on pcib1
isab0: <PCI-ISA bridge> at device 7.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <VIA 82C596B UDMA66 controller> port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xd000-0xd00f at device 7.1 on pci0
ata0: <ATA channel> at channel 0 on atapci0
ata0: [ITHREAD]
ata1: <ATA channel> at channel 1 on atapci0
ata1: [ITHREAD]
uhci0: <VIA 83C572 USB controller> port 0xd400-0xd41f irq 12 at device 7.2 on pci0
uhci0: [ITHREAD]
usbus0: <VIA 83C572 USB controller> on uhci0
pci0: <bridge, HOST-PCI> at device 7.3 (no driver attached)
fxp0: <Intel 82559 Pro/100 Ethernet> port 0xd800-0xd83f mem 0xd5403000-0xd5403fff,0xd5000000-0xd50fffff irq 11 at device 9.0 on pci0
miibus0: <MII bus> on fxp0
inphy0: <i82555 10/100 media interface> PHY 1 on miibus0
inphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow
fxp0: Ethernet address: 00:d0:68:00:1e:74
fxp0: [ITHREAD]
fxp1: <Intel 82559 Pro/100 Ethernet> port 0xdc00-0xdc3f mem 0xd5401000-0xd5401fff,0xd5100000-0xd51fffff irq 10 at device 10.0 on pci0
miibus1: <MII bus> on fxp1
inphy1: <i82555 10/100 media interface> PHY 1 on miibus1
inphy1:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow
fxp1: Ethernet address: 00:d0:68:00:1e:75
fxp1: [ITHREAD]
fxp2: <Intel 82559 Pro/100 Ethernet> port 0xe000-0xe03f mem 0xd5400000-0xd5400fff,0xd5200000-0xd52fffff irq 5 at device 11.0 on pci0
miibus2: <MII bus> on fxp2
inphy2: <i82555 10/100 media interface> PHY 1 on miibus2
inphy2:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow
fxp2: Ethernet address: 00:d0:68:00:1e:76
fxp2: [ITHREAD]
fxp3: <Intel 82559 Pro/100 Ethernet> port 0xe400-0xe43f mem 0xd5402000-0xd5402fff,0xd5300000-0xd53fffff irq 12 at device 16.0 on pci0
miibus3: <MII bus> on fxp3
inphy3: <i82555 10/100 media interface> PHY 1 on miibus3
inphy3:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow
fxp3: Ethernet address: 00:d0:68:00:1e:77
fxp3: [ITHREAD]
acpi_tz0: <Thermal Zone> on acpi0
atrtc0: <AT realtime clock> port 0x70-0x73 irq 8 on acpi0
pmtimer0 on isa0
orm0: <ISA Option ROM> at iomem 0xc8000-0xcbfff pnpid ORM0000 on isa0
atkbdc0: <Keyboard controller (i8042)> at port 0x60,0x64 on isa0
atkbd0: <AT Keyboard> irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
atkbd0: [ITHREAD]
uart0: <16550 or compatible> at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
uart0: [FILTER]
uart0: console (9600,n,8,1)
uart1: <16550 or compatible> at port 0x2f8-0x2ff irq 3 on isa0
uart1: [FILTER]
acpi_throttle0: <ACPI CPU Throttling> on cpu0
Timecounter "TSC" frequency 634776368 Hz quality 800
Timecounters tick every 1.000 msec
IPsec: Initialized Security Association Processing.
IP Filter: v4.1.34 initialized.  Default = block all, Logging = enabled
mdusbus0: 12Mbps Full Speed USB v1.0
0:ad0: 30MB <SanDisk SDCFJ-32 HDX 2.15> at ata0-master PIO4
ugen0.1: <VIA> at usbus0
uhub0: <VIA UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus0
 Preloaded image </mfsroot> 22009856 bytes at 0xc0df0274
Root mount waiting for: usbus0
uhub0: 2 ports with 2 removable, self powered
Root mount waiting for: usbus0
ugen0.2: <Ralink> at usbus0
Trying to mount root from ufs:/dev/md0
fxp0: Microcode loaded, int_delay: 1000 usec  bundle_max: 6
fxp0: Microcode loaded, int_delay: 1000 usec  bundle_max: 6
fxp0: Microcode loaded, int_delay: 1000 usec  bundle_max: 6
fxp0: Microcode loaded, int_delay: 1000 usec  bundle_max: 6
fxp0: Microcode loaded, int_delay: 1000 usec  bundle_max: 6
fxp0: Microcode loaded, int_delay: 1000 usec  bundle_max: 6
fxp0: Microcode loaded, int_delay: 1000 usec  bundle_max: 6
fxp0: Microcode loaded, int_delay: 1000 usec  bundle_max: 6
fxp0: link state changed to UP
« Last Edit: September 04, 2013, 20:00:22 by Fred Grayson »

--
Google is your friend and Bob's your uncle.
« Reply #26 on: September 07, 2013, 01:08:35 »
Lennart Grahl ***
Posts: 153

Thanks for your input! I assume this is a different device/revision to the one the OP has. Let's switch over to this thread for this particular problem.

In the meantime it would be great if funchaser would wake up from the dead and give my modification a try. Wink
« Last Edit: September 07, 2013, 01:31:25 by Lennart Grahl »
« Reply #27 on: November 24, 2013, 17:55:24 »
Lennart Grahl ***
Posts: 153

run is now included in b550. Have a look at the "System" page for enabling the firmware which is needed for run devices.
« Reply #28 on: November 24, 2013, 18:03:07 »
Fred Grayson *****
Posts: 994

Thanks! I await the appearance of b550 in http://m0n0.ch/wall/snapshots/1.8.1/ and will try it out.

--
Google is your friend and Bob's your uncle.
« Reply #29 on: November 24, 2013, 18:37:25 »
Lennart Grahl ***
Posts: 153

Thanks! I await the appearance of b550 in http://m0n0.ch/wall/snapshots/1.8.1/ and will try it out.

It's probably going to disappoint you. I don't think it will work with your device unless the FreeBSD driver itself has been improved.
funchaser though might be lucky.

Sorry about that.  Sad
 
Pages: 1 [2] 3
 
 
Powered by SMF 1.1.20 | SMF © 2013, Simple Machines