1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
# Setup file for netboot programs
#
#####################################################################
#
# General parameters for all programs
#
[general]
netbootdir = %PREFIX%/lib/netboot
database = //netboot.db
#
#####################################################################
#
# General parameters for makerom program
#
[makerom:general]
kerneldir = //binaries
loaderdir = //binaries
netdrvdir = //netdrvr
utilsdir = //utils
#
#####################################################################
#
# Define descriptions for kernel files
#
[makerom:kernel:kernel]
description = standard kernel (recommended)
file = kernel.bin
flags =
[makerom:kernel:kernelm]
description = minimal kernel for small bootroms
file = kernelm.bin
flags = MINIMAL
[makerom:kernel:kernel86]
description = kernel for 16-Bit x86 processors
file = kernel86.bin
flags = X86
#
#####################################################################
#
# Define descriptions and command line options for network drivers
#
# Some of these descriptions apply for manufacturer provided network
# drivers which are not included with the netboot package. In order
# to use them, just copy the driver binary into the netdrv directory.
#
[makerom:netdrv:3c501]
description = "3Com 3C501"
file = 3c501.com
type = packet driver
parameters = HW_IRQ,IO_ADDR
cmdline = "0x%S %H 0x%A"
[makerom:netdrv:3c503]
description = "3Com 3C503"
file = 3c503.com
type = packet driver
parameters = HW_IRQ,IO_ADDR,AUI_TYPE
cmdline = "0x%S %H 0x%A %T"
[makerom:netdrv:3c509]
description = "3Com 3C509"
file = 3c509.com
type = packet driver
parameters =
cmdline = "0x%S"
[makerom:netdrv:arcether]
description = "ArcNet card"
file = arcether.com
type = packet driver
parameters = HW_IRQ,IO_ADDR,BASE_MEM
cmdline = "0x%S %H 0x%A 0x%M"
[makerom:netdrv:depca]
description = "DEPCA card"
file = depca.com
type = packet driver
parameters = HW_IRQ,IO_ADDR,BASE_MEM
cmdline = "0x%S %H 0x%A 0x%M"
[makerom:netdrv:ne1000]
description = "NE1000 and clones"
file = ne1000.com
type = packet driver
parameters = HW_IRQ,IO_ADDR
cmdline = "0x%S %H 0x%A"
[makerom:netdrv:ne2000]
description = "NE2000 and clones"
file = ne2000.com
type = packet driver
parameters = HW_IRQ,IO_ADDR
cmdline = "0x%S %H 0x%A"
[makerom:netdrv:ne2100]
description = "NE2100"
file = ne2100.com
type = packet driver
parameters = HW_IRQ,IO_ADDR,DMA_NUM
cmdline = "0x%S %H 0x%A %D"
[makerom:netdrv:smc_wd]
description = "WD80x3 and clones"
file = smc_wd.com
type = packet driver
parameters = HW_IRQ,IO_ADDR,BASE_MEM
cmdline = "0x%S %H 0x%A 0x%M"
[makerom:netdrv:pkt8000]
description = "SMC ISA cards (including WD80x3)"
file = pkt8000.com
type = packet driver
parameters =
cmdline = "0x%S"
[makerom:netdrv:e100b]
description = "Intel EtherExpress Pro/10 & Pro/100B PCI"
file = e100bpkt.com
type = packet driver
parameters =
cmdline = "0x%S"
[makerom:netdrv:e100isa]
description = "Intel EtherExpress Pro/100 ISA"
file = e100isa.exe
type = packet driver
parameters =
cmdline = "-i=0x%S"
[makerom:netdrv:dc21x4]
description = "Cards with Digital Semiconductor's DC21x4 chipset"
file = dc21x4.com
type = packet driver
parameters =
cmdline = "0x%S"
[makerom:netdrv:3c90x]
description = "3Com 3C90X Fast Ethernet XL PCI cards"
file = 3c90xpd.com
type = packet driver
parameters =
cmdline = "-r /I=%S"
[makerom:netdrv:3c59x]
description = "3Com 3C59X Etherlink II PCI cards"
file = 3c59xpd.com
type = packet driver
parameters =
cmdline = "-r /B=P /I=%S"
|