Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sorrir/meta-omi
Yocto Layer for our IoT testbed. Heavily opinionated
https://github.com/sorrir/meta-omi
mender yocto
Last synced: 4 days ago
JSON representation
Yocto Layer for our IoT testbed. Heavily opinionated
- Host: GitHub
- URL: https://github.com/sorrir/meta-omi
- Owner: sorrir
- License: apache-2.0
- Created: 2021-10-18T11:40:39.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-19T12:53:33.000Z (about 3 years ago)
- Last Synced: 2024-05-12T06:41:36.641Z (6 months ago)
- Topics: mender, yocto
- Language: BitBake
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# meta-omi
An OpenEmbedded Layer that provides recipes to configure network, users and mender access. This is heavily opinionated and use-case specific. There are no configuration interfaces intended to be be used in a `local.conf`. This rather acts as a base that should be edited directly.
## Layer dependencies
This layer depends on:
```bb
URI: git://[email protected]:mendersoftware/meta-mender.git
branch: warrior
```## Installation
Add the omi layer in your `local.conf`:
```sh
IMAGE_INSTALL_append = " omi"
```All the other recipes use `.bbappend`s and are therefore applied automatically.
## Configuration
Change the files in the recipes files folder
### recipes-omi
#### omi bbclass
Creates a user called "omi" with the public keys listed in [authorized_keys](recipes-omi/omi/files/authorized_keys). Change accordingly.
### recipes-mender
#### mender bbappend
* requires mender
* sets the central mender server endpoint and certificate
* Edit [server.crt](recipes-mender/mender/files/server.crt) with your mender certificate
* Edit [mender_%.bbappend](recipes-mender/mender/mender_%25.bbappend) to set your mender endpoint and configuration### recipes-core
#### systemd-conf bbappend
This generic bbappend enables dhcp on common interface names.
#### systemd bbappend
This makes sure `networkd resolved polkit` are installend
#### dropbear bbappend
This configures the ssh server. Specifically, it disables password logins.