2014-02-20 16:22:06 +00:00
|
|
|
Getting Started
|
|
|
|
===============
|
|
|
|
|
2014-10-12 10:17:02 +00:00
|
|
|
Selecting the right version
|
|
|
|
---------------------------
|
|
|
|
|
2014-10-13 10:23:41 +00:00
|
|
|
Gluon's releases are managed using `Git tags`_. If you're a community getting
|
2015-02-26 11:29:53 +00:00
|
|
|
started with Gluon we recommend to use the latest stable release of Gluon.
|
2014-10-12 10:17:02 +00:00
|
|
|
|
2014-10-13 10:23:41 +00:00
|
|
|
Take a look at the `list of gluon releases`_ and notice the latest release,
|
|
|
|
e.g. *v2014.3*.
|
|
|
|
|
|
|
|
Please keep in mind that a matching site configuration for your community
|
|
|
|
is required. Due to new features being added (or sometimes being removed)
|
|
|
|
the format of the site configuration changes slightly between releases.
|
2014-10-12 10:17:02 +00:00
|
|
|
|
2014-10-13 10:23:41 +00:00
|
|
|
Recent releases (starting with *v2014.3.1*) will come with an example
|
|
|
|
configuration located in *docs/site-example/*.
|
2014-10-12 10:17:02 +00:00
|
|
|
|
2014-10-13 10:23:41 +00:00
|
|
|
.. _Git tags: http://git-scm.com/book/en/Git-Basics-Tagging
|
|
|
|
.. _list of gluon releases: https://github.com/freifunk-gluon/gluon/releases
|
2014-10-12 10:17:02 +00:00
|
|
|
|
2015-03-25 18:14:18 +00:00
|
|
|
Dependencies
|
|
|
|
------------
|
|
|
|
To build Gluon, several packages need to be installed on the system. On a
|
|
|
|
freshly installed Debian Wheezy system the following packages are required:
|
|
|
|
|
|
|
|
* `git` (to get Gluon and other dependencies)
|
|
|
|
* `subversion`
|
2015-09-10 21:54:27 +00:00
|
|
|
* `python` (Python 3 doesn't work)
|
2015-03-25 18:14:18 +00:00
|
|
|
* `build-essential`
|
|
|
|
* `gawk`
|
|
|
|
* `unzip`
|
|
|
|
* `libncurses-dev` (actually `libncurses5-dev`)
|
|
|
|
* `libz-dev` (actually `zlib1g-dev`)
|
2015-09-10 21:54:27 +00:00
|
|
|
* `libssl-dev`
|
2015-03-25 18:14:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
Building the images
|
|
|
|
-------------------
|
2014-10-12 10:17:02 +00:00
|
|
|
|
2014-10-13 10:29:24 +00:00
|
|
|
To build Gluon, first check out the repository. Replace *RELEASE* with the
|
2015-05-16 13:34:55 +00:00
|
|
|
version you'd like to checkout, e.g. *v2015.1*.
|
2014-10-08 21:38:58 +00:00
|
|
|
|
|
|
|
::
|
|
|
|
|
2014-10-13 10:29:24 +00:00
|
|
|
git clone https://github.com/freifunk-gluon/gluon.git gluon -b RELEASE
|
2014-10-08 21:38:58 +00:00
|
|
|
|
2014-10-13 10:23:41 +00:00
|
|
|
This command will create a directory named *gluon/*.
|
|
|
|
It might also tell a scary message about being in a *detached state*.
|
|
|
|
**Don't panic!** Everything's fine.
|
|
|
|
Now, enter the freshly created directory:
|
2014-10-08 21:38:58 +00:00
|
|
|
|
|
|
|
::
|
|
|
|
|
2014-10-13 10:23:41 +00:00
|
|
|
cd gluon
|
|
|
|
|
|
|
|
It's time to add (or create) your site configuration.
|
|
|
|
So let's create the directory *site/*:
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
mkdir site
|
|
|
|
cd site
|
|
|
|
|
2015-03-19 22:09:40 +00:00
|
|
|
Copy *site.conf*, *site.mk* and *i18n* from *docs/site-example*:
|
2014-10-13 10:23:41 +00:00
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
cp ../docs/site-example/site.conf .
|
|
|
|
cp ../docs/site-example/site.mk .
|
2015-03-19 22:09:40 +00:00
|
|
|
cp -r ../docs/site-example/i18n .
|
2014-10-13 10:23:41 +00:00
|
|
|
|
2015-03-19 22:09:40 +00:00
|
|
|
Edit these files to match your community, then go back to the top-level Gluon
|
2014-10-13 10:23:41 +00:00
|
|
|
directory and build Gluon:
|
2014-07-09 10:43:10 +00:00
|
|
|
|
|
|
|
::
|
|
|
|
|
2014-10-13 10:23:41 +00:00
|
|
|
cd ..
|
2015-03-14 18:20:11 +00:00
|
|
|
make update # Get other repositories used by Gluon
|
|
|
|
make GLUON_TARGET=ar71xx-generic # Build Gluon
|
2014-07-09 10:43:10 +00:00
|
|
|
|
2015-03-14 18:20:11 +00:00
|
|
|
When calling make, the OpenWrt build environment is prepared/updated.
|
2014-10-08 21:38:58 +00:00
|
|
|
In case of errors read the messages carefully and try to fix the stated issues (e.g. install tools not available yet).
|
2014-07-09 10:43:10 +00:00
|
|
|
|
2015-03-14 18:20:11 +00:00
|
|
|
``ar71xx-generic`` is the most common target and will generated images for most of the supported hardware.
|
|
|
|
To see a complete list of supported targets, call ``make`` without setting ``GLUON_TARGET``.
|
2014-07-09 10:43:10 +00:00
|
|
|
|
2015-10-12 23:18:03 +00:00
|
|
|
The built images can be found in the directory `output/images`. Of these, the factory
|
2014-07-09 10:43:10 +00:00
|
|
|
images are to be used when flashing from the original firmware a device came with,
|
|
|
|
and sysupgrade is to upgrade from other versions of Gluon or any other OpenWRT-based
|
|
|
|
system.
|
|
|
|
|
2015-03-25 18:14:18 +00:00
|
|
|
You should reserve about 10GB of disk space for each `GLUON_TARGET`.
|
2014-07-09 10:43:10 +00:00
|
|
|
|
|
|
|
There are two levels of `make clean`:
|
|
|
|
|
2014-02-20 16:22:06 +00:00
|
|
|
::
|
|
|
|
|
2015-03-14 18:20:11 +00:00
|
|
|
make clean GLUON_TARGET=ar71xx-generic
|
2014-07-09 10:43:10 +00:00
|
|
|
|
2015-03-14 18:20:11 +00:00
|
|
|
will ensure all packages are rebuilt for a single target; this is what you normally want to do after an update.
|
2014-07-09 10:43:10 +00:00
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
make dirclean
|
|
|
|
|
|
|
|
will clean the entire tree, so the toolchain will be rebuilt as well, which is
|
|
|
|
not necessary in most cases, and will take a while.
|
|
|
|
|
2014-08-30 17:55:17 +00:00
|
|
|
|
2015-10-14 18:12:52 +00:00
|
|
|
opkg repositories
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
Gluon is mostly compatible with OpenWrt, so the normal OpenWrt package repositories
|
|
|
|
can be used for Gluon as well. It is advisable to setup a mirror or reverse proxy
|
|
|
|
reachable over IPv6 and add it to ``site.conf`` as http://downloads.openwrt.org/ does
|
|
|
|
not support IPv6.
|
|
|
|
|
|
|
|
This is not true for kernel modules; the Gluon kernel is incompatible with the
|
|
|
|
kernel of the default OpenWrt images. Therefore, Gluon will not only generate images,
|
|
|
|
but also an opkg repositoy containing all kernel modules provided by OpenWrt/Gluon
|
|
|
|
for the kernel of the generated images.
|
|
|
|
|
|
|
|
Signing keys
|
|
|
|
............
|
|
|
|
|
|
|
|
Gluon does not support HTTPS for downloading packages; fortunately, opkg deploys
|
|
|
|
public-key cryptography to ensure package integrity.
|
|
|
|
|
|
|
|
The Gluon images will contain two public keys: the official OpenWrt signing key
|
|
|
|
(to allow installing userspace packages) and a Gluon-specific key (which is used
|
|
|
|
to sign the generated module repository).
|
|
|
|
|
|
|
|
By default, Gluon will handle the generation and handling of the keys itself.
|
2015-10-30 15:44:14 +00:00
|
|
|
When making firmware releases based on Gluon, it might make sense to store
|
2015-10-14 18:12:52 +00:00
|
|
|
the keypair, so updating the module repository later is possible.
|
|
|
|
|
|
|
|
The location the keys are stored at and read from can be changed
|
|
|
|
(see :ref:`getting-started-environment-variables`). To only generate the keypair
|
|
|
|
at the configured location without doing a full build, use ``make create-key``.
|
|
|
|
|
|
|
|
.. _getting-started-environment-variables:
|
|
|
|
|
2014-08-30 17:55:17 +00:00
|
|
|
Environment variables
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
Gluon's build process can be controlled by various environment variables.
|
|
|
|
|
|
|
|
GLUON_SITEDIR
|
2015-10-14 18:12:52 +00:00
|
|
|
Path to the site configuration. Defaults to ``site``.
|
2014-08-30 17:55:17 +00:00
|
|
|
|
|
|
|
GLUON_BUILDDIR
|
2015-10-14 18:12:52 +00:00
|
|
|
Working directory during build. Defaults to ``build``.
|
|
|
|
|
|
|
|
GLUON_OPKG_KEY
|
|
|
|
Path key file used to sign the module opkg repository. Defaults to ``$(GLUON_BULDDIR)/gluon-opkg-key``.
|
|
|
|
|
|
|
|
The private key will be stored as ``$(GLUON_OPKG_KEY)``, the public key as ``$(GLUON_OPKG_KEY).pub``.
|
2014-08-30 17:55:17 +00:00
|
|
|
|
2015-10-12 23:18:03 +00:00
|
|
|
GLUON_OUTPUTDIR
|
2015-10-14 18:12:52 +00:00
|
|
|
Path where output files will be stored. Defaults to ``output``.
|
2015-10-12 23:18:03 +00:00
|
|
|
|
|
|
|
GLUON_IMAGEDIR
|
2015-10-14 18:12:52 +00:00
|
|
|
Path where images will be stored. Defaults to ``$(GLUON_OUTPUTDIR)/images``.
|
2015-10-12 23:18:03 +00:00
|
|
|
|
2015-10-13 19:36:19 +00:00
|
|
|
GLUON_MODULEDIR
|
|
|
|
Path where the kernel module opkg repository will be stored. Defaults to ``$(GLUON_OUTPUTDIR)/modules``.
|
|
|
|
|
2014-08-30 17:55:17 +00:00
|
|
|
|
2015-03-14 18:20:11 +00:00
|
|
|
So all in all, to update and rebuild a Gluon build tree, the following commands should be used (repeat the
|
|
|
|
``make clean`` and ``make`` for all targets you want to build):
|
2014-07-09 10:43:10 +00:00
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
git pull
|
|
|
|
(cd site && git pull)
|
|
|
|
make update
|
2015-03-14 18:20:11 +00:00
|
|
|
make clean GLUON_TARGET=ar71xx-generic
|
|
|
|
make GLUON_TARGET=ar71xx-generic
|