Skip to content

Commit f1b2527

Browse files
committed
Makefile: prepare 2021.10-r2.1 release
Signed-off-by: Hector Palacios <[email protected]>
1 parent 13f9a3c commit f1b2527

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

DUB-RELEASE-NOTES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Digi U-Boot RELEASE NOTES
44

55
DUB-2021.10
66
-----------
7+
dub-2021.10-r2.1, released on 2023/02/20
8+
- Based on BSP from STMicroelectronics tag 'v2021.10-stm32mp-r2'.
9+
- Add support to ConnectCore MP13.
10+
- Add multi-I2C support.
11+
12+
713
dub-2021.10-r1.2, released on 2022/11/22
814
- Based on BSP from STMicroelectronics tag 'v2021.10-stm32mp-r1'.
915
- Built along custom ATF v2.6.

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
VERSION = 2021
44
PATCHLEVEL = 10
55
SUBLEVEL = r2
6-
EXTRAVERSION = .1-git
6+
EXTRAVERSION = .1
77
NAME =
88

99
# *DOCUMENTATION*
@@ -327,14 +327,14 @@ os_x_before = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \
327327
$(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
328328

329329
os_x_after = $(shell if [ $(DARWIN_MAJOR_VERSION) -ge $(1) -a \
330-
$(DARWIN_MINOR_VERSION) -ge $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
330+
$(DARWIN_MINOR_VERSION) -ge $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
331331

332332
# Snow Leopards build environment has no longer restrictions as described above
333333
HOSTCC = $(call os_x_before, 10, 5, "cc", "gcc")
334334
KBUILD_HOSTCFLAGS += $(call os_x_before, 10, 4, "-traditional-cpp")
335335
KBUILD_HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress")
336336

337-
# macOS Mojave (10.14.X)
337+
# macOS Mojave (10.14.X)
338338
# Undefined symbols for architecture x86_64: "_PyArg_ParseTuple"
339339
KBUILD_HOSTLDFLAGS += $(call os_x_after, 10, 14, "-lpython -dynamclib", "")
340340
endif

0 commit comments

Comments
 (0)