SBC-Testing/README.md

15 lines
544 B
Markdown
Raw Normal View History

2023-05-06 13:03:50 +00:00
# SBC-Testing
2023-05-06 14:17:18 +00:00
Collection of info about different SBCs and how-to port them to Rocky LInux
## Build Environment Setup on Ubuntu 20
``wget https://releases.linaro.org/components/toolchain/binaries/latest-6/aarch64-elf/gcc-linaro-6.50-201812-x86_64_aarch64-elf.tar.xz```
```sudo tar xvf gcc-linaro-6.5.0-2018.12-x86_64_aarch64-elf.tar.xz -C /opt/toolchains/```
```vi ~/.bashrc & add:
export ARCH=arm64
export CROSS_COMPILE=aarch64-elf-
export PATH=/opt/toolchains/gcc-linaro-6.5.0-2018.12-x86_64_aarch64-elf/bin:$PATH
source ~/bashrc```