Reputation:
I'm running Yocto bitbake commands and I have the following error message:
WARNING: kern-tools-native-0.2+gitAUTOINC+d6529f86fc-r12 do_fetch: Failed to fetch URL git://git.yoctoproject.org/yocto-kernel-tools.git, attempting MIRRORS if available
So it seems that git://git.yoctoproject.org/yocto-kernel-tools.git
failed.
I would like to re-run something like bitbake -c -f fetch <package_name>
but I don't know the package name from the name of yocto-kernel-tools.git
.
If I run: bitbake -c -f yocto-kernel-tools
the error message is:
ERROR: Nothing PROVIDES 'yocto-kernel-tools'
Upvotes: 1
Views: 512
Reputation:
I searched for "yocto-kernel-tools.git" in my meta-* folders and found that it's actually in file of poky/meta/recipes-kernel/kenr-tools/kern-tools-native_git.bb
, so yes, as @Nayfe commented, the recipe name is kern-tools-native
Upvotes: 1