diff options
-rw-r--r-- | Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -47,12 +47,9 @@ interface_definitions: $(config_xml_obj) # could mask help strings or mandatory priority statements find $(TMPL_DIR) -name node.def -type f -empty -exec false {} + || sh -c 'echo "There are empty node.def files! Check your interface definitions." && exit 1' - @echo BUILD_ARCH IS $(BUILD_ARCH) -ifneq ($(BUILD_ARCH),amd64) - # There is no telegraf support - remove CLI definitions +ifeq ($(BUILD_ARCH),arm64) + # There is currently no telegraf support in VyOS for ARM64, remove CLI definitions rm -rf $(TMPL_DIR)/service/monitoring/telegraf - # We also do not select the SALT minion package for arm64 - rm -rf $(TMPL_DIR)/service/salt-minion endif .PHONY: op_mode_definitions |