Skip to content

Commit 4709668

Browse files
committed
chore: drop old CMSIS support
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent ae01729 commit 4709668

File tree

3 files changed

+2
-23
lines changed

3 files changed

+2
-23
lines changed

.gitmodules

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[submodule "ARM_CMSIS"]
2-
path = CMSIS
3-
url = https://github.com/ARM-software/CMSIS.git
41
[submodule "CMSIS_5"]
52
path = CMSIS_5
63
url = https://github.com/ARM-software/CMSIS_5.git

CMSIS

-1
This file was deleted.

Makefile

+2-19
Original file line numberDiff line numberDiff line change
@@ -40,30 +40,13 @@ endif
4040
# end of packaging specific
4141
# -----------------------------------------------------------------------------
4242

43-
.PHONY: all clean cmsis cmsis5 print_info postpackaging
43+
.PHONY: all clean cmsis5 print_info postpackaging
4444

4545
# Arduino module packaging:
4646
# - exclude version control system files, here git files and folders .git, .gitattributes and .gitignore
4747
# - exclude 'extras' folder
48-
all: cmsis cmsis5
48+
all: cmsis5
4949

50-
cmsis: PACKAGE_VERSION := 4.5.0
51-
cmsis: PACKAGE_FOLDER := CMSIS
52-
cmsis: clean print_info
53-
@echo ----------------------------------------------------------
54-
@echo "Packaging module."
55-
@tar --exclude=./.gitattributes \
56-
--exclude=./.travis.yml \
57-
--exclude=CMSIS/index.html \
58-
--exclude=CMSIS/Documentation \
59-
--exclude=CMSIS/Pack \
60-
--exclude=CMSIS/Utilities \
61-
--exclude=CMSIS/DSP_Lib/Examples \
62-
--exclude=Device/ARM/Documents \
63-
--exclude=.git \
64-
-cjf "$(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.bz2" "$(PACKAGE_FOLDER)"
65-
$(MAKE) PACKAGE_VERSION=$(PACKAGE_VERSION) --no-builtin-rules postpackaging -C .
66-
@echo ----------------------------------------------------------
6750

6851
cmsis5: PACKAGE_FOLDER := CMSIS_5
6952
cmsis5: PACKAGE_VERSION := $(shell git --git-dir=$(PACKAGE_FOLDER)/.git describe --tags)

0 commit comments

Comments
 (0)