public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Pavel Machek <pavel@ucw.cz>
To: Pontus Fuchs <pof@users.sourceforge.net>
Cc: linux-kernel@vger.kernel.org, hubicka@atrey.karlin.mff.cuni.cz
Subject: Re: Announce: ndiswrapper
Date: Tue, 18 Nov 2003 23:22:26 +0100	[thread overview]
Message-ID: <20031118222226.GA282@elf.ucw.cz> (raw)
In-Reply-To: <1069153340.2200.28.camel@dhcp-225.mlm.tactel.se>

Hi!

> Since some vendors refuses to release specs or even a binary
> Linux-driver for their WLAN cards I desided to try to solve it myself by
> making a kernel module that can load Ndis (windows network driver API)
> drivers. I'm not trying to implement all of the Ndis API but rather
> implement the functions needed to get these unsupported cards working.
> 
> Currently it works fine with my Broadcom 4301 but I would like to get in
> touch with people that have similar cards that are willing to do some
> testing/hacking.

Wow, works for me, Broadcom 94306. [Well, I do not have second wifi to
test right now, but module loads, I can iwconfig it etc.] I'd add this
to the docs:


Index: README
===================================================================
RCS file: /cvsroot/ndiswrapper/ndiswrapper/README,v
retrieving revision 1.1
diff -u -u -r1.1 README
--- README	17 Nov 2003 13:23:36 -0000	1.1
+++ README	18 Nov 2003 22:19:22 -0000
@@ -4,8 +4,11 @@
 1. Compile the driver
 ---------------------
 * You need kernel 2.6.0-test8 or higher!
-* Make sure your kernel complied without framepointer and Sleep-inside-spinlock debugging
-  See the kernel hacking menu
+* Make sure your kernel complied without framepointer
+  (CONFIG_FRAME_POINTER unset) and Sleep-inside-spinlock 
+  debugging (CONFIG_DEBUG_SPINLOCK unset). (See the kernel hacking menu)
+* do make modules_install
+* make sure you are not cross-compiling
 > cd driver
 > make
 

And perhaps this script gets usefull? [Fancy version might download
that package using wget then unzip it ;-).]

								Pavel

#!/bin/bash
if zcat /proc/config.gz | grep CONFIG_FRAME_POINTER=y; then
	echo Turn off CONFIG_FRAME_POINTER
	fi
if zcat /proc/config.gz | grep CONFIG_DEBUG_SPINLOCK=y; then
	echo Turn off CONFIG_DEBUG_SPINLOCK
	fi
(
	cd driver
	make
)
(
	cd utils
	make
)
if lspci | grep "Broadcom Corporation BCM94306"; then
	echo "This one should work, good."
	insmod driver/ndiswrapper.ko
	echo "Get R65194.EXE and unpack it here."
	utils/loaddriver 14e4 4320 R65194/TMSetup/bcmwl5.sys R65194/TMSetup/bcmwl5.inf
	fi


-- 
When do you have a heart between your knees?
[Johanka's followup: and *two* hearts?]

  parent reply	other threads:[~2003-11-18 22:22 UTC|newest]

Thread overview: 84+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-11-18 11:02 Announce: ndiswrapper Pontus Fuchs
2003-11-18 12:51 ` Christian Axelsson
2003-11-18 13:26   ` Maciej Zenczykowski
2003-11-18 13:37     ` Christian Axelsson
2003-11-18 13:49     ` Richard B. Johnson
2003-11-18 14:02       ` Arjan van de Ven
2003-11-18 13:59 ` Jeff Garzik
2003-11-18 14:14   ` Maciej Zenczykowski
2003-11-18 14:49     ` Jan-Benedict Glaw
2003-11-18 15:31       ` Maciej Zenczykowski
2003-11-18 14:19   ` Richard B. Johnson
2003-11-18 14:31   ` Davide Libenzi
2003-11-18 22:22 ` Pavel Machek [this message]
  -- strict thread matches above, loose matches on Subject: below --
2003-11-20  3:11 Jean Tourrilhes
2003-11-20  3:26 ` Jeff Garzik
2003-11-20  3:34   ` Jean Tourrilhes
2003-11-21 12:05     ` Vojtech Pavlik
2003-11-21 17:25       ` Jean Tourrilhes
2003-11-21 17:30         ` Jeff Garzik
2003-11-21 17:43           ` Vojtech Pavlik
2003-11-21 17:48           ` Jean Tourrilhes
2003-11-21 17:50         ` Vojtech Pavlik
2003-11-20  4:00   ` William Lee Irwin III
2003-11-20  4:16     ` Nick Piggin
2003-11-20  4:35       ` Neil Brown
2003-11-20  4:49         ` Nick Piggin
2003-11-20  4:57           ` Randy.Dunlap
2003-11-20  5:05             ` Nick Piggin
2003-11-20  6:50               ` Benjamin Herrenschmidt
2003-11-20  5:27           ` William Lee Irwin III
2003-11-20  5:36             ` Jeff Garzik
2003-11-20  5:36             ` Nick Piggin
2003-11-20  4:38       ` William Lee Irwin III
2003-11-20  4:59         ` Nick Piggin
2003-11-20  5:12           ` William Lee Irwin III
2003-11-20  5:27             ` Nick Piggin
2003-11-24 15:40               ` Rik van Riel
2003-11-20 12:41           ` Diego Calleja García
2003-11-20 13:04             ` Christoph Hellwig
2003-11-20 20:24             ` Pasi Kärkkäinen
2003-11-20  5:11         ` Valdis.Kletnieks
2003-11-20  9:56         ` Ingo Oeser
2003-11-20 13:15           ` Ralph Metzler
2003-11-20  6:52       ` Matt Mackall
2003-11-20  7:40         ` Nick Piggin
2003-11-20 10:13         ` Geert Uytterhoeven
2003-11-20 10:17           ` William Lee Irwin III
2003-11-20 22:47             ` Bill Davidsen
2003-11-20 22:59               ` William Lee Irwin III
2003-11-20 23:26                 ` Oliver Hunt
2003-11-20 23:32                 ` Bill Davidsen
2003-11-20 13:19         ` Gene Heskett
2003-11-20 23:15         ` Bill Davidsen
2003-11-20  5:25     ` Jeff Garzik
2003-11-20  5:26       ` William Lee Irwin III
2003-11-20  6:54         ` Benjamin Herrenschmidt
2003-11-20 17:27           ` Jean Tourrilhes
2003-11-20 23:57             ` Benjamin Herrenschmidt
2003-11-21  0:03               ` Jean Tourrilhes
2003-11-20 16:47       ` Jason Lunz
2003-11-20 17:36         ` Jeff Garzik
2003-11-20 17:24     ` Jean Tourrilhes
2003-11-20 17:48       ` Richard B. Johnson
2003-11-20 18:03       ` William Lee Irwin III
2003-11-20 23:01       ` Bill Davidsen
2003-11-21  5:48         ` H. Peter Anvin
2003-11-21  7:26           ` Linus Torvalds
2003-11-21  7:37             ` H. Peter Anvin
2003-11-21  7:47             ` Nuno Silva
2003-11-21  7:51               ` Linus Torvalds
2003-11-20 10:55 ` Pavel Machek
2003-11-20 17:22   ` Jean Tourrilhes
2003-11-20 23:04 ` Bill Davidsen
2003-11-20 23:45   ` Jean Tourrilhes
2003-11-21 17:08     ` Bill Davidsen
2003-11-23 23:13 ` Jan Rychter
2003-11-20 23:53 Mudama, Eric
2003-11-21  0:00 ` Jean Tourrilhes
2003-11-21  1:01   ` Bob McElrath
2003-11-24 17:42     ` Pavel Machek
2003-11-21  7:58   ` Jan De Luyck
2003-11-21  8:59   ` Jamie Lokier
     [not found] <TNwv.6Lz.7@gated-at.bofh.it>
     [not found] ` <TPHV.1vf.1@gated-at.bofh.it>
     [not found]   ` <TQXu.420.11@gated-at.bofh.it>
2003-11-21  2:53     ` Andrew Miklas
2003-11-21 10:33       ` Maciej Zenczykowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20031118222226.GA282@elf.ucw.cz \
    --to=pavel@ucw.cz \
    --cc=hubicka@atrey.karlin.mff.cuni.cz \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pof@users.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox