Add a README to folder tools.

Signed-off-by: Robert Langhammer <rlanghammer@web.de>
Reviewed-by: Fabian Bläse <fabian@blaese.de>
[fabian@blaese.de: Fix whitespace issues, introduce markdown code blocks, rename to README.md]
Signed-off-by: Fabian Bläse <fabian@blaese.de>
This commit is contained in:
Robert Langhammer 2019-12-12 20:19:20 +01:00 committed by Fabian Bläse
parent 4a159bc647
commit cbaea3ffe2
1 changed files with 26 additions and 0 deletions

26
tools/README.md Normal file
View File

@ -0,0 +1,26 @@
```
____ ____ ____ _____
| | | | Freifunk
|____ |____ |____ | Franken
| | | | Firmware
| | | | Tools
```
In this folder you will find tools which can help you
hacking and building the firmware.
## buildscript-bash-completion
Just source this script or put it in your `/etc/bash_completion.d`
It provides all options and parameters of the buildscript on tab.
## dep-tree
This script collects all fff-package dependencies. You can throw the
output at the graphviz dot-tool to visualize the dependecies-tree. e.g.
```
dep-tree | dot -Tx11
dep-tree | dot -Tpdf > dependencies.pdf
```