Debian Compilation R1

Hello,

I want to report a problem with the compilation of R1 Debian 11.

I cloned the entire repository from Google Drive.

The automatic compilation completes everything except the update.img. After flashing, the system does not boot.

The partial compilation lacks detail.

I encountered an error while compiling u-boot:

I had to fix it with the following commands:

  1. Download the file using wget:

    wget http://releases.linaro.org/components/toolchain/binaries/6.3-2017.05/aarch64-linux-gnu/gcc-linaro-6.3.1-2017.05-x86_64_aarch64-linux-gnu.tar.xz
    
  2. Move the downloaded file to the directory ../prebuilts/gcc/linux-x86/aarch64/:

    mv gcc-linaro-6.3.1-2017.05-x86_64_aarch64-linux-gnu.tar.xz ../prebuilts/gcc/linux-x86/aarch64/
    
  3. Extract the contents of the file in the target directory:

    cd ../prebuilts/gcc/linux-x86/aarch64/
    tar -Jxvf gcc-linaro-6.3.1-2017.05-x86_64_aarch64-linux-gnu.tar.xz
    

These commands will download, move, and extract the GCC Linaro toolchain archive.

1 Like

Hello! Thank you for your post. This situation is usually caused by incomplete download of the toolchain.