diff --git a/.github/workflows/build-rpi-baremetal.yml b/.github/workflows/build-rpi-baremetal.yml index 5f1b664e..65927e2b 100644 --- a/.github/workflows/build-rpi-baremetal.yml +++ b/.github/workflows/build-rpi-baremetal.yml @@ -1,4 +1,4 @@ - name: Build Raspberry Pi Baremetal Examples +name: Build Raspberry Pi Baremetal Examples on: push: diff --git a/rpi4b-blink/Makefile b/rpi4b-blink/Makefile index 2e74d16e..0fface72 100644 --- a/rpi4b-blink/Makefile +++ b/rpi4b-blink/Makefile @@ -1,4 +1,4 @@ -SWIFT_EXEC ?= $(shell if [ "$(shell uname)" = "Darwin" ]; then xcrun -f swift; else which swiftc; fi) +SWIFT_EXEC ?= $(shell if [ "$(shell uname)" = "Darwin" ]; then xcrun -f swift; else which swift; fi) CLANG ?= $(shell if [ "$(shell uname)" = "Darwin" ]; then xcrun -f clang; else which clang; fi) LLVM_OBJCOPY ?= $(shell if [ "$(shell uname)" = "Darwin" ]; then xcrun -f llvm-objcopy; else which llvm-objcopy; fi) diff --git a/rpi5-blink/Makefile b/rpi5-blink/Makefile index 40e370b5..e33ce17f 100644 --- a/rpi5-blink/Makefile +++ b/rpi5-blink/Makefile @@ -1,4 +1,4 @@ -SWIFT_EXEC ?= $(shell if [ "$(shell uname)" = "Darwin" ]; then xcrun -f swift; else which swiftc; fi) +SWIFT_EXEC ?= $(shell if [ "$(shell uname)" = "Darwin" ]; then xcrun -f swift; else which swift; fi) CLANG ?= $(shell if [ "$(shell uname)" = "Darwin" ]; then xcrun -f clang; else which clang; fi) LLVM_OBJCOPY ?= $(shell if [ "$(shell uname)" = "Darwin" ]; then xcrun -f llvm-objcopy; else which llvm-objcopy; fi) diff --git a/rpi5-blink/kernel8.elf b/rpi5-blink/kernel8.elf deleted file mode 100755 index 4b10234c..00000000 Binary files a/rpi5-blink/kernel8.elf and /dev/null differ diff --git a/rpi5-blink/kernel8.img b/rpi5-blink/kernel8.img deleted file mode 100755 index 1ec28084..00000000 Binary files a/rpi5-blink/kernel8.img and /dev/null differ