From cbaea3ffe24925cea584ede25862850969a295c3 Mon Sep 17 00:00:00 2001 From: Robert Langhammer Date: Thu, 12 Dec 2019 20:19:20 +0100 Subject: [PATCH] Add a README to folder tools. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Robert Langhammer Reviewed-by: Fabian Bläse [fabian@blaese.de: Fix whitespace issues, introduce markdown code blocks, rename to README.md] Signed-off-by: Fabian Bläse --- tools/README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tools/README.md diff --git a/tools/README.md b/tools/README.md new file mode 100644 index 0000000..aa8d16f --- /dev/null +++ b/tools/README.md @@ -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 +```