home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / bsd / m68k / reboot.h < prev    next >
Text File  |  1993-10-19  |  694b  |  25 lines

  1. /*
  2.  *    File:    bsd/m68k/reboot.h
  3.  *    Author:    Avadis Tevanian, Jr.
  4.  *
  5.  *    m68k-specific reboot flags.
  6.  *
  7.  * HISTORY
  8.  * 28-Feb-90  John Seamons (jks) at NeXT
  9.  *    Added RB_COMMAND flag that allows a specific reboot command to be used.
  10.  *
  11.  * 06-Jul-88  Avadis Tevanian (avie) at NeXT, Inc.
  12.  *    Created.
  13.  */
  14.  
  15. /*
  16.  *    Use most significant 16 bits to avoid collisions with
  17.  *    machine independent flags.
  18.  */
  19. #define RB_POWERDOWN    0x00010000    /* power down on halt */
  20. #define    RB_NOBOOTRC    0x00020000    /* don't run '/etc/rc.boot' */
  21. #define    RB_DEBUG    0x00040000    /* drop into mini monitor on panic */
  22. #define    RB_EJECT    0x00080000    /* eject disks on halt */
  23. #define    RB_COMMAND    0x00100000    /* new boot command specified */
  24.  
  25.