2014-08-05 18:47:00 +00:00
|
|
|
## gluon site.mk makefile example
|
|
|
|
|
2017-07-11 02:14:24 +00:00
|
|
|
## GLUON_FEATURES
|
2017-07-08 23:09:15 +00:00
|
|
|
# Specify Gluon features/packages to enable;
|
|
|
|
# Gluon will automatically enable a set of packages
|
|
|
|
# depending on the combination of features listed
|
|
|
|
|
2017-07-11 02:14:24 +00:00
|
|
|
GLUON_FEATURES := \
|
2017-07-08 23:09:15 +00:00
|
|
|
autoupdater \
|
|
|
|
ebtables-filter-multicast \
|
|
|
|
ebtables-filter-ra-dhcp \
|
2018-07-01 14:34:00 +00:00
|
|
|
ebtables-limit-arp \
|
2017-07-08 23:09:15 +00:00
|
|
|
mesh-batman-adv-15 \
|
|
|
|
mesh-vpn-fastd \
|
|
|
|
radvd \
|
|
|
|
respondd \
|
|
|
|
status-page \
|
|
|
|
web-advanced \
|
|
|
|
web-wizard
|
|
|
|
|
|
|
|
## GLUON_SITE_PACKAGES
|
2018-07-10 20:57:40 +00:00
|
|
|
# Specify additional Gluon/OpenWrt packages to include here;
|
2017-07-08 23:09:15 +00:00
|
|
|
# A minus sign may be prepended to remove a packages from the
|
|
|
|
# selection that would be enabled by default or due to the
|
|
|
|
# chosen feature flags
|
|
|
|
|
|
|
|
GLUON_SITE_PACKAGES := haveged 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
|
|
|
|
2017-04-13 19:59:17 +00:00
|
|
|
# Variables set with ?= can be overwritten from the command line
|
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
|
|
|
|
|
|
|
|
GLUON_RELEASE ?= $(DEFAULT_GLUON_RELEASE)
|
|
|
|
|
|
|
|
# Default priority for updates.
|
|
|
|
GLUON_PRIORITY ?= 0
|
2015-03-19 21:46:01 +00:00
|
|
|
|
2016-08-28 18:59:23 +00:00
|
|
|
# Region code required for some images; supported values: us eu
|
|
|
|
GLUON_REGION ?= eu
|
|
|
|
|
2015-03-19 21:46:01 +00:00
|
|
|
# Languages to include
|
|
|
|
GLUON_LANGS ?= en de
|