Commit e232bb73 authored by Marcin Juszkiewicz's avatar Marcin Juszkiewicz

runme: check DDR speed before doing build

parent 5b09619d
......@@ -81,6 +81,15 @@ case "${SERDES}" in
;;
esac
case "${DDR_SPEED}" in
2400|2600|2900|3200)
;;
*)
echo "Please use one of allowed DDR speeds: 2400, 2600, 2900, 3200"
exit -1
;;
esac
echo "Checking all required tools are installed"
set +e
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment