From 5f03dbd245c49365c72989d72c62cd58210d3627 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Mon, 28 Mar 2022 10:08:28 -0700 Subject: [PATCH] When checking out our arduino core deps for Kaleidoscope dev and use, we don't need the extra copy of Kaleidoscope or the bootloader source code which is included in Arduino cores by convention --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ad4d15d0..275290e5 100644 --- a/Makefile +++ b/Makefile @@ -51,11 +51,14 @@ $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/boards.txt: git clone -c core.symlinks=true \ --recurse-submodules \ --shallow-submodules \ + --recurse-submodules=':(exclude)avr/bootloaders' \ + --recurse-submodules=':(exclude)avr/libraries/Kaleidoscope' \ https://github.com/keyboardio/Kaleidoscope-Bundle-Keyboardio \ $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio git clone -c core.symlinks=true \ --recurse-submodules \ --shallow-submodules \ + --recurse-submodules=':(exclude)libraries/Kaleidoscope' \ https://github.com/keyboardio/ArduinoCore-GD32-Keyboardio $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/gd32 update: