irSect.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.irSect.h 1.6 05/18/01 15:17:22 cort
  3.  */
  4. /*
  5.  *
  6.  *    Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
  7.  *
  8.  *    Module name: irSect.h
  9.  *    
  10.  *    Description:
  11.  *      Defines variables to hold the absolute starting address and size
  12.  *      of the Linux kernel "image" and the initial RAM disk "initrd"   
  13.  *      sections within the boot loader.
  14.  *      
  15.  */
  16. #ifndef __IRSECT_H__
  17. #define __IRSECT_H__
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. extern unsigned int imageSect_start;
  22. extern unsigned int imageSect_size;
  23. extern unsigned int initrdSect_start;
  24. extern unsigned int initrdSect_size;
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif /* __IRSECT_H__ */