Disable MTRRs on FreeBSD-stable. Without this, it hangs on boot in the MTRR

setting for AGP cards on SMP machines.
main
Eric Anholt 2003-04-26 06:39:55 +00:00
parent cb32dde3be
commit acb5d6b273
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@
#endif
#ifdef __i386__
#define __REALLY_HAVE_MTRR (__HAVE_MTRR)
#define __REALLY_HAVE_MTRR (__HAVE_MTRR) && (__FreeBSD_version >= 500000)
#else
#define __REALLY_HAVE_MTRR 0
#endif

View File

@ -49,7 +49,7 @@
#endif
#ifdef __i386__
#define __REALLY_HAVE_MTRR (__HAVE_MTRR)
#define __REALLY_HAVE_MTRR (__HAVE_MTRR) && (__FreeBSD_version >= 500000)
#else
#define __REALLY_HAVE_MTRR 0
#endif