Files
cariflex/tools/EVerest-main/yocto/scarthgap/meta-everest/doc/VersionFile.md
Eric F d398a6ced2 Add extracted tools: CitrineOS, OpenOCPP, ShapeShifter
- CitrineOS core extracted (CSMS OCPP 2.0.1)
- OpenOCPP extracted (firmware OCPP 1.6J/2.0.1)
- ShapeShifter library installed (pip install -e)
- ShapeShifter specification extracted
- EVerest extracted

TODO updated with progress
2026-06-08 00:38:27 -04:00

26 lines
772 B
Markdown

# everest_release.json
A JSON file containing a subset of installed packages can be added to your
image `/etc/everest/everest_release.json` by adding the following line to
your image recipes
```
inherit everest_version_file
```
`everest_version_file.bbclass` queries the installed packages and creates the
release JSON file by appending `do_everest_generate_version` to
the `ROOTFS_POSTPROCESS_COMMAND` variable.
`everest_version_file.bbclass` contains a list of packages to include.
This list can be extended via the `EVEREST_RELEASE_PACKAGES` variable as a
space separated list. For example in `local.conf`
```
everest_RELEASE_PACKAGES += "systemd tcpdump"
```
Note that packages need to be listed in `RDEPENDS`, or `IMAGE_INSTALL` to be
available for inclusion.