diff options
| author | Nick Brassel <nick@tzarc.org> | 2021-08-22 13:49:33 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-22 13:49:33 +1000 |
| commit | c70abc8d047319830e369ae4e14cd43bae3bd3b8 (patch) | |
| tree | 584c40fe4f0a871c17312f2f3635e6d6f15e1931 | |
| parent | dcef03853d612feb23b02523f1dfaf6576d18ace (diff) | |
| download | qmk_firmware-c70abc8d047319830e369ae4e14cd43bae3bd3b8.tar.gz qmk_firmware-c70abc8d047319830e369ae4e14cd43bae3bd3b8.zip | |
Warn when building a board that uses arm_atsam (#10904)
* Add deprecation warning during build when building a board that uses arm_atsam.
* Rewording.
* Wording.
* Fixup.
| -rw-r--r-- | tmk_core/arm_atsam.mk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tmk_core/arm_atsam.mk b/tmk_core/arm_atsam.mk index e9bdc2c3c..b29de9132 100644 --- a/tmk_core/arm_atsam.mk +++ b/tmk_core/arm_atsam.mk | |||
| @@ -50,6 +50,17 @@ MCUFLAGS += -D__$(ARM_ATSAM)__ | |||
| 50 | # For a directory that has spaces, enclose it in quotes. | 50 | # For a directory that has spaces, enclose it in quotes. |
| 51 | EXTRALIBDIRS = | 51 | EXTRALIBDIRS = |
| 52 | 52 | ||
| 53 | cpfirmware: warn-arm_atsam | ||
| 54 | .INTERMEDIATE: warn-arm_atsam | ||
| 55 | warn-arm_atsam: $(FIRMWARE_FORMAT) | ||
| 56 | $(info @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@) | ||
| 57 | $(info This MCU support package has a lack of support from the upstream provider (Massdrop).) | ||
| 58 | $(info There are currently questions about valid licensing, and at this stage it's likely) | ||
| 59 | $(info their boards and supporting code will be removed from QMK in the near future. Please) | ||
| 60 | $(info contact Massdrop for support, and encourage them to align their future board design) | ||
| 61 | $(info choices to gain proper license compatibility with QMK.) | ||
| 62 | $(info @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@) | ||
| 63 | |||
| 53 | # Convert hex to bin. | 64 | # Convert hex to bin. |
| 54 | bin: $(BUILD_DIR)/$(TARGET).hex | 65 | bin: $(BUILD_DIR)/$(TARGET).hex |
| 55 | $(OBJCOPY) -Iihex -Obinary $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin | 66 | $(OBJCOPY) -Iihex -Obinary $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin |
