Skip to content

Commit 6b93758

Browse files
committed
Rename circuitpython.spk to firmware.spk
1 parent 771f435 commit 6b93758

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

ports/cxd56/Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ LDFLAGS = \
128128
-T$(SPRESENSE_SDK)/nuttx/build/ramconfig.ld \
129129
--gc-sections \
130130
-Map=$(BUILD)/output.map \
131-
-o $(BUILD)/circuitpython.elf \
131+
-o $(BUILD)/firmware.elf \
132132
--start-group \
133133
-u spresense_main \
134134
$(BUILD)/libmpy.a \
@@ -181,7 +181,7 @@ SRC_QSTR += $(SRC_C) $(SRC_SUPERVISOR) $(SRC_COMMON_HAL_EXPANDED) $(SRC_SHARED_M
181181
# Sources that only hold QSTRs after pre-processing.
182182
SRC_QSTR_PREPROCESSOR +=
183183

184-
all: $(BUILD)/circuitpython.spk
184+
all: $(BUILD)/firmware.spk
185185

186186
$(FIRMWARE):
187187
$(ECHO) ""
@@ -196,17 +196,17 @@ $(BUILD)/libmpy.a: $(SPRESENSE_SDK) $(OBJ)
196196
$(ECHO) "AR $@"
197197
$(Q)$(AR) rcs $(BUILD)/libmpy.a $(OBJ)
198198

199-
$(BUILD)/circuitpython.elf: $(BUILD)/libmpy.a
199+
$(BUILD)/firmware.elf: $(BUILD)/libmpy.a
200200
$(ECHO) "LD $@"
201201
$(Q)$(LD) $(LDFLAGS)
202202

203-
$(BUILD)/circuitpython.spk: $(BUILD)/circuitpython.elf
203+
$(BUILD)/firmware.spk: $(BUILD)/firmware.elf
204204
$(ECHO) "Creating $@"
205-
$(MKSPK) -c 2 $(BUILD)/circuitpython.elf nuttx $(BUILD)/circuitpython.spk
205+
$(MKSPK) -c 2 $(BUILD)/firmware.elf nuttx $(BUILD)/firmware.spk
206206

207-
flash: $(BUILD)/circuitpython.spk
207+
flash: $(BUILD)/firmware.spk
208208
$(ECHO) "Writing $< to the board"
209-
$(SPRESENSE_SDK)/sdk/tools/flash.sh -c $(SERIAL) $(BUILD)/circuitpython.spk
209+
$(SPRESENSE_SDK)/sdk/tools/flash.sh -c $(SERIAL) $(BUILD)/firmware.spk
210210

211211
flash-bootloader: $(SPRESENSE_SDK) $(FIRMWARE)
212212
$(ECHO) "Writing loader to the board"

ports/cxd56/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ To flash the bootloader run the command:
8383

8484
$ make BOARD=spresense flash-bootloader
8585

86-
## Flash the circuitpython.spk image ##
86+
## Flash the circuitpython image ##
8787

8888
To flash the firmware run the command:
8989

0 commit comments

Comments
 (0)