Skip to content

Commit 39e6e8d

Browse files
Merge pull request #15 from LedgerHQ/tdj/update_app_flags
Update Makefile (app flags)
2 parents 7771d2d + 029a576 commit 39e6e8d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Makefile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,21 @@ ALL_PATH_PARAMS += $(NOS_PATH_PARAM)
5656

5757
ifeq ($(APP_TYPE), standalone)
5858
ifeq ($(TARGET_NAME),TARGET_NANOX)
59-
LIB_LOAD_FLAGS = --appFlags 0x250
60-
APP_LOAD_FLAGS = --appFlags 0x250
59+
LIB_LOAD_FLAGS = --appFlags 0x200
60+
APP_LOAD_FLAGS = --appFlags 0x200
6161
else
62-
LIB_LOAD_FLAGS = --appFlags 0x50
63-
APP_LOAD_FLAGS = --appFlags 0x50
62+
LIB_LOAD_FLAGS = --appFlags 0x00
63+
APP_LOAD_FLAGS = --appFlags 0x00
6464
endif
6565
DEFINES += IS_STANDALONE_APP
6666

6767
else ifeq ($(APP_TYPE), shared)
6868
ifeq ($(TARGET_NAME),TARGET_NANOX)
69-
LIB_LOAD_FLAGS = --appFlags 0xA50
70-
APP_LOAD_FLAGS = --appFlags 0x250 --dep Nano
69+
LIB_LOAD_FLAGS = --appFlags 0xA00
70+
APP_LOAD_FLAGS = --appFlags 0x200 --dep Nano
7171
else
72-
LIB_LOAD_FLAGS = --appFlags 0x850
73-
APP_LOAD_FLAGS = --appFlags 0x50 --dep Nano
72+
LIB_LOAD_FLAGS = --appFlags 0x800
73+
APP_LOAD_FLAGS = --appFlags 0x00 --dep Nano
7474
endif
7575
DEFINES += SHARED_LIBRARY_NAME=\"$(NANO_APP_NAME)\"
7676
DEFINES += HAVE_COIN_NANO
@@ -112,7 +112,7 @@ endif
112112

113113
APPVERSION_M=1
114114
APPVERSION_N=2
115-
APPVERSION_P=6
115+
APPVERSION_P=7
116116
APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)
117117

118118
MAX_ADPU_INPUT_SIZE=217

0 commit comments

Comments
 (0)