diff options
author | Scott Murray <scott.murray@konsulko.com> | 2024-02-16 17:16:41 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2024-02-16 17:16:41 -0500 |
commit | 4f04fd3fd733e1109c27d48a74ed34819777596e (patch) | |
tree | 7c616820f25a6f2d5f48f84f76e03e042857fd05 /meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-us_0.15.bb | |
parent | 45514a32a577233506aedff3e6ccac68343112c9 (diff) |
meta-offline-voice-agent: remove 'virtual/' RPROVIDES
Replace 'virtual/vosk-model' RPROVIDES use with just 'vosk-model'
to future-proof for Yocto Project 5.0 / Scarthgap, where it triggers
a warning. Also update checksums in a couple of the model recipes
to fix errors seen during test builds.
Bug-AGL: SPEC-5067
Change-Id: I6d39342059c93d7bef77e9b65ff11a9b2aee51aa
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-us_0.15.bb')
-rw-r--r-- | meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-us_0.15.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-us_0.15.bb b/meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-us_0.15.bb index f959e566..929ad0d4 100644 --- a/meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-us_0.15.bb +++ b/meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-us_0.15.bb @@ -11,7 +11,7 @@ SRC_URI = " \ # License listed on https://alphacephei.com/vosk/models SRC_URI[model.sha256sum] = "30f26242c4eb449f948e42cb302dd7a686cb29a3423a8367f99ff41780942498" -SRC_URI[license.sha256sum] = "1ff7bf86a1243a98be7964040a7c569ade4e70f8b5e815b1edb5f3a74ca5f567" +SRC_URI[license.sha256sum] = "46220c6d381bf1c230699077e3a693b2474f4cc768a167f25ced5034ab96890b" do_install() { install -d ${D}/usr/share/vosk @@ -20,4 +20,4 @@ do_install() { FILES:${PN} += " /usr/share/vosk /usr/share/vosk/vosk-model-small-en-us-0.15 " -RPROVIDES:${PN} += "virtual/vosk-model" +RPROVIDES:${PN} += "vosk-model" |