aboutsummaryrefslogtreecommitdiff
path: root/sys/isa
diff options
context:
space:
mode:
Diffstat (limited to 'sys/isa')
-rw-r--r--sys/isa/syscons_isa.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/sys/isa/syscons_isa.c b/sys/isa/syscons_isa.c
index a5b07035b6b4..b915e63569bb 100644
--- a/sys/isa/syscons_isa.c
+++ b/sys/isa/syscons_isa.c
@@ -60,12 +60,6 @@ __FBSDID("$FreeBSD$");
#include <isa/isavar.h>
-#include "opt_xbox.h"
-
-#ifdef XBOX
-#include <machine/xbox.h>
-#endif
-
static devclass_t sc_devclass;
static sc_softc_t main_softc;
@@ -158,19 +152,6 @@ sc_get_cons_priority(int *unit, int *flags)
const char *at;
int f, u;
-#ifdef XBOX
- /*
- * The XBox Loader does not support hints, which makes our initial
- * console probe fail. Therefore, if an XBox is found, we hardcode the
- * existence of the console, as it is always there anyway.
- */
- if (arch_i386_is_xbox) {
- *unit = 0;
- *flags = SC_KERNEL_CONSOLE;
- return (CN_INTERNAL);
- }
-#endif
-
*unit = -1;
for (u = 0; u < 16; u++) {
if (resource_disabled(SC_DRIVER_NAME, u))