Skip to content

Commit

Permalink
App params: Allow empty icon when computing app params
Browse files Browse the repository at this point in the history
  • Loading branch information
abonnaudet-ledger committed Jan 30, 2025
1 parent 4130d31 commit 10de743
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile.app_params
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ ICONHEX := $(shell $(ICONHEX_CMD) && cat $(ICON_HEX_FILE) && rm -f $(ICON_HEX_FI
else
ICONHEX := $(shell $(ICONHEX_CMD))
endif

ifneq ($(ICONHEX),)
APP_INSTALL_PARAMS += --icon $(ICONHEX)
endif

APP_INSTALL_PARAMS += $(foreach curve, $(CURVE_APP_LOAD_PARAMS), --curve $(curve))
APP_INSTALL_PARAMS += $(foreach path, $(PATH_APP_LOAD_PARAMS), --path $(path))
ifneq ($(PATH_SLIP21_APP_LOAD_PARAMS),)
Expand Down

0 comments on commit 10de743

Please sign in to comment.