记忆一隅

荔枝派Zero笔记(三)linux编译

荔枝派Zero笔记(三)linux编译
2021-05-08 · 1 min read
荔枝派 笔记

LicheePi Zero Notes -2 linux compilation

这里尝试编译5.2版本的内核

git clone --single-branch --branch="zero-5.2.y" --depth=1 https://github.com/Lichee-Pi/linux.git

下面开始编译

cd linux
make ARCH=arm licheepi_zero_defconfig
make ARCH=arm menuconfig
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- -j6 # 6线程

若出现报错:/bin/sh: 1: bison: not found,则说明缺少busion依赖,输入以下命令进行安装。

sudo apt install bison flex