Yocto Build Release TI: Difference between revisions
From Variscite Wiki
(Created page with "<!-- Set release according to "release" parameter in URL and use RELEASE_MORTY_V1.0_DART-6UL as default --> {{INIT_RELEASE_PARAM|mx93-yocto-kirkstone-5.15.71_2.2.0-v1.0}}<!--...") |
No edit summary |
||
Line 1: | Line 1: | ||
<!-- Set release according to "release" parameter in URL and use | <!-- Set release according to "release" parameter in URL and use am62-yocto-dunfell-5.10.140_08.05.00.21-v1.0 as default | ||
--> {{INIT_RELEASE_PARAM| | --> {{INIT_RELEASE_PARAM|am62-yocto-dunfell-5.10.140_08.05.00.21-v1.0}}<!-- | ||
--> {{#lst:Yocto_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!-- | --> {{#lst:Yocto_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!-- | ||
--> {{#vardefine:UBUNTU_COMPAT|18.04/20.04/22.04}}<!-- | --> {{#vardefine:UBUNTU_COMPAT|18.04/20.04/22.04}}<!-- | ||
Line 26: | Line 26: | ||
= Install Toolchains to home directory = | = Install Toolchains to home directory = | ||
$ cd ~ | $ cd ~ | ||
$ wget | $ wget {{#var:arm_toolchain_32_url}} && \ | ||
tar -Jxvf | tar -Jxvf {{#var:arm_toolchain_32_archive}} -C $HOME && \ | ||
wget | wget {{#var:arm_toolchain_64_url}} && \ | ||
tar -Jxvf | tar -Jxvf {{#var:arm_toolchain_64_archive}} -C $HOME |
Revision as of 18:58, 8 February 2023
Warning: This page is designed to be used with a 'release' URL parameter.
This page is using the default release am62-yocto-dunfell-5.10.140_08.05.00.21-v1.0.
To view this page for a specific Variscite SoM and software release, please follow these steps:
- Visit variwiki.com
- Select your SoM
- Select the software release
Installing required packages
Please make sure your host PC is running Ubuntu 18.04/20.04/22.04 64-bit and is up to date:
$ sudo apt-get update && sudo apt-get dist-upgrade
Then, install the following packages:
$ sudo dpkg --add-architecture i386 $ sudo apt update && sudo apt install build-essential autoconf \ automake bison \ flex libssl-dev bc u-boot-tools \ python diffstat \ texinfo gawk chrpath dos2unix \ wget unzip socat doxygen libc6:i386 \ libncurses5:i386 libstdc++6:i386 \ libz1:i386 g++-multilib \ git python3-distutils python3-apt $ sudo dpkg-reconfigure dash
Install Toolchains to home directory
$ cd ~ $ wget && \ tar -Jxvf -C $HOME && \ wget && \ tar -Jxvf -C $HOME