https://github.com/rdkcentral/meta-rdk-iot
An RDK/Yocto layer to host publicly available open-source IoT related recipes
https://github.com/rdkcentral/meta-rdk-iot
Last synced: 6 months ago
JSON representation
An RDK/Yocto layer to host publicly available open-source IoT related recipes
- Host: GitHub
- URL: https://github.com/rdkcentral/meta-rdk-iot
- Owner: rdkcentral
- License: other
- Created: 2025-05-20T10:18:13.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-11-18T08:01:46.000Z (8 months ago)
- Last Synced: 2025-11-18T10:06:08.196Z (8 months ago)
- Language: ZAP
- Size: 2.11 MB
- Stars: 2
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: COPYING
- Notice: NOTICE
Awesome Lists containing this project
README
# meta-rdk-iot
## Overview
An RDK/Yocto layer to host publicly available open-source IoT related recipes.
## Maintenance
This layer is maintained by RDK community.
## Adding the meta-rdk-iot layer to your build
Add this layer to your BBLAYERS in the conf/bblayers.conf file:
```
BBLAYERS += "${LAYERDIR}/meta-rdk-iot"
```
## Example Recipes
This layer provides several "example recipes" to demonstrate how you might integrate
individual components in meta-rdk-iot. So as to not interfere with legitimate distribution
builds, this layer adds the example recipes to the BBMASK from within the `layer.conf` file.
In order to build these example recipes for yourself, you would simply remove them from the
BBMASK and adjust your IMAGE_INSTALL accordingly from your `img/local.conf` file. For exmaple:
```
# This may be different depending on your distribution
META_RDK_IOT_DIR := "${@os.path.abspath("${TOPDIR}/../meta-rdk-iot")}"
BBMASK:remove += "${META_RDK_IOT_DIR}/recipes-matter/barton-matter-example/"
BBMASK:remove += "${META_RDK_IOT_DIR}/recipes-core/barton-example-app/"
IMAGE_INSTALL:append += "barton-example-app"
```