linuxOS_AP05/debian/test/rockchip-test/ethernet/eth_test.sh

34 lines
771 B
Bash
Raw Normal View History

2025-09-26 01:40:02 +00:00
#!/bin/bash
DIR_ETH=/rockchip-test/ethernet
info_view()
{
echo "*****************************************************"
echo "*** ***"
echo "*** Ethernet TEST ***"
echo "*** ***"
echo "*****************************************************"
}
info_view
echo "***********************************************************"
echo "Ethernet delayline test: 1"
echo "***********************************************************"
read -t 30 ETH_CHOICE
ethernet_delayline_test()
{
bash ${DIR_ETH}/test_ethernet_delayline.sh
}
case ${ETH_CHOICE} in
1)
ethernet_delayline_test
;;
*)
echo "not fount your input."
;;
esac