You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error messages you're encountering are related to the fetching process in a Yocto Project build, specifically for the Linux kernel for the Jetson Orin Nano board. Let's break down each part of the error to understand it better:
Fetcher Failure: This error occurs when Yocto's do_fetch task is unable to retrieve the source code from a specified remote repository. In your case, it's trying to clone the Linux kernel source from a Git repository.
Git Clone Command and Exit Code 128: The error message shows the exact Git command used to clone the repository. The exit code 128 typically indicates a failure in the Git operation. This could be due to several reasons like network issues, authentication errors, repository not found, or access rights issues.
URL Fetch Error: The error message Unable to fetch URL from any source. indicates that Yocto was unable to download the source code from the provided URL (git://github.com/OE4T/linux-tegra-5.10.git;protocol=https;name=machine;branch=oe4t-patches-l4t-r35.4.ga). This could be due to incorrect URL, the repository might have moved, or there could be network connectivity issues.
Logfile of Failure: The system has stored a detailed log of the failure in the mentioned file (/home/inbjetson/yocto-tegra/build/tmp/work/jetson_orin_nano_devkit-poky-linux/linux-tegra/5.10.120+gitAUTOINC+76678311c1-r0/temp/log.do_fetch.703762). This log file might contain more detailed information about why the fetch operation failed.
Task Failure: The last line indicates that the task related to fetching the Linux kernel source has failed, causing the build process to stop.
To resolve this issue, you should:
Check the URL in the recipe to ensure it's correct and accessible. The repository URL or branch may have changed.
Ensure your network connection is stable and that you can access GitHub and other internet resources from the build machine.
If the repository requires authentication, make sure your credentials are set up correctly.
Examine the detailed log file mentioned in the error message for more specific information about the failure.
Check if there are any updates or changes in the Yocto meta layers or recipes that you are using, specifically those related to the Jetson Orin Nano board.
The text was updated successfully, but these errors were encountered:
The error messages you're encountering are related to the fetching process in a Yocto Project build, specifically for the Linux kernel for the Jetson Orin Nano board. Let's break down each part of the error to understand it better:
Fetcher Failure: This error occurs when Yocto's
do_fetch
task is unable to retrieve the source code from a specified remote repository. In your case, it's trying to clone the Linux kernel source from a Git repository.Git Clone Command and Exit Code 128: The error message shows the exact Git command used to clone the repository. The
exit code 128
typically indicates a failure in the Git operation. This could be due to several reasons like network issues, authentication errors, repository not found, or access rights issues.URL Fetch Error: The error message
Unable to fetch URL from any source.
indicates that Yocto was unable to download the source code from the provided URL (git://github.com/OE4T/linux-tegra-5.10.git;protocol=https;name=machine;branch=oe4t-patches-l4t-r35.4.ga
). This could be due to incorrect URL, the repository might have moved, or there could be network connectivity issues.Logfile of Failure: The system has stored a detailed log of the failure in the mentioned file (
/home/inbjetson/yocto-tegra/build/tmp/work/jetson_orin_nano_devkit-poky-linux/linux-tegra/5.10.120+gitAUTOINC+76678311c1-r0/temp/log.do_fetch.703762
). This log file might contain more detailed information about why the fetch operation failed.Task Failure: The last line indicates that the task related to fetching the Linux kernel source has failed, causing the build process to stop.
To resolve this issue, you should:
The text was updated successfully, but these errors were encountered: