From 71e2281ddaae77a8ad889f9131af30ceb8cd0741 Mon Sep 17 00:00:00 2001 From: Xavier Chapron Date: Wed, 7 Feb 2024 10:42:50 +0100 Subject: [PATCH] standard_plugin.mk: Remove DISABLE_UI This is causing too many hurdles for too few perks. --- src_plugin_sdk/standard_plugin.mk | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src_plugin_sdk/standard_plugin.mk b/src_plugin_sdk/standard_plugin.mk index 5409d29..f52c132 100644 --- a/src_plugin_sdk/standard_plugin.mk +++ b/src_plugin_sdk/standard_plugin.mk @@ -19,10 +19,6 @@ ifeq ($(BOLOS_SDK),) $(error Environment variable BOLOS_SDK is not set) endif -# Prevent compilation of BAGL/NBGL -# Has to be before any SDK include -DISABLE_UI = 1 - include $(BOLOS_SDK)/Makefile.defines APPVERSION ?= "$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)" @@ -60,16 +56,4 @@ DISABLE_STANDARD_BAGL_UX_FLOW = 1 DISABLE_DEBUG_LEDGER_ASSERT = 1 DISABLE_DEBUG_THROW = 1 -# Required for PRINTFs to compile -ifeq ($(DEBUG),0) - DISABLE_STANDARD_SEPROXYHAL = 1 -endif - -# So the plugin can still access the necessary NBGL types and pass its icon to -# the Ethereum app -ifeq ($(TARGET_NAME),TARGET_STAX) - DEFINES += HAVE_NBGL - INCLUDES_PATH += $(BOLOS_SDK)/lib_nbgl/include $(BOLOS_SDK)/lib_ux_stax -endif - include $(BOLOS_SDK)/Makefile.standard_app