[Armadeus-commitlog] armadeus branch, master, updated. armadeus-6.0-72-g390995a
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2016-05-17 09:53:05
|
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 390995ab854c898f85bf51c88a6c08b4ce5964c4 (commit)
from 593cd7fcc58c49f224f81f51c316caf7ff97b7e1 (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 390995ab854c898f85bf51c88a6c08b4ce5964c4
Author: Sébastien Szymanski <seb...@ar...>
Date: Tue May 17 11:51:44 2016 +0200
[TEST] test_imxregs.sh: fix sed expression
Don't hardcode REG value and use -r instead of -E since -E isn't
available on old busybox version.
-----------------------------------------------------------------------
Summary of changes:
target/test/packages/test_imxregs.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/target/test/packages/test_imxregs.sh b/target/test/packages/test_imxregs.sh
index 7b96088..e4cee38 100755
--- a/target/test/packages/test_imxregs.sh
+++ b/target/test/packages/test_imxregs.sh
@@ -50,7 +50,7 @@ test_imxregs()
execute_for_target set_ids
$EXEC_NAME $ID_REG
if [ "$?" == 0 ]; then
- CHIP_ID=`$EXEC_NAME $ID_REG | sed -En 's:^PMU_MISC2.+(0x.{8}).+:\1:p'`
+ CHIP_ID=`$EXEC_NAME $ID_REG | sed -rn 's:^.+(0x.{8}).+$:\1:p'`
echo "Chip ID: $CHIP_ID"
if [ "$CHIP_ID" == $ID_VAL ]; then
echo_test_ok
hooks/post-receive
--
armadeus
|