/* * BK Id: SCCS/s.board.h 1.5 05/17/01 18:14:24 cort */ /* * * Copyright (c) 1999 Grant Erickson * * Module name: board.h * * Description: * A generic include file which pulls in appropriate include files * for specific board types based on configuration settings. * */ #ifdef __KERNEL__ #ifndef __BOARD_H__ #define __BOARD_H__ #include #if defined(CONFIG_OAK) #include #endif #if defined(CONFIG_WALNUT) #include #endif #ifdef __cplusplus extern "C" { #endif /* * The "residual" board information structure the boot loader passes * into the kernel. */ extern unsigned char __res[]; #ifdef __cplusplus } #endif #endif /* __BOARD_H__ */ #endif /* __KERNEL__ */