aboutsummaryrefslogtreecommitdiff
path: root/locks.c
AgeCommit message (Collapse)Author
2017-02-02Add locking around keystore operations.Rob Austein
k@thulin.net> 2016-06-02 13:34:04 +0200 committer Fredrik Thulin <fredrik@thulin.net> 2016-06-02 13:34:04 +0200 Move the rest of the CLI commands out of cli-test.c.' href='/sw/stm32/commit/projects/cli-test/Makefile?h=modexpng&id=1b3870dd4e0429e1809ce40b70a8f558ffb5df3a'>1b3870d
9b73356
a5850b4















c670d7b
a5850b4


c670d7b


9b73356
c670d7b
c670d7b
c670d7b




c670d7b

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

               
                                                                                                 
 















                                                                   
                         


                                                              


                  
                                        
                                                                 
                                          




                      

                   
TEST = cli-test

OBJS = crc32.o test_sdram.o mgmt-cli.o mgmt-dfu.c mgmt-fpga.c mgmt-misc.c mgmt-show.c mgmt-test.c

BOARD_OBJS = \
	$(TOPLEVEL)/stm-init.o \
	$(TOPLEVEL)/stm-fmc.o \
	$(TOPLEVEL)/stm-uart.o \
	$(TOPLEVEL)/syscalls.o \
	$(TOPLEVEL)/stm-rtc.o \
	$(TOPLEVEL)/spiflash_n25q128.o \
	$(TOPLEVEL)/stm-fpgacfg.o \
	$(TOPLEVEL)/stm-keystore.o \
	$(TOPLEVEL)/stm-sdram.o \
	$(TOPLEVEL)/stm-flash.o \
	$(BOARD_DIR)/TOOLCHAIN_GCC_ARM/startup_stm32f429xx_rtos.o \
	$(BOARD_DIR)/system_stm32f4xx.o \
	$(BOARD_DIR)/stm32f4xx_hal_msp.o \
	$(BOARD_DIR)/stm32f4xx_it_rtos.o

CFLAGS += -I$(LIBCLI_DIR)
CFLAGS += -I$(RTOS_DIR)/rtos -I$(RTOS_DIR)/rtx/TARGET_CORTEX_M

LIBS += $(LIBCLI_DIR)/libcli.a $(RTOS_DIR)/librtos.a

all: $(TEST:=.elf)

%.elf: %.o $(BOARD_OBJS) $(OBJS) $(LIBS)
	$(CC) $(CFLAGS) $^ -o $@ -T$(LDSCRIPT) -g -Wl,-Map=$*.map
	$(OBJCOPY) -O binary $*.elf $*.bin
	$(SIZE) $*.elf

clean:
	rm -f *.o
	rm -f *.elf
	rm -f *.bin
	rm -f *.map