renamed DiskLoader to Caterina (after Leonardo's mom)

This commit is contained in:
Zach Eveland 2012-01-10 16:29:47 -05:00
parent 99fea13f84
commit 932afb8428
9 changed files with 10 additions and 10 deletions

View File

@ -153,8 +153,8 @@ leonardo.upload.speed=1200
leonardo.bootloader.low_fuses=0xde leonardo.bootloader.low_fuses=0xde
leonardo.bootloader.high_fuses=0xda leonardo.bootloader.high_fuses=0xda
leonardo.bootloader.extended_fuses=0xcb leonardo.bootloader.extended_fuses=0xcb
leonardo.bootloader.path=diskloader leonardo.bootloader.path=caterina
leonardo.bootloader.file=DiskLoader-Leonardo.hex leonardo.bootloader.file=Caterina-Leonardo.hex
leonardo.bootloader.unlock_bits=0x3F leonardo.bootloader.unlock_bits=0x3F
leonardo.bootloader.lock_bits=0x2F leonardo.bootloader.lock_bits=0x2F
leonardo.build.mcu=atmega32u4 leonardo.build.mcu=atmega32u4
@ -171,8 +171,8 @@ leonardo.build.variant=leonardo
#micro.bootloader.low_fuses=0xde #micro.bootloader.low_fuses=0xde
#micro.bootloader.high_fuses=0xda #micro.bootloader.high_fuses=0xda
#micro.bootloader.extended_fuses=0xcb #micro.bootloader.extended_fuses=0xcb
#micro.bootloader.path=diskloader #micro.bootloader.path=caterina
#micro.bootloader.file=DiskLoader-Micro.hex #micro.bootloader.file=Caterina-Micro.hex
#micro.bootloader.unlock_bits=0x3F #micro.bootloader.unlock_bits=0x3F
#micro.bootloader.lock_bits=0x2F #micro.bootloader.lock_bits=0x2F
#micro.build.mcu=atmega32u4 #micro.build.mcu=atmega32u4

View File

@ -1,10 +1,10 @@
############################################################################### ###############################################################################
# Makefile for DiskLoader # Makefile for Caterina (formerly DiskLoader)
############################################################################### ###############################################################################
## General Flags ## General Flags
PROJECT = DiskLoader PROJECT = Caterina
TARGET = DiskLoader.elf TARGET = Caterina.elf
CC = avr-gcc CC = avr-gcc
# BOARD2 # BOARD2
@ -24,7 +24,7 @@ AVRDUDE_PROGRAMMER = avrispmkII
AVRDUDE_PORT = usb AVRDUDE_PORT = usb
# program name should not be changed... # program name should not be changed...
PROGRAM = DiskLoader PROGRAM = Caterina
AVRDUDE = avrdude AVRDUDE = avrdude
AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) -p $(MCU) AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) -p $(MCU)
@ -41,7 +41,7 @@ ASMFLAGS += -x assembler-with-cpp -Wa,-gdwarf2
## Linker flags ## Linker flags
LDFLAGS = $(COMMON) LDFLAGS = $(COMMON)
LDFLAGS += -Wl,-gc-sections,-Map=DiskLoader.map,--section-start=.text=0x7800,--relax LDFLAGS += -Wl,-gc-sections,-Map=Caterina.map,--section-start=.text=0x7800,--relax
LDFLAGS += -nodefaultlibs -nostartfiles LDFLAGS += -nodefaultlibs -nostartfiles
## Intel Hex file production flags ## Intel Hex file production flags
@ -65,7 +65,7 @@ vpath %.cpp $(SRC_DIR)
.PHONY: all checkdirs clean .PHONY: all checkdirs clean
all: checkdirs $(TARGET) DiskLoader.hex DiskLoader.lss size all: checkdirs $(TARGET) Caterina.hex Caterina.lss size
-include $(DEP) -include $(DEP)