From 713feac239297aee6b52d8496d7f156a3e7c110c Mon Sep 17 00:00:00 2001 From: tsubai Date: Tue, 12 Jun 2001 17:20:50 +0000 Subject: [PATCH] Include powerpc/mpc6xx/{bat.h,pte.h} if PPC_MPC6XX is defined. --- sys/arch/powerpc/include/Makefile | 6 +++--- sys/arch/powerpc/include/bat.h | 9 +++++++++ sys/arch/powerpc/include/pte.h | 9 +++++++++ 3 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 sys/arch/powerpc/include/bat.h create mode 100644 sys/arch/powerpc/include/pte.h diff --git a/sys/arch/powerpc/include/Makefile b/sys/arch/powerpc/include/Makefile index e5123a1d7e94..0667d2c723f9 100644 --- a/sys/arch/powerpc/include/Makefile +++ b/sys/arch/powerpc/include/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.21 2001/06/10 11:01:27 tsubai Exp $ +# $NetBSD: Makefile,v 1.22 2001/06/12 17:20:50 tsubai Exp $ KDIR= /sys/arch/powerpc/include INCSDIR= /usr/include/powerpc INCS= ansi.h aout_machdep.h asm.h \ - bswap.h byte_swap.h \ + bat.h bswap.h byte_swap.h \ cdefs.h cpu.h \ db_machdep.h \ elf_machdep.h endian.h endian_machdep.h \ @@ -15,7 +15,7 @@ INCS= ansi.h aout_machdep.h asm.h \ kcore.h \ limits.h lock.h \ math.h \ - param.h pcb.h pio.h pmap.h proc.h profile.h psl.h ptrace.h \ + param.h pcb.h pio.h pmap.h proc.h profile.h psl.h pte.h ptrace.h \ reg.h reloc.h \ setjmp.h signal.h stdarg.h \ trap.h types.h \ diff --git a/sys/arch/powerpc/include/bat.h b/sys/arch/powerpc/include/bat.h new file mode 100644 index 000000000000..773a2cc8d683 --- /dev/null +++ b/sys/arch/powerpc/include/bat.h @@ -0,0 +1,9 @@ +/* $NetBSD: bat.h,v 1.4 2001/06/12 17:20:50 tsubai Exp $ */ + +#ifdef _KERNEL_OPT +#include "opt_ppcarch.h" +#endif + +#ifdef PPC_MPC6XX +#include +#endif diff --git a/sys/arch/powerpc/include/pte.h b/sys/arch/powerpc/include/pte.h new file mode 100644 index 000000000000..c60fe711e75f --- /dev/null +++ b/sys/arch/powerpc/include/pte.h @@ -0,0 +1,9 @@ +/* $NetBSD: pte.h,v 1.4 2001/06/12 17:20:50 tsubai Exp $ */ + +#ifdef _KERNEL_OPT +#include "opt_ppcarch.h" +#endif + +#ifdef PPC_MPC6XX +#include +#endif