This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
gluon-firmware/README.md

33 lines
1.0 KiB
Markdown
Raw Normal View History

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
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.