Correct some spelling and grammatical errors.

This commit is contained in:
Ceri Davies 2005-07-22 10:35:34 +00:00
parent 4b77209bcc
commit fc0b043d79

View File

@ -43,7 +43,7 @@ echo ""
mainmenu() { mainmenu() {
header header
echo " This is script is designed to guide you through the process" echo " This script is designed to guide you through the process"
echo " of converting a Windows(r) binary driver module and .INF" echo " of converting a Windows(r) binary driver module and .INF"
echo " specification file into a FreeBSD ELF kernel module for use" echo " specification file into a FreeBSD ELF kernel module for use"
echo " with the NDIS compatibility system." echo " with the NDIS compatibility system."
@ -94,7 +94,7 @@ echo " card which contains Windows(r) drivers. The NDIS compatibility"
echo " system is designed to emulate the NDIS API of a couple of different" echo " system is designed to emulate the NDIS API of a couple of different"
echo " Windows(r) releases, however it works best with drivers designed" echo " Windows(r) releases, however it works best with drivers designed"
echo " for NDIS 5.0 or later. Drivers distributed for Windows 2000 should" echo " for NDIS 5.0 or later. Drivers distributed for Windows 2000 should"
echo " work, however for best results you should use a driver designed" echo " work; however, for best results you should use a driver designed"
echo " for Windows XP or Windows Server 2003." echo " for Windows XP or Windows Server 2003."
echo "" echo ""
echo " If your card was supplied with your computer, or is a built-in device," echo " If your card was supplied with your computer, or is a built-in device,"
@ -119,7 +119,7 @@ echo " perform the driver installation. It contains information that tells"
echo " the installer what devices the driver supports and what registry keys" echo " the installer what devices the driver supports and what registry keys"
echo " should be created to control driver configuration. The .SYS file" echo " should be created to control driver configuration. The .SYS file"
echo " is the actual driver executable code in Windows(r) Portable Executable" echo " is the actual driver executable code in Windows(r) Portable Executable"
echo " (PE) format. Note that sometimes the .INF file is supplied in unicode" echo " (PE) format. Note that sometimes the .INF file is supplied in Unicode"
echo " format. Unicode .INF files must be converted to ASCII form with the" echo " format. Unicode .INF files must be converted to ASCII form with the"
echo " iconv(1) utility before this installer script can use them." echo " iconv(1) utility before this installer script can use them."
echo " Occasionally, a driver may require firmware or register setup" echo " Occasionally, a driver may require firmware or register setup"
@ -170,7 +170,7 @@ echo " - The FreeBSD linker, ld(1) (part of the base install)."
echo " - The objcopy(1) utility (part of the base install)." echo " - The objcopy(1) utility (part of the base install)."
echo " - The ndiscvt(1) utility (part of the base install)." echo " - The ndiscvt(1) utility (part of the base install)."
echo "" echo ""
echo " If your happen to end up with a .INF file that's in unicode format," echo " If you happen to end up with a .INF file that's in Unicode format,"
echo " then you'll also need:" echo " then you'll also need:"
echo "" echo ""
echo " - The iconv(1) utility." echo " - The iconv(1) utility."
@ -311,7 +311,7 @@ echo " Driver file conversion"
echo "" echo ""
echo " The script will now try to convert the .INF and .SYS files" echo " The script will now try to convert the .INF and .SYS files"
echo " using the ndiscvt(1) utility. This utility can handle most" echo " using the ndiscvt(1) utility. This utility can handle most"
echo " .INF files, however occasionally it can fail to parse some files" echo " .INF files; however, occasionally it can fail to parse some files"
echo " due to subtle syntax issues: the .INF syntax is very complex," echo " due to subtle syntax issues: the .INF syntax is very complex,"
echo " and the Windows(r) parser will sometimes allow files with small" echo " and the Windows(r) parser will sometimes allow files with small"
echo " syntax errors to be processed correctly which ndiscvt(1) will" echo " syntax errors to be processed correctly which ndiscvt(1) will"
@ -339,7 +339,7 @@ header
echo " Firmware file conversion" echo " Firmware file conversion"
echo "" echo ""
echo " If your driver uses additional firmware files, please list them" echo " If your driver uses additional firmware files, please list them"
echo " below. When you're finished, just press enter to contiue. (If your" echo " below. When you're finished, just press enter to continue. (If your"
echo " driver doesn't need any extra firmware files, just press enter" echo " driver doesn't need any extra firmware files, just press enter"
echo " to move to the next step.)" echo " to move to the next step.)"
echo "" echo ""
@ -536,7 +536,7 @@ while : ; do
*) *)
header header
echo "" echo ""
echo -n " Sorry, I didn't underatand that. Press enter to try again: " echo -n " Sorry, I didn't understand that. Press enter to try again: "
read KEYPRESS read KEYPRESS
;; ;;
esac esac