[Armadeus-commitlog] armadeus branch, master, updated. armadeus-5.3-205-g651fd51
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2014-04-02 08:07:25
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 651fd51b6b6690cb7f91df4d49175af8a92ce586 (commit)
from 283bddb1f9822417cefb04f0b900fb156831d70c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 651fd51b6b6690cb7f91df4d49175af8a92ce586
Author: Sébastien Szymanski <seb...@ar...>
Date: Wed Apr 2 10:07:57 2014 +0200
[TEST] apf28: fix tty name when kernel is not 2.6.35.3
-----------------------------------------------------------------------
Summary of changes:
target/test/test_rs232.sh | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/target/test/test_rs232.sh b/target/test/test_rs232.sh
index db22eae..a34ffb8 100755
--- a/target/test/test_rs232.sh
+++ b/target/test/test_rs232.sh
@@ -87,7 +87,11 @@ configure_ports_devices()
elif [ "$1" == "APF51" ]; then
SERIAL_DEVICES="/dev/ttymxc"
elif [ "$1" == "APF28" ]; then
- SERIAL_DEVICES="/dev/ttySP"
+ if [ "$LINUX_VERSION" == "2.6.35.3" ]; then
+ SERIAL_DEVICES="/dev/ttySP"
+ else
+ SERIAL_DEVICES="/dev/ttyAPP"
+ fi
else
echo "$1 platform not supported by this test"
exit 0
hooks/post-receive
--
armadeus
|