mirror of
https://github.com/dreamlayers/netbsd-mopd.git
synced 2026-02-02 14:51:00 +00:00
The second stage of Ultrix loading is a struct which tells the kernel things it needs for netbooting. Ultrix needs this and can't use other servers like rarpd, bootparamd and bootpd. The only other server needed is NFS. I don't like how I wrote so much code to create a simple struct. There should be a better way. But this works.
12 lines
151 B
Makefile
12 lines
151 B
Makefile
# $NetBSD$
|
|
SRCS=mkultconf.c
|
|
OBJS=${SRCS:.c=.o}
|
|
|
|
LDLIBS+=../common/libcommon.a
|
|
CFLAGS+=-I../common
|
|
|
|
mkultconf: ${OBJS}
|
|
|
|
clean:
|
|
rm -f ${OBJS} mkultconf
|