# 【Anxinke BW16-Kit】Linux environment construction## 01 clone SDK ```git clone -b dev https://github.com/ambiot/ambd_sdk.git```Clone DEV branch#### The file is a bit large. If the clone fails, download the compressed package and unzip it
#### The final directory
## 02 Increase permissions```chmod -R 777 ./project/realtek_amebaD_va0_example/GCC-RELEASE/``` #### The official one is 777. It's easier to develop it yourself## 03 Install dependencies```sudo apt-get install git wget libc6-i386 lib32ncurses5 make bc gawk ncurses-dev ``` #### Some dependencies of ubuntu22 version are no longer available. This build uses ubuntu18 version and is built successfully## 04 Compile project_lp ```cd ./project/realtek_amebaD_va0_example/GCC-RELEASE/project_lp/``` ```make all ``` #### make completed
#### Image file
h ## 04 Compile project_hp ```cd ../project_hp/```Switch to hp directory```make all ```
#### Image file
## At this point, the compilation is complete## Burn#### The burning part cannot be burned in linux, and the image file needs to be copied to windows for burning#### Copy 3 files: km0_boot_all.bin, km0_km4_image2.bin, km4_boot_all.bin #### For the burning tutorial, please see my AT command chapter, which has a detailed introduction#### Tutorial link https://bbs.eeworld.com.cn/thread-1271098-1-1.html