ecpri function

This commit is contained in:
huihui.shang 2023-12-14 10:20:22 +08:00
parent 401863dc47
commit e7587358ef

View File

@ -1,7 +1,7 @@
set -e set -e
usage() { usage() {
echo "usage: $0 [variants] [--evmy] [--cache] [--jesd] [--test caseid] " 1>&2 echo "usage: $0 [variants] [--evmy] [--cache] [--cpri/--ecpri/--jesd] [--test caseid] " 1>&2
msg=${1:-} msg=${1:-}
if [ ! -z "${msg}" ]; then if [ ! -z "${msg}" ]; then
echo "error:$1" echo "error:$1"
@ -26,6 +26,7 @@ while [[ "$#" > 0 ]]; do
--evmyt) board_option="EVMYT"; shift;; --evmyt) board_option="EVMYT"; shift;;
--cpri) fronthaul_option="cpri"; shift;; --cpri) fronthaul_option="cpri"; shift;;
--ecpri) fronthaul_option="ecpri"; shift;;
--jesd) fronthaul_option="jesd"; shift;; --jesd) fronthaul_option="jesd"; shift;;
--test) test_option="yes"; --test) test_option="yes";