File tree Expand file tree Collapse file tree 5 files changed +2
-92
lines changed Expand file tree Collapse file tree 5 files changed +2
-92
lines changed Original file line number Diff line number Diff line change @@ -153,13 +153,6 @@ KdpDebugLogInit(
153
153
ULONG BootPhase
154
154
);
155
155
156
- VOID
157
- NTAPI
158
- KdpBochsInit (
159
- struct _KD_DISPATCH_TABLE * DispatchTable ,
160
- ULONG BootPhase
161
- );
162
-
163
156
VOID
164
157
NTAPI
165
158
KdpKdbgInit (
@@ -202,9 +195,8 @@ KdpSafeWriteMemory(
202
195
#define KdScreen 0
203
196
#define KdSerial 1
204
197
#define KdFile 2
205
- #define KdBochs 3
206
- #define KdKdbg 4
207
- #define KdMax 5
198
+ #define KdKdbg 3
199
+ #define KdMax 4
208
200
209
201
/* KD Private Debug Modes */
210
202
typedef struct _KDP_DEBUG_MODE
@@ -217,7 +209,6 @@ typedef struct _KDP_DEBUG_MODE
217
209
UCHAR Screen :1 ;
218
210
UCHAR Serial :1 ;
219
211
UCHAR File :1 ;
220
- UCHAR Bochs :1 ;
221
212
};
222
213
223
214
/* Generic Value */
Original file line number Diff line number Diff line change @@ -129,13 +129,6 @@ KdpGetDebugMode(PCHAR Currentp2)
129
129
KdpLogFileName .Buffer = p1 ;
130
130
}
131
131
}
132
- /* Check for BOCHS Debugging */
133
- else if (!_strnicmp (p2 , "BOCHS" , 5 ))
134
- {
135
- /* Enable It */
136
- p2 += 5 ;
137
- KdpDebugMode .Bochs = TRUE;
138
- }
139
132
140
133
return p2 ;
141
134
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -139,15 +139,10 @@ ULONG KdPrintBufferChanges = 0;
139
139
140
140
#ifndef _WINKD_
141
141
/* Make bochs debug output in the very early boot phase available */
142
- //#define AUTO_ENABLE_BOCHS
143
142
ULONG PortNumber = DEFAULT_DEBUG_PORT ;
144
143
CPPORT PortInfo = {0 , DEFAULT_DEBUG_BAUD_RATE , 0 };
145
144
ULONG KdpPortIrq ;
146
- #ifdef AUTO_ENABLE_BOCHS
147
- KDP_DEBUG_MODE KdpDebugMode = {{{.Bochs = TRUE}}};
148
- #else
149
145
KDP_DEBUG_MODE KdpDebugMode ;
150
- #endif
151
146
PKDP_INIT_ROUTINE WrapperInitRoutine ;
152
147
KD_DISPATCH_TABLE WrapperTable ;
153
148
LIST_ENTRY KdProviders = {& KdProviders , & KdProviders };
@@ -156,7 +151,6 @@ KD_DISPATCH_TABLE DispatchTable[KdMax];
156
151
PKDP_INIT_ROUTINE InitRoutines [KdMax ] = {KdpScreenInit ,
157
152
KdpSerialInit ,
158
153
KdpDebugLogInit ,
159
- KdpBochsInit ,
160
154
KdpKdbgInit };
161
155
#endif
162
156
Original file line number Diff line number Diff line change @@ -401,7 +401,6 @@ if(NOT _WINKD_)
401
401
endif ()
402
402
403
403
list (APPEND SOURCE
404
- ${REACTOS_SOURCE_DIR} /ntoskrnl/kd/wrappers/bochs.c
405
404
${REACTOS_SOURCE_DIR} /ntoskrnl/kd/wrappers/kdbg.c
406
405
${REACTOS_SOURCE_DIR} /ntoskrnl/kd/kdio.c
407
406
${REACTOS_SOURCE_DIR} /ntoskrnl/kd/kdmain.c )
You can’t perform that action at this time.
0 commit comments