standard_plugin.mk: Remove DISABLE_UI

This is causing too many hurdles for too few perks.
This commit is contained in:
Xavier Chapron
2024-02-07 10:42:50 +01:00
parent 5a448dbbd3
commit 71e2281dda

View File

@@ -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