<feed xmlns='http://www.w3.org/2005/Atom'>
<title>qmk_sweep_skeletyl/keyboards/toad/rules.mk, branch master</title>
<subtitle>my qmk configs</subtitle>
<id>http://archive.git.mgrote.net/qmk_sweep_skeletyl/atom?h=master</id>
<link rel='self' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/atom?h=master'/>
<link rel='alternate' type='text/html' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/'/>
<updated>2024-03-15T22:24:10+00:00</updated>
<entry>
<title>Migrate features from rules.mk to data driven - ST (#23286)</title>
<updated>2024-03-15T22:24:10+00:00</updated>
<author>
<name>Joel Challis</name>
</author>
<published>2024-03-15T22:24:10+00:00</published>
<link rel='alternate' type='text/html' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/commit/?id=14990ca5a2d444aa8db62b8faadf11bd5b8b8d75'/>
<id>urn:sha1:14990ca5a2d444aa8db62b8faadf11bd5b8b8d75</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Migrate `MCU` and `BOOTLOADER` to data-driven (#19529)</title>
<updated>2023-02-08T07:41:46+00:00</updated>
<author>
<name>Ryan</name>
</author>
<published>2023-02-08T07:41:46+00:00</published>
<link rel='alternate' type='text/html' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/commit/?id=f9aeea64c1f85d388485503e52035b5f7533ed26'/>
<id>urn:sha1:f9aeea64c1f85d388485503e52035b5f7533ed26</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix up build options comments (#15463)</title>
<updated>2021-12-13T02:05:37+00:00</updated>
<author>
<name>Ryan</name>
</author>
<published>2021-12-13T02:05:37+00:00</published>
<link rel='alternate' type='text/html' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/commit/?id=f718a10889e6adf33f3fc2f41b61cad7fe9e0c2e'/>
<id>urn:sha1:f718a10889e6adf33f3fc2f41b61cad7fe9e0c2e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Tidy up NKRO_ENABLE rules (#15382)</title>
<updated>2021-12-09T05:05:44+00:00</updated>
<author>
<name>Ryan</name>
</author>
<published>2021-12-09T05:05:44+00:00</published>
<link rel='alternate' type='text/html' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/commit/?id=a8d440e4e043dc8427f17c07631556d0ff3efc20'/>
<id>urn:sha1:a8d440e4e043dc8427f17c07631556d0ff3efc20</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Tidy up `SLEEP_LED_ENABLE` rules (#15362)</title>
<updated>2021-12-01T10:13:00+00:00</updated>
<author>
<name>Ryan</name>
</author>
<published>2021-12-01T10:13:00+00:00</published>
<link rel='alternate' type='text/html' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/commit/?id=c12b99767921366c9fa8a1d6ba53872a26aa6127'/>
<id>urn:sha1:c12b99767921366c9fa8a1d6ba53872a26aa6127</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove bootloader listings from rules.mk (#14330)</title>
<updated>2021-09-10T03:35:46+00:00</updated>
<author>
<name>Ryan</name>
</author>
<published>2021-09-10T03:35:46+00:00</published>
<link rel='alternate' type='text/html' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/commit/?id=7eea780a7da2d9197b78b62b7294a6b2bc2fa572'/>
<id>urn:sha1:7eea780a7da2d9197b78b62b7294a6b2bc2fa572</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove Full Bootmagic (#13846)</title>
<updated>2021-08-07T06:59:56+00:00</updated>
<author>
<name>James Young</name>
</author>
<published>2021-08-07T06:59:56+00:00</published>
<link rel='alternate' type='text/html' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/commit/?id=a03aa301def77c867ae6c6c840f7fc82b26d91d6'/>
<id>urn:sha1:a03aa301def77c867ae6c6c840f7fc82b26d91d6</id>
<content type='text'>
* disambiguate Bootmagic rules in keymaps

The files edited by this commit were added at a point in time where `BOOTMAGIC_ENABLE = yes` enabled full Bootmagic.

This commit edits the files to specify that full Bootmagic is intended.

* remove BOOTMAGIC_ENABLE=full setting

* unify commented BOOTMAGIC_ENABLE rules in keyboards

Explicitly sets `BOOTMAGIC_ENABLE = no` in keyboards where the rule was commented out.

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#[ \t]*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-zA-Z]\+\).*;\1 = no       # Virtual DIP switch configuration;g' {} +
```

* remove commented Bootmagic rules from keymap/user level

Command:

```
find keyboards/ layouts/ users/ -type f -name 'rules.mk' -exec sed -i -e '/#.*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*/d' {} +
```

* update keyboard BOOTMAGIC_ENABLE rule formatting

Sets the formatting of BOOTMAGIC_ENABLE rules to `BOOTMAGIC_ENABLE = [value]`, without the inline comments (which will be replaced later).

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
```

* update keyboards' BOOTMAGIC_ENABLE settings

Updates keyboard `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = \)full;\1lite;g' '{}' +
```

* update keymap/user BOOTMAGIC_ENABLE settings

Updates keymap/user `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.

Commands:

```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
```

* remove and replace inline comments in keyboards and keymap/user files

Removes and replaces the inline comments, which have been updated to read `Enable Bootmagic Lite`.

Commands:

```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = lite\);\1     # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = yes\);\1      # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = no\);\1       # Enable Bootmagic Lite;g' '{}' +
```

* rename improperly named makefiles

Some files intended to be used as makefiles had improper names causing them to not be used as intended when building.

This commit corrects the filenames of the affected files.

* update renamed file with new rule formatting

* update QMK's template files

Updates QMK's `rules.mk` templates to use the new inline comment.

* update QMK Docs

- remove documentation of full Bootmagic
- update links to Bootmagic Lite doc
- add doc for Magic Keycodes

* rules.mk patch for coarse/ixora and coarse/vinta</content>
</entry>
<entry>
<title>Change ?= to = in keyboard rules.mk (#9390)</title>
<updated>2020-06-15T10:06:10+00:00</updated>
<author>
<name>Ryan</name>
</author>
<published>2020-06-15T10:06:10+00:00</published>
<link rel='alternate' type='text/html' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/commit/?id=44d93285d1e5ae0fdaaaab33aa15ffab456b9434'/>
<id>urn:sha1:44d93285d1e5ae0fdaaaab33aa15ffab456b9434</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Trim firmware size changes from default rules.mk, part 4 (#8046)</title>
<updated>2020-01-30T22:10:23+00:00</updated>
<author>
<name>ridingqwerty</name>
</author>
<published>2020-01-30T22:10:23+00:00</published>
<link rel='alternate' type='text/html' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/commit/?id=17a089d21b261777f4fa48af34b6e012d69d3945'/>
<id>urn:sha1:17a089d21b261777f4fa48af34b6e012d69d3945</id>
<content type='text'>
* Trim firmware size changes from default-ish rules.mk files

* Trim sizes from westfoxtrot boards
</content>
</entry>
<entry>
<title>Cleanup rules.mk for 32U4 keyboards, T-Z (#7190)</title>
<updated>2019-10-30T04:27:25+00:00</updated>
<author>
<name>fauxpark</name>
</author>
<published>2019-10-30T04:27:25+00:00</published>
<link rel='alternate' type='text/html' href='http://archive.git.mgrote.net/qmk_sweep_skeletyl/commit/?id=b47c10bf6f152d7a5c35fc4f7478aa69e91fb081'/>
<id>urn:sha1:b47c10bf6f152d7a5c35fc4f7478aa69e91fb081</id>
<content type='text'>
* Cleanup rules.mk for 32U4 keyboards, T-Z

* Use atmel-dfu in place of lufa-ms until it exists
</content>
</entry>
</feed>
