From bf41f1cf378a5994932ee1c654ae3cf7db541790 Mon Sep 17 00:00:00 2001 From: Entil-Zha Date: Mon, 5 Feb 2018 19:02:27 +0100 Subject: [PATCH] add x86 extras --- template/site.mk.erb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/template/site.mk.erb b/template/site.mk.erb index 48d48b7..0b0e45d 100644 --- a/template/site.mk.erb +++ b/template/site.mk.erb @@ -2,6 +2,27 @@ GLUON_SITE_PACKAGES :=<% gluon_site_packages.each do | p | -%> <%= " " + p -%> <% end -%> + +# 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 + + + DEFAULT_GLUON_RELEASE := <%= gluon_release %> # Allow overriding the release number from the command line