1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Don't try to access external files from SKI unless we are actually running

in SKI.
This commit is contained in:
Doug Rabson 2001-09-24 20:01:29 +00:00
parent 40aef04652
commit 588154e27b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83908

View File

@ -288,6 +288,9 @@ ssc_clone (void *arg, char *name, int namelen, dev_t *dev)
static void
ssc_drvinit(void *unused)
{
if (!ia64_running_in_simulator())
return;
ssccreate(-1);
}