a modular framework for creating OpenWrt-based firmwares for wireless mesh nodes
Go to file
2013-12-28 21:35:16 +01:00
include Add make target to check out modules 2013-12-28 14:54:49 +01:00
kernel Update kernel config to 12.09 release 2013-10-08 20:23:15 +02:00
patches/openwrt Make patch generation deterministic 2013-12-28 17:17:02 +01:00
scripts Make patch and update scripts a bit nicer 2013-12-28 21:35:16 +01:00
.gitignore Add make target to check out modules 2013-12-28 14:54:49 +01:00
LICENSE Move package submodules to packages/ 2013-10-09 19:58:28 +02:00
Makefile Make patch and update scripts a bit nicer 2013-12-28 21:35:16 +01:00
modules Add make target to check out modules 2013-12-28 14:54:49 +01:00
README.md Less ambiguous README.md, mention build reqs 2013-12-15 12:22:28 +01:00
TODO Add TODO file 2013-09-10 19:22:40 +02:00

To build Gluon, after checkeing out the repository change to the source root directory to perform the following commands:

git submodule update --init                                  # Get other repositories used by Gluon
git clone git://github.com/freifunk-gluon/site-ffhl.git site # Get the Freifunk Lübeck site repository - or use your own!
make                                                         # Build Gluon

When calling make, the OpenWRT build environment is prepared/updated. To rebuilt the images only, just use:

make images

The built images can be found in the directory ./images.

For the build reserve 6GB of disk space. The building requires packages for subversion, ncurses headers (libncurses-dev) and zlib headers (libz-dev).`

There are three levels of 'make clean':

make clean

will only clean the Gluon-specific files;

make cleanall

will also call 'make clean' on the OpenWRT tree, and

make dirclean

will do all this, and call 'make dirclean' on the OpenWRT tree.