ERROR: bmap-tools-native-git-r0 do_populate_lic: QA Issue: bmap-tools-native: Recipe file fetches files and does not have license file information (LIC_FILES_CHKSUM) [license-checksum]这个问题是为什么产生的?如何解决?
时间: 2024-04-06 22:34:46 浏览: 227
这个问题的原因是bmap-tools-native的配方文件中没有包含许可证文件信息(LIC_FILES_CHKSUM),因此在进行许可证检查时会出现错误。要解决这个问题,你需要在bmap-tools-native的配方文件中添加LIC_FILES_CHKSUM信息,同时确保该信息与实际许可证文件的内容一致。例如:
LIC_FILES_CHKSUM = "file://COPYING;md5=xxx"
其中,"file://COPYING"是实际许可证文件的路径,"md5=xxx"是实际许可证文件的md5校验和。
相关问题
ERROR: Bitbake Fetcher Error: FetchError('Fetch command export PSEUDO_DISABLED=1; export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus,guid=d96498d849b66a7ed5ae1643647dc969"; export SSH_AGENT_PID="1854"; export SSH_AUTH_SOCK="/run/user/1000/keyring/ssh"; export PATH="/home/wu/3568/yocto/poky/scripts/native-intercept:/home/wu/3568/yocto/build/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/wu/3568/yocto/build/tmp/work/x86_64-linux/bmap-tools-native/3.6+gitAUTOINC+c0673962a8-r0/recipe-sysroot-native/usr/bin/python3-native:/home/wu/3568/yocto/poky/scripts:/home/wu/3568/yocto/build/tmp/work/x86_64-linux/bmap-tools-native/3.6+gitAUTOINC+c0673962a8-r0/recipe-sysroot-native/usr/bin/x86_64-linux:/home/wu/3568/yocto/build/tmp/work/x86_64-linux/bmap-tools-native/3.6+gitAUTOINC+c0673962a8-r0/recipe-sysroot-native/usr/bin:/home/wu/3568/yocto/build/tmp/work/x86_64-linux/bmap-tools-native/3.6+gitAUTOINC+c0673962a8-r0/recipe-sysroot-native/usr/sbin:/home/wu/3568/yocto/build/tmp/work/x86_64-linux/bmap-tools-native/3.6+gitAUTOINC+c0673962a8-r0/recipe-sysroot-native/usr/bin:/home/wu/3568/yocto/build/tmp/work/x86_64-linux/bmap-tools-native/3.6+gitAUTOINC+c0673962a8-r0/recipe-sysroot-native/sbin:/home/wu/3568/yocto/build/tmp/work/x86_64-linux/bmap-tools-native/3.6+gitAUTOINC+c0673962a8-r0/recipe-sysroot-native/bin:/home/wu/3568/yocto/poky/bitbake/bin:/home/wu/3568/yocto/build/tmp/hosttools"; export HOME="/home/wu"; git -c core.fsyncobjectfiles=0 -c gc.autoDetach=false -c core.pager=cat clone -n -s /home/wu/3568/yocto/build/../packages/git2/github.com.intel.bmap-tools/ /home/wu/3568/yocto/build/tmp/work/x86_64-linux/bmap-tools-native/3.6+gitAUTOINC+c0673962a8-r0/git/ failed with exit code 128, output:\nfatal: repository \'/home/wu/3568/yocto/build/../packages/git2/github.com.intel.bmap-tools/\' does not exist\n', None)具体如何修改
这个错误提示是在尝试从一个不存在的git仓库中获取数据,导致克隆操作失败。你需要确认一下该git仓库是否存在,或者是否拼写错误。如果确认该仓库存在,并且链接正确,可以尝试清除Yocto的构建缓存,重新构建以解决问题。具体操作可以使用以下命令来清除缓存:
```
$ bitbake -c cleansstate <recipe>
```
其中,`<recipe>`是指你要构建的组件。如果你需要清除整个缓存,可以使用以下命令:
```
$ bitbake -c cleansstate -b <build directory>
```
其中,`<build directory>`是指Yocto构建目录的路径。
Module not found: Error: Can't resolve 'BMap' in 'D:\Webgis SS\code\client\webgis\src' ERROR in ./src/App.vue?vue&type=script&lang=js& (./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/App.vue?vue&type=script&lang=js&) 1:0-24 Module not found: Error: Can't resolve 'BMap' in 'D:\Webgis SS\code\client\webgis\src' @ ./src/App.vue?vue&type=script&lang=js& 1:0-191 1:207-210 1:212-400 1:212-400 @ ./src/App.vue 2:0-55 3:0-50 3:0-50 9:2-8 @ ./src/main.js 4:0-28 12:17-20
根据你的错误提示,看起来是你的项目中缺少了BMap模块,导致找不到该模块而报错。你需要安装或者引入BMap模块,来解决这个问题。具体方法如下:
1. 如果是使用npm进行项目管理,可以尝试使用以下命令安装BMap模块:
```
npm install bmap-js
```
2. 如果已经安装了BMap模块,但是仍然出现该错误,可以尝试检查引入BMap模块的路径是否正确。如果路径有误,也会导致找不到该模块而报错。
希望能帮到你!
阅读全文