File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 109
109
url = https://github.com/adafruit/Adafruit_CircuitPython_Register.git
110
110
[submodule "extmod/ulab "]
111
111
path = extmod/ulab
112
- url = https://github.com/adafruit/circuitpython -ulab
112
+ url = https://github.com/v923z/micropython -ulab
113
113
[submodule "frozen/Adafruit_CircuitPython_ESP32SPI "]
114
114
path = frozen/Adafruit_CircuitPython_ESP32SPI
115
115
url = https://github.com/adafruit/Adafruit_CircuitPython_ESP32SPI
198
198
path = ports/broadcom/firmware
199
199
url = https://github.com/raspberrypi/rpi-firmware.git
200
200
branch = master
201
+ shallow = true
Original file line number Diff line number Diff line change @@ -321,3 +321,11 @@ clean-nrf:
321
321
322
322
clean-stm :
323
323
$(MAKE ) -C ports/stm BOARD=feather_stm32f405_express clean
324
+
325
+ .PHONY : fetch-submodules
326
+ fetch-submodules :
327
+ # This update will fail because the commits we need aren't the latest on the
328
+ # branch. We can ignore that though because we fix it with the second command.
329
+ # (Only works for git servers that allow sha fetches.)
330
+ git submodule update --init -N --depth 1 || true
331
+ git submodule foreach ' git fetch --tags --depth 1 origin $$sha1 && git checkout -q $$sha1'
You can’t perform that action at this time.
0 commit comments