30 lines
789 B
Makefile
30 lines
789 B
Makefile
## gluon site.mk makefile example
|
|
|
|
## 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.
|
|
|
|
DEFAULT_GLUON_RELEASE := 0.6+exp$(shell date '+%Y%m%d')
|
|
|
|
# Variables set with ?= can be overwritten from the command line
|
|
|
|
## 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
|
|
|
|
# Region code required for some images; supported values: us eu
|
|
GLUON_REGION ?= us
|
|
|
|
# Languages to include
|
|
GLUON_LANGS ?= en
|