Skip to content
Snippets Groups Projects
Commit 5380ca0e authored by David Hoese's avatar David Hoese Committed by root
Browse files

Fix driver reinstall script exiting too early

parent 4df73db6
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ cd "${SRC_DIR}/kernel3.x" ...@@ -44,7 +44,7 @@ cd "${SRC_DIR}/kernel3.x"
spawn ./mxinst SP1 spawn ./mxinst SP1
expect "Do you want to enable secure function?" expect "Do you want to enable secure function?"
send -- "N\r" send -- "N\r"
expect eof expect "Installation process is completed."
EOF EOF
) )
...@@ -56,4 +56,4 @@ status=$? ...@@ -56,4 +56,4 @@ status=$?
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "ERROR: Could not install driver" echo "ERROR: Could not install driver"
exit 1 exit 1
fi fi
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment