A project to build a Linux kernel and OS for the Xiegu X6100 without having to copy files from the vendor's kernel.
To build on a Linux machine, just:
.\br_config.sh
cd build
make
And then you'll have a sdcard.img
in the build
directory, you can then
flash.
If you are indeed using Linux, check the pre-requesites of Buildroot here.
The recomended way of building this repo on other systems is using Docker, as described below.
If you want to change the Buildroot configuration, first do this:
cd build
make menuconfig
For those you can just:
cd build
make uboot-menuconfig
# or
cd build
make linux-menuconfig
If you change the boot.cmd
file, then you have to run:
make host-uboot-tools-rebuild
make