tool/CommandStates.cpp
branch1.4-foe
changeset 1709 63e4bc918640
parent 1636 b26170e168d9
child 1363 11c0b2caa253
--- 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 <alias>" << 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") {