summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* oe-selftest: rpi-basic-image is deprecated. Use core-image-minimal.fix/rpi-image-typePatrick Vacek2018-11-261-3/+3
| | | | Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
* Merge pull request #435 from advancedtelematic/feat/hardware_idPatrick Vacek2018-11-224-2/+8
|\ | | | | Allow setup custom hardware_id
| * aktualizr: fix hardware ID config section.Patrick Vacek2018-11-221-1/+1
| | | | | | | | Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
| * README: slightly more descriptive explanation of SOTA_HARDWARE_ID.Patrick Vacek2018-11-221-1/+1
| | | | | | | | Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
| * Allow setup custom hardware_idfeat/hardware_idSerhiy Stetskovych2018-11-224-2/+8
| | | | | | | | Signed-off-by: Serhiy Stetskovych <patriotyk@gmail.com>
* | Merge pull request #434 from agners/fedora-oe-selftest-fixesPatrick Vacek2018-11-211-1/+7
|\ \ | |/ |/| selftest: introduce QEMU_USE_KVM
| * selftest: introduce QEMU_USE_KVMStefan Agner2018-11-211-1/+7
|/ | | | | | | | | | | | | | | The qemucommand.py script uses kvm-ok to determine whether KVM is available. However, kvm-ok is very Ubuntu specific and not readily available on Fedora. Use QEMU_USE_KVM variable which is also used in OpenEmbedded selftests. The variable must contain True to enable KVM for machines containing x86 in its name, or contain a list of machines. For meta-updater this makes sure KVM is used for all tests: QEMU_USE_KVM = "intel-corei7-64 qemux86-64" Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
* Merge pull request #433 from advancedtelematic/doc/oe-selftest-and-rm-examplePatrick Vacek2018-11-193-5/+5
|\ | | | | docs: better explanation of oe-selftest requirements.
| * docs: better explanation of oe-selftest requirements.doc/oe-selftest-and-rm-examplePatrick Vacek2018-11-163-5/+5
|/ | | | | | Also remove all references to aktualizr-example-interface. It has been removed. Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
* Merge pull request #432 from advancedtelematic/fix/typographyPatrick Vacek2018-11-163-12/+12
|\ | | | | aktualizr: Bump to latest and fix names.
| * aktualizr: Bump to latest and fix names.Patrick Vacek2018-11-163-12/+12
|/ | | | Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
* Merge pull request #431 from albard00/masterPatrick Vacek2018-11-131-2/+2
|\ | | | | Fix function name conflict
| * 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>
* | Merge pull request #426 from advancedtelematic/fix/master/newline-etcPatrick Vacek2018-11-139-28/+14
|\ \ | |/ |/| aktualizr: bump to latest for server URL newline fix.
| * aktualizr: use config instead of environment variables.fix/master/newline-etcPatrick Vacek2018-11-137-14/+1
| | | | | | | | | | | | | | This should make the secondary config dir process better anyway, and it finally gets rid of a hacky workaround that we'd been using for ages. Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
| * aktualizr: improve secondary config directory logic.Patrick Vacek2018-11-131-3/+7
| | | | | | | | | | | | Use -d and warn if directory is invalid. Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
| * aktualizr: Fix virtual secondary support.Patrick Vacek2018-11-135-17/+12
| | | | | | | | | | | | | | | | Use /etc/sota/ecus as using /var/sota/ecus was conflicting with the provisioning recipes that also use /var/sota. Not totally ideal, but the best compromise I could find. Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
| * aktualizr: bump to latest for server URL newline fix.Patrick Vacek2018-11-091-1/+1
|/ | | | Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
* Merge pull request #423 from advancedtelematic/RemoveATSgaragePatrick Vacek2018-11-081-4/+4
|\ | | | | Update README.adoc
| * Replace more references to ATS Garage with HERE OTA Connect.RemoveATSgaragePatrick Vacek2018-11-081-3/+3
| | | | | | | | Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
| * Update README.adocXavier Gully2018-11-081-1/+1
|/ | | | | | Update the reference to https://connect.ota.here.com Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
* Merge pull request #424 from advancedtelematic/feat/add-thud-to-readmePatrick Vacek2018-11-071-0/+1
|\ | | | | Added 'thud' to list of supported releases
| * Added 'thud' to list of supported releasesfeat/add-thud-to-readmeArthur Taylor2018-11-061-0/+1
|/
* Merge pull request #421 from agners/master-toradexPatrick Vacek2018-11-021-1/+2
|\ | | | | classes: image_types_ostree: use locking during OSTree repo update
| * classes: image_types_ostree: use locking during OSTree repo updateStefan Agner2018-11-021-0/+1
| | | | | | | | | | | | | | | | The OSTree repository might be shared accross several individual OSTree builders. Use bitbakes lockfiles mechanism to lock the OSTree for exclusive use. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
| * classes: image_types_ostree: check OSTree repo existence using ostreeStefan Agner2018-11-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Currently we assume if the OSTree repo exists, that there is a OSTree repo in it. This does not need to be true in general, and when using lockfiles bitbake will create the directory before the do_image_ostree task is executed the first time. Use ostree refs to detect whether the target directory contains a OSTree repo. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
* | Merge pull request #418 from ↵Patrick Vacek2018-11-011-1/+3
|\ \ | | | | | | | | | | | | advancedtelematic/fix/master/secondary-image-cred-packages Update packages removed for secondary-image.
| * | secondary_image: also remove aktualizr-uboot-env-rollback.Patrick Vacek2018-11-011-0/+1
| | |
| * | Update packages removed for secondary-image.fix/master/secondary-image-cred-packagesPatrick Vacek2018-10-311-1/+2
|/ /
* | Merge pull request #417 from ↵Patrick Vacek2018-10-315-2/+28
|\ \ | | | | | | | | | | | | advancedtelematic/feat/OTA-627/master/targetversion-forwardport Feat/ota 627/master/targetversion forwardport
| * | Fix typos.feat/OTA-627/master/targetversion-forwardportPatrick Vacek2018-10-301-1/+1
| | |
| * | Fix typos/languageOYTIS2018-10-301-1/+1
| | |
| * | Document version overriding and add warningsAnton Gerasimov2018-10-303-2/+13
| | |
| * | Provide example for setting UPTANE target version automaticallyAnton Gerasimov2018-10-303-1/+16
|/ /
* | Merge pull request #413 from ↵Patrick Vacek2018-10-292-5/+2
|\ \ | |/ |/| | | | | advancedtelematic/refactor/master/rm-implicit-writer aktualizr: Remove implicit_writer. It is now unused.
| * aktualizr: Remove implicit_writer. It is now unused.refactor/master/rm-implicit-writerPatrick Vacek2018-10-292-5/+2
|/ | | | Bump to the latest version as well.
* Merge pull request #411 from advancedtelematic/fix/secondaries-pathPatrick Vacek2018-10-261-4/+2
|\ | | | | Update aktualizr example secondary config path
| * Remove aktualizr hacks related to ubuntu supportfix/secondaries-pathLaurent Bonnans2018-10-251-4/+2
| |
| * Update aktualizr example secondary config pathLaurent Bonnans2018-10-251-3/+3
|/
* Merge pull request #410 from agners/use-imgdeploydirOYTIS2018-10-255-17/+8
|\ | | | | Use IMGDEPLOYDIR
| * image_types_ota: use IMGDEPLOYDIR for ota-ext4 imagesStefan Agner2018-10-185-11/+7
| | | | | | | | | | | | | | | | | | | | | | Do not write directly to the IMAGE_DEPLOY_DIR but to the new deploy directory IMGDEPLOYDIR. Also change the image ending to match the image type name (from otaimg to ota-ext4). This allows to use the automatic symlinking and output artefact management too. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
| * image_types_ota: use IMGDEPLOYDIR for ota-tar imagesStefan Agner2018-10-181-6/+1
| | | | | | | | | | | | | | | | Do not write directly to the IMAGE_DEPLOY_DIR but to the new deploy directory IMGDEPLOYDIR. This allows to use the automatic symlinking too. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
* | Merge pull request #407 from LukaPivk/masterlbonn2018-10-252-1/+13
|\ \ | |/ |/| Extend ostree support
| * Added support to automatically update ostree summaryLuka Pivk2018-10-242-1/+9
| | | | | | | | | | | | | | Use OSTREE_UPDATE_SUMMARY to automatically update summary after committing to ostree repo Signed-off-by: Luka Pivk <luka.pivk@toradex.com>
| * Added support to set custom commit subject and bodyLuka Pivk2018-10-241-2/+6
| | | | | | | | | | | | | | Use OSTREE_COMMIT_BODY write custom text to ostree body Use OSTREE_COMMIT_SUBJECT to write custom subject Signed-off-by: Luka Pivk <luka.pivk@toradex.com>
* | Merge pull request #408 from agners/simplify-ota-classlbonn2018-10-181-35/+15
|\ \ | | | | | | Simplify OTA class
| * | image_types_ota: simplify image creationStefan Agner2018-10-121-28/+15
| | | | | | | | | | | | | | | | | | | | | | | | Almost all code in create_ota is either tar or ext4 specific. Move the code directly into the respective IMAGE_CMD_ functions. This gets rid of unnecessary work for the tar image and simplifies code. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
| * | image_types_ota: remove explicit IMAGE_FSTYPES checkStefan Agner2018-10-121-9/+2
| | | | | | | | | | | | | | | | | | | | | OpenEmbedded makes sure that IMAGE_CMD_type gets only called if the type is in IMAGE_FSTYPE. There is no need to explicitly check for it. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
* | | Merge pull request #399 from ↵Patrick Vacek2018-10-124-35/+2
|\ \ \ | |_|/ |/| | | | | | | | advancedtelematic/refactor/remove-legacy-secondaries aktualizr: remove example-interface.
| * | aktualizr: remove BUILD_ISTOP flag.refactor/remove-legacy-secondariesPatrick Vacek2018-10-091-1/+0
| | |