home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / asm-sh64 / setup.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  554 b   |  17 lines

  1. #ifndef __ASM_SH64_SETUP_H
  2. #define __ASM_SH64_SETUP_H
  3.  
  4. #define PARAM ((unsigned char *)empty_zero_page)
  5. #define MOUNT_ROOT_RDONLY (*(unsigned long *) (PARAM+0x000))
  6. #define RAMDISK_FLAGS (*(unsigned long *) (PARAM+0x004))
  7. #define ORIG_ROOT_DEV (*(unsigned long *) (PARAM+0x008))
  8. #define LOADER_TYPE (*(unsigned long *) (PARAM+0x00c))
  9. #define INITRD_START (*(unsigned long *) (PARAM+0x010))
  10. #define INITRD_SIZE (*(unsigned long *) (PARAM+0x014))
  11.  
  12. #define COMMAND_LINE ((char *) (PARAM+256))
  13. #define COMMAND_LINE_SIZE 256
  14.  
  15. #endif /* __ASM_SH64_SETUP_H */
  16.  
  17.