File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ Here's all notable changes and commits to both the configuration repo and the ba
4
4
Many thanks to all those who have submitted issues and pull requests to make this firmware better!
5
5
## Config repo
6
6
7
+ 14/3/2024 - Fix Makefile errors that prevent builds on macOS [ #409 ] ( https://github.com/KinesisCorporation/Adv360-Pro-ZMK/pull/409 )
8
+
7
9
18/2/2024 - Fix version.dtsi reset after build when running local builds [ #385 ] ( https://github.com/KinesisCorporation/Adv360-Pro-ZMK/pull/385 )
8
10
9
11
12/2/2024 - Update GitHub build workflow to use the latest actions [ #376 ] ( https://github.com/KinesisCorporation/Adv360-Pro-ZMK/pull/376 )
Original file line number Diff line number Diff line change 1
- DOCKER := "$(shell { command -v podman || command -v docker; }) "
2
- TIMESTAMP := "$(shell date -u +"% Y% m% d% H% M") "
3
- COMMIT := "$(shell git rev-parse --short HEAD 2>/dev/null) "
4
- detected_OS := "$(shell uname) " # Classify UNIX OS
5
- ifeq ($(strip $(detected_OS ) ) ,Darwin) # We only care if it's OS X
1
+ DOCKER := $(shell { command -v podman || command -v docker; })
2
+ TIMESTAMP := $(shell date -u +"% Y% m% d% H% M")
3
+ COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null)
4
+ ifeq ($(shell uname) ,Darwin)
6
5
SELINUX1 :=
7
6
SELINUX2 :=
8
7
else
You can’t perform that action at this time.
0 commit comments