Import ubus tools.

This commit is contained in:
2016-02-26 22:16:27 +01:00
parent 2c3ca52e41
commit 6bc8cdeef3
200 changed files with 23469 additions and 0 deletions

11
build.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
if [ -e build ]; then
echo "Clean"
rm -rf build/*
fi
PI_ADDR=192.168.1.6
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchain-RaspberryPi.cmake -DPI=$PI_ADDR ..
make