-
Notifications
You must be signed in to change notification settings - Fork 71
Docs: Rename "api" to "lib" #422
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This is currently required by the docs.mbed.com engine, which expects Doxygen documentation to be placed in an api folder. Once the website moves to a different engine, we can revert back to "api", if we want to.
docs/core/PORTING.md
Outdated
@@ -280,7 +280,7 @@ $ cd ~/code/uvisor | |||
$ make | |||
``` | |||
|
|||
The build process generates as many static libraries (`*.a` files) as your family configurations, multiplied by two (debug and release builds). You can find them in `~/code/uvisor/api/lib/${family}`. Please note that these libraries are not published in the uVisor repository. Instead, the glue-layer library deploys them and makes them available to the target OS. | |||
The build process generates as many static libraries (`*.a` files) as your family configurations, multiplied by two (debug and release builds). You can find them in `~/code/uvisor/lib/lib/${family}`. Please note that these libraries are not published in the uVisor repository. Instead, the glue-layer library deploys them and makes them available to the target OS. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you mean to change this one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! Fixed :)
docs/lib/manual/UseCases.md
Outdated
@@ -691,4 +691,4 @@ void example(void) | |||
``` | |||
|
|||
### More information about the RPC API | |||
For more information about the RPC API, please refer to [the well-commented RPC API C header file](https://github.com/ARMmbed/uvisor/blob/master/api/inc/rpc.h). | |||
For more information about the RPC API, please refer to [the well-commented RPC API C header file](https://github.com/ARMmbed/uvisor/blob/master/lib/inc/rpc.h). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you mean to change this one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! Fixed :)
Note: This only applies to documentation, not to the API source folder.
58d5d62
to
ae26e37
Compare
LGTM, but I will have to build once to find out (after you merge) |
The CI is red because of backwards-incompatibility. This PR is now blocked by ARMmbed/mbed-os#4179. |
ARMmbed/mbed-os#4179 has been merged. I'm updating the tests so that this PR can go green as well. |
retest uvisor |
This is currently required by the docs.mbed.com engine, which expects
Doxygen documentation to be placed in an
api
folder, and will not recognizeour Markdown files.
Once the website moves to a different engine, we can revert back to
"api", if we want to.
@iriark01 Could you please verify that this fixes the issue you reported?
@Patater