⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 board.h

📁 《嵌入式系统设计与实例开发实验教材二源码》Linux内核移植与编译实验
💻 H
字号:
/* * BK Id: SCCS/s.board.h 1.5 05/17/01 18:14:24 cort *//* * *    Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu> * *    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 <linux/config.h>#if defined(CONFIG_OAK)#include <asm/oak.h>#endif#if defined(CONFIG_WALNUT)#include <asm/walnut.h>#endif#ifdef __cplusplusextern "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__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -