Enable netboot support by default, since it can now coexist with disk and

cdrom support.  This avoids having to distribute separate loaders.
This commit is contained in:
Jake Burkholder 2002-07-07 23:08:22 +00:00
parent a136efe9b6
commit dd5629cde7

View File

@ -14,9 +14,9 @@ SRCS= locore.S main.c metadata.c vers.c
LOADER_DISK_SUPPORT?= yes
LOADER_UFS_SUPPORT?= yes
LOADER_CD9660_SUPPORT?= yes
LOADER_NET_SUPPORT?= no
LOADER_NFS_SUPPORT?= no
LOADER_TFTP_SUPPORT?= no
LOADER_NET_SUPPORT?= yes
LOADER_NFS_SUPPORT?= yes
LOADER_TFTP_SUPPORT?= yes
.if ${LOADER_DISK_SUPPORT} == "yes"
CFLAGS+= -DLOADER_DISK_SUPPORT