1: /* 2: * Arguments to reboot system call. 3: * These are passed to boot program in r4 4: * and on to init. 5: */ 6: #define RB_ASKNAME 01 7: #define RB_SINGLE 02 8: #define RB_NOSYNC 04 9: #define RB_HALT 010 10: #define RB_DUMP 020 11: #define RB_NOFSCK 040 12: #define RB_POWRFAIL 0100 13: 14: /* 15: * The name of system to boot on automatic reboots. 16: */ 17: #define RB_DEFNAME "xp(0,0)unix"