-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update RELEASE_NOTES - The IOError is captured in upper layers to add failing path name - The IOError exception message also contains the last timeout and retry numbers - The SRP bad read status error is captured in one of the upper layers that contains the register name and updates the return message with the register Path and throws the error again. - Added a cpsw release tag function that informs the current release tag. Individual file modifications are as follows config.mak: Added git tag extraction command and assigning tag to passed to code through marco src/cpsw_api_user.h: Added new API function prototype returning string of current git tag src/cpsw_debug.cc: Added new API function returning string of current git tag src/cpsw_error.h: Added an exception status return method to the class src/cpsw_sval.cc: Capture the exception of SRP bad status error, append the path information and throw the error again. src/cpsw_srp_addr.cc : Prints last timeout and number of retries src/cpsw_sval.h : Added the failing path to getVal functions Conflicts: RELEASE_NOTES
- Loading branch information
1 parent
0b0410f
commit 9e7e7e2
Showing
8 changed files
with
119 additions
and
13 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
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 |
---|---|---|
|
@@ -65,3 +65,9 @@ struct Component *c, *f = 0; | |
} | ||
return 0; | ||
} | ||
|
||
|
||
const char * CPSWRealease() | ||
{ | ||
return GIT_RELEASE_TAG; | ||
} |
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
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