2014-08-05 18:47:00 +00:00
|
|
|
## gluon site.mk makefile example
|
|
|
|
|
|
|
|
## GLUON_SITE_PACKAGES
|
|
|
|
# specify gluon/openwrt packages to include here
|
2014-08-08 14:06:37 +00:00
|
|
|
# The gluon-mesh-batman-adv-* package must come first because of the dependency resolution
|
2014-08-05 18:47:00 +00:00
|
|
|
|
|
|
|
GLUON_SITE_PACKAGES := \
|
2014-11-17 14:19:37 +00:00
|
|
|
gluon-mesh-batman-adv-14 \
|
2014-08-05 18:47:00 +00:00
|
|
|
gluon-alfred \
|
|
|
|
gluon-announced \
|
|
|
|
gluon-autoupdater \
|
|
|
|
gluon-config-mode-autoupdater \
|
|
|
|
gluon-config-mode-contact-info \
|
2015-01-16 14:23:48 +00:00
|
|
|
gluon-config-mode-geo-location \
|
|
|
|
gluon-config-mode-hostname \
|
|
|
|
gluon-config-mode-mesh-vpn \
|
2014-08-05 18:47:00 +00:00
|
|
|
gluon-ebtables-filter-multicast \
|
|
|
|
gluon-ebtables-filter-ra-dhcp \
|
|
|
|
gluon-luci-admin \
|
|
|
|
gluon-luci-autoupdater \
|
|
|
|
gluon-luci-portconfig \
|
|
|
|
gluon-next-node \
|
|
|
|
gluon-mesh-vpn-fastd \
|
|
|
|
gluon-radvd \
|
|
|
|
gluon-status-page \
|
2015-01-16 14:23:48 +00:00
|
|
|
haveged \
|
2014-08-05 18:47:00 +00:00
|
|
|
iptables \
|
2015-01-16 14:23:48 +00:00
|
|
|
iwinfo
|
2014-08-05 18:47:00 +00:00
|
|
|
|
|
|
|
## DEFAULT_GLUON_RELEASE
|
|
|
|
# version string to use for images
|
|
|
|
# gluon relies on
|
|
|
|
# opkg compare-versions "$1" '>>' "$2"
|
|
|
|
# to decide if a version is newer or not.
|
|
|
|
|
2015-01-16 14:23:48 +00:00
|
|
|
DEFAULT_GLUON_RELEASE := 0.6+exp$(shell date '+%Y%m%d')
|
2014-08-05 18:47:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
## GLUON_RELEASE
|
|
|
|
# call make with custom GLUON_RELEASE flag, to use your own release version scheme.
|
|
|
|
# e.g.:
|
|
|
|
# $ make images GLUON_RELEASE=23.42+5
|
|
|
|
# would generate images named like this:
|
|
|
|
# gluon-ff%site_code%-23.42+5-%router_model%.bin
|
|
|
|
|
|
|
|
# Allow overriding the release number from the command line
|
|
|
|
GLUON_RELEASE ?= $(DEFAULT_GLUON_RELEASE)
|
|
|
|
|
|
|
|
# Default priority for updates.
|
|
|
|
GLUON_PRIORITY ?= 0
|