Put I*86_CPU options in opt_global.h and don't #include "opt_cpu.h"

centrally.
This commit is contained in:
Bruce Evans 1997-08-31 22:43:46 +00:00
parent c5b15a8a44
commit f3086365a3
3 changed files with 15 additions and 15 deletions

View File

@ -1,4 +1,4 @@
# $Id: options.i386,v 1.54 1997/08/02 05:20:14 msmith Exp $
# $Id: options.i386,v 1.55 1997/08/09 00:19:39 dyson Exp $
BOUNCEPAGES opt_bounce.h
USER_LDT
@ -65,10 +65,12 @@ CPU_SUSP_HLT opt_cpu.h
CPU_UPGRADE_HW_CACHE opt_cpu.h
CYRIX_CACHE_WORKS opt_cpu.h
CYRIX_CACHE_REALLY_WORKS opt_cpu.h
I386_CPU opt_cpu.h
I486_CPU opt_cpu.h
I586_CPU opt_cpu.h
I686_CPU opt_cpu.h
# The CPU type affects the endian conversion functions all over the kernel.
I386_CPU opt_global.h
I486_CPU opt_global.h
I586_CPU opt_global.h
I686_CPU opt_global.h
SC_SPLASH_SCREEN opt_syscons.h
MAXCONS opt_syscons.h

View File

@ -1,4 +1,4 @@
# $Id: options.i386,v 1.54 1997/08/02 05:20:14 msmith Exp $
# $Id: options.i386,v 1.55 1997/08/09 00:19:39 dyson Exp $
BOUNCEPAGES opt_bounce.h
USER_LDT
@ -65,10 +65,12 @@ CPU_SUSP_HLT opt_cpu.h
CPU_UPGRADE_HW_CACHE opt_cpu.h
CYRIX_CACHE_WORKS opt_cpu.h
CYRIX_CACHE_REALLY_WORKS opt_cpu.h
I386_CPU opt_cpu.h
I486_CPU opt_cpu.h
I586_CPU opt_cpu.h
I686_CPU opt_cpu.h
# The CPU type affects the endian conversion functions all over the kernel.
I386_CPU opt_global.h
I486_CPU opt_global.h
I586_CPU opt_global.h
I686_CPU opt_global.h
SC_SPLASH_SCREEN opt_syscons.h
MAXCONS opt_syscons.h

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)endian.h 7.8 (Berkeley) 4/3/91
* $Id: endian.h,v 1.14 1997/03/17 00:51:51 nate Exp $
* $Id: endian.h,v 1.15 1997/04/20 11:44:32 bde Exp $
*/
#ifndef _MACHINE_ENDIAN_H_
@ -57,10 +57,6 @@
#ifndef KERNEL
#include <sys/cdefs.h>
#else
#ifndef ACTUALLY_LKM_NOT_KERNEL
#include "opt_cpu.h"
#endif
#endif
__BEGIN_DECLS