2013-02-12 01:17:23 +00:00
|
|
|
To build Gluon, use the following commands after checking out the repository:
|
|
|
|
|
2013-02-12 01:18:25 +00:00
|
|
|
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
|
2013-02-12 01:17:23 +00:00
|
|
|
|
2013-02-13 01:36:39 +00:00
|
|
|
When calling make, the OpenWRT build environment is prepared/updated. To rebuilt
|
|
|
|
the images only, just use:
|
2013-02-12 01:17:23 +00:00
|
|
|
|
2013-02-13 01:36:39 +00:00
|
|
|
make images
|
2013-02-12 01:17:23 +00:00
|
|
|
|
|
|
|
The built images can be found in the directory /images.
|
2013-04-05 21:53:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
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.
|