diff -r fae3a1759126 -r 63e4bc918640 tool/CommandStates.cpp --- a/tool/CommandStates.cpp Mon Jan 19 12:36:18 2009 +0000 +++ b/tool/CommandStates.cpp Mon Jan 19 14:46:55 2009 +0000 @@ -28,7 +28,7 @@ << getBriefDescription() << endl << endl << "Arguments:" << endl - << " STATE can be 'INIT', 'PREOP', 'SAFEOP', or 'OP'." << endl + << " STATE can be 'INIT', 'PREOP', 'BOOT', 'SAFEOP', or 'OP'." << endl << endl << "Command-specific options:" << endl << " --alias -a " << endl @@ -63,6 +63,8 @@ state = 0x01; } else if (stateStr == "PREOP") { state = 0x02; + } else if (stateStr == "BOOT") { + state = 0x03; } else if (stateStr == "SAFEOP") { state = 0x04; } else if (stateStr == "OP") {