forked from remote/site-ffmuc
34 lines
769 B
Makefile
34 lines
769 B
Makefile
## gluon site.mk makefile example
|
|
|
|
## GLUON_SITE_PACKAGES
|
|
# specify gluon/openwrt packages to include here
|
|
|
|
GLUON_SITE_PACKAGES := \
|
|
gluon-alfred \
|
|
gluon-autoupdater \
|
|
gluon-config-mode \
|
|
gluon-ebtables-filter-multicast \
|
|
gluon-ebtables-filter-ra-dhcp \
|
|
gluon-luci-admin \
|
|
gluon-luci-autoupdater \
|
|
gluon-next-node \
|
|
gluon-mesh-batman-adv \
|
|
gluon-mesh-vpn-fastd \
|
|
gluon-radvd \
|
|
gluon-status-page \
|
|
iwinfo \
|
|
iptables \
|
|
haveged
|
|
|
|
|
|
## 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.4+0-exp$(shell date '+%Y%m%d')
|
|
|
|
# Allow overriding the release number from the command line
|
|
GLUON_RELEASE ?= $(DEFAULT_GLUON_RELEASE)
|