-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* correction for Power compilation Signed-off-by: Bruno Mesnet <[email protected]> * correct failure case print message for action Signed-off-by: Bruno Mesnet <[email protected]> * add timeout reminder checking Signed-off-by: Bruno Mesnet <[email protected]> * Updated User Guide with P9 and moved cards and env data to .md format Signed-off-by: Alexandre Castellane <[email protected]> * remove SLES information Signed-off-by: Bruno Mesnet <[email protected]> * add timeout reminder checking Signed-off-by: Bruno Mesnet <[email protected]> * adding logs directory if missing Signed-off-by: Bruno Mesnet <[email protected]> * correct uplaod flash timeout test Signed-off-by: Bruno Mesnet <[email protected]> * change g++ to gcc since g++ not installed everywhere Signed-off-by: Bruno Mesnet <[email protected]> * adding hdl_helloworld and hls_intersect Signed-off-by: Bruno Mesnet <[email protected]> * For HLS CRITICAL WARNING checkings Signed-off-by: luyong6 <[email protected]> * correcting fix testing critical and CRITICAL warnings Signed-off-by: Bruno Mesnet <[email protected]>
- Loading branch information
Showing
9 changed files
with
24 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ endif | |
endif | ||
|
||
CPPFLAGS+= -g | ||
CXX=g++ | ||
CXX=gcc | ||
|
||
all: all_build | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,14 +59,15 @@ function usage() { | |
# Flash Update will reset the Capi Card and the card will disappear for | ||
# some time. | ||
function wait_no_flash() { | ||
for i in `seq 1 50`; do | ||
for i in `seq 1 5`; do | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
bmesnet
Author
Collaborator
|
||
if [ ! -d /var/cxl/capi-flash-script.lock ]; then | ||
break; | ||
fi | ||
sleep 5 | ||
echo "capi-flash-script is locked in /var/cxl. Waiting for unlock (25s)" | ||
done | ||
if [ $i -gt 50 ]; then | ||
echo "ERROR: Timeout after $i Flash is pending ......." | ||
if [ $i -ge 5 ]; then | ||
echo "ERROR: Timeout. Flash is pending ......." | ||
exit 0 | ||
fi | ||
} | ||
|
Hi, why was this timeout changed. I remember havin 5 * 50 sec which is about 250 sec because the card can be in reset sate at this point.