update README with note about dev package variants

pull/6/head
Chris Conlon 2019-02-19 10:23:45 -07:00
parent 17425e565a
commit 5949a96f96
1 changed files with 13 additions and 0 deletions

View File

@ -10,6 +10,7 @@ This layer currently provides recipes for the following wolfSSL products:
- [wolfSSL embedded SSL/TLS library](https://www.wolfssl.com/products/wolfssl/)
- [wolfSSH lightweight SSH library](https://www.wolfssl.com/products/wolfssh/)
- [wolfMQTT lightweight MQTT client library](https://www.wolfssl.com/products/wolfmqtt/)
- [wolfTPM portable TPM 2.0 library](https://www.wolfssl.com/products/wolftpm/)
This layer currently provides bbappend files for the following open source
projects:
@ -72,6 +73,18 @@ After installing your build's YoctoProject/OpenEmbedded components:
Once your image has been built, the default location for the wolfSSL library
on your machine will be in the '/usr/lib' directory.
Note: If you need to install the development headers for these libraries, you
will want to use the "-dev" variant of the package. For example, to install
both the wolfSSL library and headers into your image, use "wolfssl-dev" along
with IMAGE_INSTALL_append, ie:
```
IMAGE_INSTALL_append = "wolfssl-dev"
```
After building your image, you will find wolfSSL headers in the
"/usr/include" directory.
Customizing the wolfSSL Library Configuration
---------------------------------------------