1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| sudo apt install bison flex gcc-arm-linux-gnueabi
wget https://ftp.denx.de/pub/u-boot/u-boot-2025.01.tar.bz2 tar -xjvf u-boot-2025.01.tar.bz2 && cd u-boot-2025.01
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- O=build vexpress_ca9x4_defconfig make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- O=build -j$(nproc)
leux@B650I:~/uboot/u-boot-2025.01/build$ file u-boot u-boot: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), static-pie linked, with debug_info, not stripped leux@B650I:~/uboot/u-boot-2025.01/build$ file u-boot.bin u-boot.bin: DOS executable (COM), start instruction 0xb80000ea 14f09fe5
qemu-system-arm -M vexpress-a9 -kernel u-boot -nographic
|