6e56beb6d2
code. Apart from the first one, none really affect typical configurations but are nevertheless unnecessary limitations. We use netbooted PCs as student X-terminals and all of the below fixes have been useful. Apologies for including them all in one PR, but some are just too silly or trivial to send on their own! a) Newer SMC cards have hardware addresses starting with 00:E0. Netboot compares the MAC address with 00:00:C0 to determine if it is a WD/SMC card, so it fails to detect these. b) Netboot is unable to boot kzipped kernels, as it assumes that the kernel load address is 0x100000. c) Users can abort the booting process and enter arbitrary network addresses, or boot from a floppy disk. This can be a problem when netbooted machines are used in a student environment. d) It is not possible to set all options via bootp. For example there is no way to remotely force a client to boot from disk. With both SECURE_BOOT(patch below) and NO_TFTP defined, short of unplugging the eprom there is no way at all to get the client to boot locally. A generic solution is to allow complete netboot commands to be sent using bootp lines such as: :T132="diskboot": e) The last character of netboot command names is not checked. You can type 'iz 10.0.0.1' and it will be interpreted as 'ip'. This is only important if you try to add a new command which is the same as an existing one except for the last character. f) We have a configuration where multiple servers are willing to serve a diskless client. The tftp config file, or the bootptab entry on each server must specify the root and swap filesystems as 'ip:/fs' even though 'ip' will usually be the responding server's IP address. It would be nice if netboot could automatically prepend the server's IP address to an entry specified as just '/fs', so that multiple servers can use the same tftp or bootp configuration files. Admittedly this is hardly a major problem! PR: 7098 Submitted by: Ian Dowse <iedowse@maths.tcd.ie>
95 lines
2.9 KiB
Makefile
95 lines
2.9 KiB
Makefile
# $Id: Makefile,v 1.17 1998/06/29 18:52:33 bde Exp $
|
|
#
|
|
# Makefile for NETBOOT
|
|
#
|
|
# Basic Options:
|
|
# -DSECURE_BOOT - Disable 'boot>' prompt completely
|
|
# -DASK_BOOT - Ask "Boot from Network (Y/N) ?" at startup
|
|
# -DROMSIZE - Size of EPROM - Must be set (even for .COM files)
|
|
# -DRELOC - Relocation address (usually 0x90000)
|
|
#
|
|
# NS8390 Options:
|
|
# -DINCLUDE_WD - Include Western Digital/SMC support
|
|
# -DINCLUDE_NE - Include NE1000/NE2000 support
|
|
# -DINCLUDE_3COM - Include 3c503 support
|
|
# -D_3COM_USE_AUI - Disable transceiver on 3c503 by default
|
|
# -DNE_BASE - Base I/O address for NE1000/NE2000
|
|
# -D_3COM_BASE - Base I/O address for 3c503
|
|
# -DWD_DEFAULT_MEM- Default memory location for WD/SMC cards
|
|
# XXX nothing depends on this Makefile so you must run `make clean' after
|
|
# changing an option.
|
|
#
|
|
|
|
### options for PCI cards
|
|
###
|
|
PCI_VENDOR=0x10ec
|
|
PCI_DEVICE=0x8029
|
|
PCI_CLASS=0x02,0x00,0x00
|
|
|
|
PROG= nb8390.com nb3c509.com nb8390.rom nb3c509.rom
|
|
# Order is very important on the SRCS line for this prog
|
|
SRCS= start2.S main.c misc.c bootmenu.c rpc.c
|
|
|
|
BINDIR= /usr/mdec
|
|
BINMODE= 555
|
|
#CFLAGS= -O2 -DNFS -DROMSIZE=${ROMSIZE} -DRELOC=${RELOCADDR} -DASK_BOOT
|
|
CFLAGS= -O2 -DNFS -DROMSIZE=${ROMSIZE} -DRELOC=${RELOCADDR} # -DASK_BOOT
|
|
CFLAGS += -DPCI -DPCI_VENDOR=${PCI_VENDOR} -DPCI_DEVICE=${PCI_DEVICE}
|
|
CFLAGS += -DPCI_CLASS=${PCI_CLASS} -DASK_BOOT
|
|
#NS8390= -DINCLUDE_WD -DWD_DEFAULT_MEM=0xD0000
|
|
NS8390= -DINCLUDE_NE
|
|
#NS8390+= -DINCLUDE_3COM -D_3COM_BASE=0x300
|
|
CLEANFILES+= netboot.com
|
|
CLEANFILES+= makerom start2.ro 3c509.o ns8390.o
|
|
LDFLAGS+= -N -T ${RELOCADDR} -e _start -nostdlib
|
|
NOSHARED= YES
|
|
MAN8= netboot.8
|
|
STRIP=
|
|
|
|
ROMSIZE=16384
|
|
RELOCADDR=0x90000
|
|
|
|
.SUFFIXES: .ro
|
|
|
|
.S.ro:
|
|
${CC} ${CFLAGS} -DBOOTROM -o ${.TARGET} -c ${.IMPSRC}
|
|
|
|
ns8390.o: ns8390.c
|
|
${CC} ${CFLAGS} $(NS8390) -o ${.TARGET} -c $<
|
|
|
|
makerom: makerom.c
|
|
${CC} ${CFLAGS} -o ${.TARGET} -DROMSIZE=${ROMSIZE} ${.CURDIR}/makerom.c
|
|
|
|
nb8390.rom: makerom start2.ro ${SRCS:N*.h:R:S/$/.o/g} ns8390.o
|
|
${LD} ${LDFLAGS} -o ${.TARGET} ${OBJS:S/start2.o/start2.ro/} ns8390.o
|
|
strip ${.TARGET}
|
|
size ${.TARGET}
|
|
${.OBJDIR}/makerom ${.TARGET}
|
|
|
|
nb3c509.rom: makerom start2.ro ${SRCS:N*.h:R:S/$/.o/g} 3c509.o
|
|
${LD} ${LDFLAGS} -o ${.TARGET} ${OBJS:S/start2.o/start2.ro/} 3c509.o
|
|
strip ${.TARGET}
|
|
size ${.TARGET}
|
|
${.OBJDIR}/makerom ${.TARGET}
|
|
|
|
nb8390.com: makerom start2.ro ${SRCS:N*.h:R:S/$/.o/g} ns8390.o
|
|
${LD} ${LDFLAGS} -o ${.TARGET}.tmp ${OBJS} ns8390.o
|
|
strip ${.TARGET}.tmp
|
|
size ${.TARGET}.tmp
|
|
dd ibs=32 skip=1 if=${.TARGET}.tmp of=${.TARGET}
|
|
rm -f ${.TARGET}.tmp
|
|
|
|
nb3c509.com: start2.o ${SRCS:N*.h:R:S/$/.o/g} 3c509.o
|
|
${LD} ${LDFLAGS} -o ${.TARGET}.tmp ${OBJS} 3c509.o
|
|
strip ${.TARGET}.tmp
|
|
size ${.TARGET}.tmp
|
|
dd ibs=32 skip=1 if=${.TARGET}.tmp of=${.TARGET}
|
|
rm -f ${.TARGET}.tmp
|
|
|
|
# This force the creation of the "machine" symlink. These objects are
|
|
# specially handled in this file, and thus can't be taken care of in
|
|
# ../Makefile.inc
|
|
3c509.o makerom ns8390.o start2.ro: machine
|
|
|
|
.include <bsd.prog.mk>
|