This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM335x custom system halt while testing of curl accessing of web page

Other Parts Discussed in Thread: AM3352

With AM335x custom board, system halt (without any log message) issue happened while doing "curl" repeat test.

* CPU - AM3352 (AM335x ES2.1)

* Kernel - Linux 3.14.26

* the test script

============================

#!/bin/bash
i=0
while [ $i -lt 1000000 ] ; do
curl http://192.168.0.1/sess-bin/login_session.cgi -o /dev/null
echo "++++++++++++++++++++++++++++++++++++++++++++++"
echo "Count = $i"
echo "++++++++++++++++++++++++++++++++++++++++++++++"
let i=i+1
done

============================

So, can you guess what will be the cause of the issue?

If you need more information, please let me know.

Best regards,

Hayden