Skip to content

Commit

Permalink
ignoring outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jleni committed Nov 15, 2018
1 parent f74178f commit 98f40b9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ cmake-build-debug/CMakeFiles/clion-log\.txt
dep/

obj/

bin/

debug/
21 changes: 12 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,20 @@ ifeq ($(BOLOS_SDK),)
$(error BOLOS_SDK is not set)
endif

dummy_submodules := $(shell git submodule update --init --recursive)

SCRIPT_LD:=$(CURDIR)/script.ld

include $(BOLOS_SDK)/Makefile.defines

# Main app configuration

APPNAME = "QRL"
APPVERSION_M=0
APPVERSION_N=2
APPVERSION_P=0

#APP_LOAD_PARAMS = --appFlags 0x00 --delete --signApp --signPrivateKey 0130a1c6fa9154cad78d91a8ecbbdbba7e1efbff01840997949130bba5cb38cd $(COMMON_LOAD_PARAMS)
APP_LOAD_PARAMS = --appFlags 0x00 --delete $(COMMON_LOAD_PARAMS)

ICONNAME=$(CURDIR)/glyphs/icon_app.gif
APP_LOAD_PARAMS = --appFlags 0x00 --delete $(COMMON_LOAD_PARAMS) --path "44'/238'"
ICONNAME=$(CURDIR)/icon.gif

############
# Platform
Expand All @@ -59,10 +58,10 @@ DEFINES += USB_SEGMENT_SIZE=64
DEFINES += U2F_PROXY_MAGIC=\"QRL\"
DEFINES += U2F_MAX_MESSAGE_SIZE=264 #257+5+2

#DEFINES += BLE_SEGMENT_SIZE=32 #max MTU, min 20

DEFINES += HAVE_BOLOS_APP_STACK_CANARY
DEFINES += LEDGER_SPECIFIC

#Feature temporarily disabled
DEFINES += TESTING_ENABLED

# Compiler, assembler, and linker
Expand Down Expand Up @@ -104,13 +103,13 @@ SDK_SOURCE_PATH += lib_stusb lib_u2f lib_stusb_impl

all: default

load: all
load:
python -m ledgerblue.loadApp $(APP_LOAD_PARAMS)

delete:
python -m ledgerblue.deleteApp $(COMMON_DELETE_PARAMS)

package: all
package:
./pkgdemo.sh ${APPNAME} ${APPVERSION} ${ICONNAME}


Expand All @@ -120,3 +119,7 @@ include $(BOLOS_SDK)/Makefile.rules

#add dependency on custom makefile filename
dep/%.d: %.c Makefile.genericwallet


listvariants:
@echo VARIANTS COIN cosmos

0 comments on commit 98f40b9

Please sign in to comment.