2013-12-15 02:11:07 +00:00
|
|
|
To build Gluon, after checkeing out the repository change to the source root directory
|
|
|
|
to perform the following commands:
|
2013-02-12 01:17:23 +00:00
|
|
|
|
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
|
|
|
|
2013-12-15 02:11:07 +00:00
|
|
|
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).`
|
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.
|