LicheePi Zero Notes -1 Environment Construction
最近开始学习嵌入式Linux的相关东西,于是买了个较为便宜的荔枝派,作为学习板使用,记录一下学习过程。
根据官方文档整理,更正了失效的资源链接
# 新建一个文件夹作为后续文件存储
mkdir licheepi
mkdir uboot
cd uboot
# 下载交叉编译器
wget https://releases.linaro.org/components/toolchain/binaries/latest-7/arm-linux-gnueabihf/gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf.tar.xz
tar xvf gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf.tar.xz
mv gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf /opt/
vim /etc/bash.bashrc
# 文件内添加内容如下
# add: PATH="$PATH:/opt/gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf/bin"
source /etc/bash.bashrc
arm-linux-gnueabihf-gcc -v
sudo apt-get install device-tree-compiler
若网络速度较慢,在git clone前执行以下命令,使用socks代理加速git下载速度(若本地有socks代理),或者使用gitee镜像下载
git config --global http.proxy 'socks5://127.0.0.1:1080' #配置代理
git clone https://github.com/Lichee-Pi/u-boot.git -b v3s-current
# git clone https://gitee.com/cnfu/LicheePi_u-boot.git -b v3s-current #gitee镜像
git clone https://github.com/Lichee-Pi/linux.git
本网站文章版权均为本人所有,未经同意不得私自搬运复制,欢迎注明引用出处的合理转载,图片转载请留言。文章内容仅用于技术研究和探索,不得用于违法目的。