Bootstrap

linux QEMU使用

下载

qemu-system-arm 启动仿真arm芯片
qemu-system-arm -M ? 察看支持arm平台有哪些(开发板)
qemu-system-arm -cpu ? 察看支持arm哪些cpu
qemu-img 格​式​化​虚​拟​客​户​端​映​像​、​附​加​存​储​设​备​以​及​网​络​存​储 
1.安装交叉编译链(根据自己的需求去安装编译链,我这里安装的是32位)

step1:下载编译链,执行命令:
wget https://releases.linaro.org/components/toolchain/binaries/latest-7/arm-linux-
gnueabihf/gcc-linaro-7.4.1-2019.02-x86_64_arm-linux-gnueabihf.tar.xz

关于编译链的资料参考:
https://www.cnblogs.com/linuxbo/p/4297680.html     arm交叉编译器gnueabi、none-eabi、arm-
eabi、gnueabihf的区别
https://releases.linaro.org/components/toolchain/binaries/latest-7/arm-linux-gnueabihf/

step2:解压源码
tar -xjf gcc-linaro-7.4.1-2019.02-x86_64_arm-linux-gnueabihf.tar.xz

step3:添
;