2017-10-03 18:00:04 +02:00
|
|
|
GLUON_SITE_PACKAGES :=<% gluon_site_packages.each do | p | -%>
|
|
|
|
<%= " " + p -%>
|
|
|
|
<% end -%>
|
|
|
|
|
2017-10-27 21:31:42 +02:00
|
|
|
|
|
|
|
# EXTRA_SOFTWARE_TOOLS_01
|
|
|
|
EXTRA_SOFTWARE_TOOLS_01 := \
|
|
|
|
nano \
|
|
|
|
htop \
|
|
|
|
ethtool
|
|
|
|
|
|
|
|
# x86
|
|
|
|
ifeq ($(GLUON_TARGET),x86-generic)
|
|
|
|
GLUON_SITE_PACKAGES += \
|
|
|
|
$(EXTRA_SOFTWARE_TOOLS_01)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# x86-64
|
|
|
|
ifeq ($(GLUON_TARGET),x86-64)
|
|
|
|
GLUON_SITE_PACKAGES += \
|
|
|
|
$(EXTRA_SOFTWARE_TOOLS_01)
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2017-10-03 18:00:04 +02:00
|
|
|
DEFAULT_GLUON_RELEASE := <%= gluon_release %>
|
|
|
|
|
|
|
|
# Allow overriding the release number from the command line
|
|
|
|
GLUON_RELEASE ?= $(DEFAULT_GLUON_RELEASE)
|
|
|
|
|
|
|
|
GLUON_PRIORITY ?= 0
|
|
|
|
|
|
|
|
# Region code required for some images; supported values: us eu
|
|
|
|
GLUON_REGION ?= eu
|
|
|
|
|
|
|
|
GLUON_ATH10K_MESH ?= <%= gluon_ath10k_mesh %>
|
|
|
|
|
|
|
|
GLUON_LANGS ?= en de
|