diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2011-10-10 09:01:56 -0700 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2011-10-10 09:01:56 -0700 |
commit | f9ed282a16a6ac89cbd8458cd174332d64d0428b (patch) | |
tree | c639485eb91214a6d9c95401ed83c784af286c9a /bootloaders/optiboot/makeall | |
parent | 84285ab7807db69a96c96d58bb227669a81d5226 (diff) | |
parent | 4b7c12b7cbd7a9575814040da1d182106638e9c0 (diff) |
Merge pull request #30 from WestfW/master
Significant optiboot upgrade.
Diffstat (limited to 'bootloaders/optiboot/makeall')
-rwxr-xr-x | bootloaders/optiboot/makeall | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/bootloaders/optiboot/makeall b/bootloaders/optiboot/makeall index 7a0b82d..f076bc7 100755 --- a/bootloaders/optiboot/makeall +++ b/bootloaders/optiboot/makeall @@ -1,13 +1,20 @@ #!/bin/bash make clean +# +# The "big three" standard bootloaders. +make atmega8 +make atmega168 +make atmega328 +# +# additional buildable platforms of +# somewhat questionable support level make lilypad make lilypad_resonator make pro8 make pro16 make pro20 -make diecimila -make ng -make atmega328 make atmega328_pro8 +make sanguino +make mega +make atmega88 make luminet - |