Allow install to build from FreeBSD source using NetBSD tools and

headers during the port of FreeBSD to a NetBSD supported architecture.
FreeBSD needs to be able to install itself from very early on.
This commit is contained in:
John Birrell 1998-01-09 06:05:13 +00:00
parent 8d6fec39d2
commit d9b8124d7d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32360

View File

@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "From: @(#)xinstall.c 8.1 (Berkeley) 7/21/93";
#endif
static const char rcsid[] =
"$Id: xinstall.c,v 1.26 1997/10/27 22:53:33 ache Exp $";
"$Id: xinstall.c,v 1.27 1997/10/28 14:20:10 ache Exp $";
#endif /* not lint */
/*-
@ -713,10 +713,18 @@ trymmap(fd)
if (fstatfs(fd, &stfs) < 0)
return 0;
/* NetBSD MOUNT_XXX defines are strings, but doesn't have a MOUNT_NONE. */
#ifdef MOUNT_NONE
switch(stfs.f_type) {
case MOUNT_UFS: /* should be safe.. */
case MOUNT_CD9660: /* should be safe.. */
return 1;
}
#else
if (strcmp(stfs.f_fstypename,MOUNT_UFS) == 0 ||
strcmp(stfs.f_fstypename,MOUNT_CD9660) == 0)
return 1;
#endif
return 0;
}