Index: scripts/start.sh =================================================================== diff -u -r7f61c3b45a50145fe5c245018d481d6266166fa6 -r9ef6badf8e172436bba2bfad1642ae7e469e0361 --- scripts/start.sh (.../start.sh) (revision 7f61c3b45a50145fe5c245018d481d6266166fa6) +++ scripts/start.sh (.../start.sh) (revision 9ef6badf8e172436bba2bfad1642ae7e469e0361) @@ -137,11 +137,18 @@ } function manufacturingModePrompt() { - echo_star_comment - echo_star_message "Do you want to run in the Manufacturing Mode?" - echo_star_comment - read -p "Continue? [y,n]" -n 1 -r CONTINUE - echo "" # to echo prompts on new line +# I set to always enabled for now to always go to the manufacturing mode +# 1 - Even for normal setup start is moving files to /home/root, so the lockdown needs to run to move files. +# 2 - The UI still needs to be executed to decrypt the /var/configurations, otherwise the configurations can not be updated, +# and I don't have the ability to just decrypt and exit right now. +# Note: after the Cybersecurity release I will improve the user experience and will make it easier for manufacturing. + CONTINUE="y" + +# echo_star_comment +# echo_star_message "Do you want to run in the Manufacturing Mode?" +# echo_star_comment +# read -p "Continue? [y,n]" -n 1 -r CONTINUE +# echo "" # to echo prompts on new line if [ "$CONTINUE" == "y" ]; then sshRun "echo $SETUP_ENABLE_MANUFACTURING_MODE > $SETUP_CONF_FILE" echo_star_message "Set the setup in manufacturing mode"