# lichee-nano **Repository Path**: antiwinter/lichee-nano ## Basic Information - **Project Name**: lichee-nano - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-21 - **Last Updated**: 2023-12-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### Cloning the Repository To get started, clone the repository and its submodules using the following commands: ``` bash git clone https://gitee.com/antiwinter/lichee-nano.git git submodule init git submodule update ``` ### Setting Up the Workshop To enter the build workshop, execute the **workshop.sh** script. This workshop is a Docker environment equipped with all the necessary tools and libraries for the compilation process. On the first run, this script will build a Docker image and start a container. For subsequent uses, it will directly enter the container's bash environment. ``` bash ./workshop.sh ``` ### Compiling the Code The compilation process begins with **building** buildroot, during which a toolchain is generated. Following this, **linux** and **u-boot** are compiled using the newly created toolchain. Thus, there's no need to install additional toolchains. The compiled images can be found in the following directory: **buildroot/output/images** To start the build process, use these commands: ``` bash make def make -j10 ```