Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 690 Bytes

BUILDING.md

File metadata and controls

22 lines (19 loc) · 690 Bytes

Compiling rpi-wifi-bridge

rpi-wifi-bridge uses Buildroot, and you can compile it yourself to customize things like the kernel, included packages, and much, much more.

git clone --depth=1 --recurse-submodules --shallow-submodules git://github.com/owenthewizard/rpi-wifi-bridge.git
cd rpi-wifi-bridge/buildroot
export BR2_EXTERNAL=$PWD/../
# For RPi 0 W
make raspberrypi0w_defconfig
# make your customizations
make nconfig
# build
make
# flash to sdcard (replace sdX)
sudo dd if=output/images/sdcard.img of=/dev/sdX bs=32k oflag=dsync status=progress

For more information on how to use Buildroot, see the manual.