diff options
author | jake <jake@FreeBSD.org> | 2002-11-18 03:28:23 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2002-11-18 03:28:23 +0000 |
commit | 74e796908f99b6e54b661b97fa58b043ef77d46a (patch) | |
tree | 360fd652fbc093c311dac02ac2a1d9ec3ab377a9 | |
parent | 9df506c483bc146e6f84271619ef0454ed31107b (diff) | |
download | FreeBSD-src-74e796908f99b6e54b661b97fa58b043ef77d46a.zip FreeBSD-src-74e796908f99b6e54b661b97fa58b043ef77d46a.tar.gz |
Run configure at SI_SUB_THIRD instead of SI_SUB_ANY like other
architectures.
-rw-r--r-- | sys/sparc64/sparc64/autoconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sparc64/sparc64/autoconf.c b/sys/sparc64/sparc64/autoconf.c index f0325d9..24783ab 100644 --- a/sys/sparc64/sparc64/autoconf.c +++ b/sys/sparc64/sparc64/autoconf.c @@ -43,7 +43,7 @@ static device_t nexusdev; static void configure(void *); -SYSINIT(configure, SI_SUB_CONFIGURE, SI_ORDER_ANY, configure, NULL); +SYSINIT(configure, SI_SUB_CONFIGURE, SI_ORDER_THIRD, configure, NULL); static void configure(void *v) |