diff options
author | WestfW <westfw@gmail.com> | 2011-06-14 10:24:27 -0700 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2011-10-10 12:11:17 -0400 |
commit | 07dfd77554162dc9c2570ad0f605ae080c182b2e (patch) | |
tree | b3f580c2e0aceb5cab71ca86f80e9647fe8b2627 /bootloaders/optiboot/makeall | |
parent | 3b4fbd0960351a9f9cd79e8cd7c8e2b4f20aabc7 (diff) |
Allow the READ PARAMETER command to return our version number.
(significant size impact: 14 bytes!)
Initialized "address" to eliminate compiler warning (4 bytes!)
Add "atmega168" as a more accurate target name than "diecimila"
(keep diecimila as well for backward compatibility)
Reduce the .hex and .lst targets that are stored in source control
to the three basics: atmega8, atmega168, atmega328. The other
targets remain in the makefile and makeall, but will need to be
built from source if wanted. Which should be less of a problem
now that the source is buildable without installing crosspack.
(cherry picked from commit 7b1ee0f1b0192143fffbbed66dc046b6568f4386)
Diffstat (limited to 'bootloaders/optiboot/makeall')
-rwxr-xr-x | bootloaders/optiboot/makeall | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/bootloaders/optiboot/makeall b/bootloaders/optiboot/makeall index b92c56e..f076bc7 100755 --- a/bootloaders/optiboot/makeall +++ b/bootloaders/optiboot/makeall @@ -1,15 +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 atmega328 make atmega328_pro8 make sanguino make mega -make atmega8 make atmega88 make luminet |