Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ndisgen(8) [freebsd man page]

NDISGEN(8)						    BSD System Manager's Manual 						NDISGEN(8)

NAME
ndisgen -- generate a FreeBSD driver module from a Windows(R) NDIS driver distribution SYNOPSIS
ndisgen [/path/to/INF /path/to/SYS] DESCRIPTION
The ndisgen script uses the ndiscvt(8) utility and other tools to generate a FreeBSD loadable driver module and a static ELF object module from a Windows(R) NDIS driver, for use with the ndis(4) compatibility module. The ndisgen script is interactive and contains its own help section. Unless the paths to both files are supplied on the command line, the script will prompt the user for the .INF and .SYS files needed to generate the FreeBSD driver module. The script will also prompt for any firmware or other external files needed. SEE ALSO
ld(1), objcopy(1), ndis(4), kldload(8), ndiscvt(8) HISTORY
The ndisgen utility first appeared in FreeBSD 6.0. AUTHORS
The ndisgen utility was written by Bill Paul <wpaul@windriver.com>. BSD
April 24, 2005 BSD

Check Out this Related Man Page

NDIS(4) 						   BSD Kernel Interfaces Manual 						   NDIS(4)

NAME
ndis -- NDIS miniport driver wrapper SYNOPSIS
options NDISAPI device ndis device wlan DESCRIPTION
The ndis driver is a wrapper designed to allow binary Windows(R) NDIS miniport network drivers to be used with FreeBSD. The ndis driver is provided in source code form and must be combined with the Windows(R) driver supplied with your network adapter. The ndis driver uses the ndisapi kernel subsystem to relocate and link the Windows(R) binary so that it can be used in conjunction with native code. The ndisapi sub- system provides an interface between the NDIS API and the FreeBSD networking infrastructure. The Windows(R) driver is essentially fooled into thinking it is running on Windows(R). Note that this means the ndis driver is only useful on x86 machines. To build a functional driver, the user must have a copy of the driver distribution media for his or her card. From this distribution, the user must extract two files: the .SYS file containing the driver binary code, and its companion .INF file, which contains the definitions for driver-specific registry keys and other installation data such as device identifiers. These two files can be converted into a kernel module file using the ndisgen(8) utility. This file contains a binary image of the driver plus registry key data. When the ndis driver loads, it will create sysctl(3) nodes for each registry key extracted from the .INF file. The ndis driver is designed to support mainly Ethernet and wireless network devices with PCI, PCMCIA and USB bus attachments. (Cardbus devices are also supported as a subset of PCI.) It can support many different media types and speeds. One limitation however, is that there is no consistent way to learn if an Ethernet device is operating in full or half duplex mode. The NDIS API allows for a generic means for determining link state and speed, but not the duplex setting. There may be driver-specific registry keys to control the media setting which can be configured via the sysctl(8) command. DIAGNOSTICS
ndis%d: watchdog timeout A packet was queued for transmission and a transmit command was issued, however the device failed to acknowledge the transmission before a timeout expired. SEE ALSO
altq(4), arp(4), netintro(4), ng_ether(4), ifconfig(8), ndis_events(8), ndiscvt(8), ndisgen(8), wpa_supplicant(8) NDIS 5.1 specification, http://www.microsoft.com. HISTORY
The ndis device driver first appeared in FreeBSD 5.3. AUTHORS
The ndis driver was written by Bill Paul <wpaul@windriver.com>. BSD
March 14, 2010 BSD
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Windows XP Professional and FreeBSD

From FreeBSD how could I access files/directories in my Windows XP machine (networked) Is there any program in FreeBSD/Unix that I could use to emulate/control my Windows XP machine and what do I need to enable or install in my Windows XP machine (6 Replies)
Discussion started by: charlie499
6 Replies

2. UNIX for Dummies Questions & Answers

Callin a script

Hi all, What is the best way to make script A be called by any user in the system by just typing "A" in his prompt (he needs no path specification)? Thanks (3 Replies)
Discussion started by: omran
3 Replies

3. UNIX for Dummies Questions & Answers

exec w/input file

Why is my code not doing what I want it to do? I have 3 files that I want to process that are in format file123, file456, file789. echo "Processing each file one at a time..." cd $dir ls -r1 file???.dat > input.dat exec < input.dat IFS='|' while read INPUT_FILE ; do ... (7 Replies)
Discussion started by: giannicello
7 Replies

4. UNIX for Dummies Questions & Answers

FreeBSD

What is FreeBSD, who does use Free? (3 Replies)
Discussion started by: cyberangel
3 Replies

5. BSD

Floppy drive problem.

My FreeBSD install at ad0s1, and Windows 2000 at ad2s1. Everytime I start my FreeBSD, it shows me this message: fdc0: cmd 3 failed at out byte 1 of 3 pmtimer 0 on isa0 fdc0: cannot reserve I/O port range (6 ports) My Floppy drive info: 0x03F2 - 0x03F3 0x03F4 - 0x03F5 0x03F7 - 0x03F7... (6 Replies)
Discussion started by: _cs
6 Replies

6. UNIX for Advanced & Expert Users

Help-prompt for path and take this as input in find command

HI , I am trying to wite a script that will prompt me saying " what is path that you want to find ?". once i specify the path, the script should put this path in the find command mentioned below and execute the script: find <path> -ctime +200 -type f -exec ls -l {} \; for example : ... (7 Replies)
Discussion started by: bsandeep_80
7 Replies

7. UNIX for Dummies Questions & Answers

help with my program

hi.. i'm a newbie here and with unix.. i'm almost done with my program, i only needed to create a utility or a script that will search and sort the files on my file. if you can help me create a script i will greatly appreciate it. thanks :):):) (4 Replies)
Discussion started by: pangit_me
4 Replies

8. Windows & DOS: Issues & Discussions

How do I remove FreeBSD to boot from Windows CD?

Just got free laptop w/FreeBSD. Won't boot from CD, only boots into FreeBsd. I need to install Windows, what do I do?:( (6 Replies)
Discussion started by: laforg
6 Replies

9. Fedora

FreeBSD

I'm using Windows mostly and the only *nix thing I used during my life was cygwin (I like command line :)). But currently I have (by an occasion) a DVD with latest FreeBSD. I don't know why, but I want to install it... But probably, this OS is too difficult for a beginner. I heard, it's used on... (3 Replies)
Discussion started by: TeenageWerewolf
3 Replies

10. Homework & Coursework Questions

script similar to rm utility

1. The problem statement, all variables and given/known data: saferm is a replacement for the rm utility. Rather than removing files, it move files in a sub directoy called".saferm" in the user's home directory. If "~/.saferm" doesn't exist, it is automatically created. The -l options lists the ... (3 Replies)
Discussion started by: Joey12
3 Replies

11. OS X (Apple)

"Permission Denied" while modifying mounted files on MAC

Hi, I have two machines 1. MacOSx (Users --> userMac , IP - a.b.c.d) 2. FreeBSD (Users --> userBSD, IP- p.q.r.s) I want to modify some files of FreeBSD on my MacOS. So, I mounted the FreeBSD folder on my Mac as follows. $ sudo mount -o -P p.q.r.s:/usr/home/user... (5 Replies)
Discussion started by: akash.mahakode
5 Replies

12. Shell Programming and Scripting

Use Unix shell script to open Windows command prompt (cmd)

Hello, I work on Windows and I use Putty to access a remote UNIX server. I am trying to build a shell script that will have as main task to open the Windows command prompt (cmd) and run some Windows commands thereafter. The commands are actually file transfer commands that will download a file... (14 Replies)
Discussion started by: rookie2785
14 Replies

13. UNIX for Dummies Questions & Answers

Need to create 2 log files

Hello, and thanks upfront for looking! I've been searching the threads for a way to do this, and have come up empty. Then again I don't seem to use the right search criteria... We have a driver script which logs output to files which are used to be viewed via an online scheduling tool:... (5 Replies)
Discussion started by: peteroc
5 Replies

14. UNIX for Dummies Questions & Answers

echo windows path

I have developed a script that transfers files from a UNIX machine to a Windows machine. Transferring the files is working perfectly, but my echo statements are displaying the destination (Windows) path names incorrectly. I understand that it is the "\" that is causing this, but is there anyway... (5 Replies)
Discussion started by: shammah77
5 Replies

15. UNIX for Beginners Questions & Answers

Start /SYS on SUN SPARC does not start machine [SUN SPARC ENTERPRISE T-5240]

-> start /SYS Are you sure you want to start /SYS (y/n)? y Starting /SYS ]-> show HOST /HOST Targets: bootmode diag domain Properties: autorestart = reset autorunonerror = false bootfailrecovery = poweroff ... (29 Replies)
Discussion started by: z_haseeb
29 Replies