diff -r e27b37e80a99 -r 0253c74d0940 tool/CommandStates.cpp --- a/tool/CommandStates.cpp Mon Jan 26 13:09:27 2009 +0000 +++ b/tool/CommandStates.cpp Mon Jan 26 13:22:05 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") {