If we don't have ethernet, nfs_boot_init reduces to just a panic.

This is so I don't get an undefined symbol compiling a kernel with
NFSCLIENT but no ethernet.
This commit is contained in:
paulus 1994-07-16 11:43:12 +00:00
parent 988b7f5158
commit a02a99e328

View File

@ -1,4 +1,4 @@
/* $NetBSD: nfs_boot.c,v 1.6 1994/06/29 07:28:36 deraadt Exp $ */
/* $NetBSD: nfs_boot.c,v 1.7 1994/07/16 11:43:12 paulus Exp $ */
/*
* Copyright (c) 1994 Adam Glass, Gordon Ross
@ -49,6 +49,9 @@
#include <nfs/nfs.h>
#include <nfs/nfsdiskless.h>
#include "ether.h"
#if NETHER > 0
/*
* Support for NFS diskless booting, specifically getting information
* about where to boot from, what pathnames, etc.
@ -602,3 +605,14 @@ out:
m_freem(m);
return error;
}
#else /* NETHER */
int nfs_boot_init(nd, procp)
struct nfs_diskless *nd;
struct proc *procp;
{
panic("nfs_boot_init: no ether");
}
#endif /* NETHER */