setup_64.h 308 B

12345678910111213141516171819
  1. #ifndef _x8664_SETUP_H
  2. #define _x8664_SETUP_H
  3. #define COMMAND_LINE_SIZE 2048
  4. #ifdef __KERNEL__
  5. #ifndef __ASSEMBLY__
  6. #include <asm/bootparam.h>
  7. /*
  8. * This is set up by the setup-routine at boot-time
  9. */
  10. extern struct boot_params boot_params;
  11. #endif /* not __ASSEMBLY__ */
  12. #endif /* __KERNEL__ */
  13. #endif