diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/i386/netboot/make_boot_network | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/i386/netboot/make_boot_network b/tools/i386/netboot/make_boot_network index faa6fbeb5..a0b0302a4 100755 --- a/tools/i386/netboot/make_boot_network +++ b/tools/i386/netboot/make_boot_network @@ -1,8 +1,7 @@ #!/bin/sh type=$1 -[ -z "$type" ] && { echo "usage: $0 <network card type> (eg: 3c59x)" ; exit 1; } -[ -z "$type" ] && type=3c90x +[ -z "$type" ] && { echo "usage: $0 <network card type> (eg: 3c90x)" ; exit 1; } [ -e menu.lst ] || { echo "missing file menu.lst, create one based on menu.lst.example"; exit 1; } |