summaryrefslogtreecommitdiffstats
path: root/classes/image_repo_manifest.bbclass
Commit message (Collapse)AuthorAgeFilesLines
* meta: move HOSTTOOLS definitions to sota.conf.incMing Liu2020-01-301-2/+0
| | | | | | | | | | | | | | | | | HOSTTOOLS and HOSTTOOLS_NONFATAL are global variables that being handled in base_eventhandler, so they must be defined in config files or in INHERIT classes or classes being inherited by base.bbclass, or else we might run into the following problems: ``` $ bitbake pkgname $ bitbake imgname ``` the HOSTTOOLS and HOSTTOOLS_NONFATAL in the above image recipe, for instance, 'repo python' in image_repo_manifest.bbclass, they would not be copied to HOSTTOOLS_DIR. Signed-off-by: Ming Liu <liu.ming50@gmail.com>
* meta: add python to HOSTTOOLS_NONFATALMing Liu2020-01-021-1/+1
| | | | | | | | | | repo is requiring python to be able to work correctly, add python to HOSTTOOLS_NONFATAL as well. image_repo_manifest is actually a image bbclass, move it to IMAGE_CLASSES instead of inheriting it in sota.bbclass. Signed-off-by: Ming Liu <liu.ming50@gmail.com>
* Fix function name conflictAlexandre Bard2018-11-131-2/+2
| | | | | | | | | buildinfo function name is used in poky: meta/classes/image-buildinfo.bbclass Both classes could not be used together Signed-off-by: Alexandre Bard <alexandre.bard@netmodule.com>
* Fixes for SpekulatiusAnton Gerasimov2017-12-201-2/+2
| | | | | | - New garage-sign interface - Remove garage-sign recipe (now installed with aktualizr-native) - Small but critical bugfixes in aktualizr
* Fix builds outside the .repo directoryPhil Wise2017-11-281-2/+2
| | | | | The repo tool searches up the directory tree to find the .repo directory. Cleanly handle the case where it can't find anything.
* Copy repo manifest to the device.Patrick Vacek2017-11-061-0/+23
Helpful for debugging, etc. Mostly copied from here: https://github.com/openivimobility/meta-oim/blob/master/classes/image-repo-manifest.bbclass