mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
Updating avrdude under linux and make.sh.
This commit is contained in:
BIN
build/linux/dist/tools/avrdude
vendored
BIN
build/linux/dist/tools/avrdude
vendored
Binary file not shown.
6
build/linux/dist/tools/avrdude.conf
vendored
6
build/linux/dist/tools/avrdude.conf
vendored
@ -377,6 +377,12 @@ programmer
|
|||||||
type = usbasp;
|
type = usbasp;
|
||||||
;
|
;
|
||||||
|
|
||||||
|
programmer
|
||||||
|
id = "usbtiny";
|
||||||
|
desc = "USBtiny simple USB programmer";
|
||||||
|
type = usbtiny;
|
||||||
|
;
|
||||||
|
|
||||||
programmer
|
programmer
|
||||||
id = "butterfly";
|
id = "butterfly";
|
||||||
desc = "Atmel Butterfly Development Board";
|
desc = "Atmel Butterfly Development Board";
|
||||||
|
BIN
build/linux/dist/tools/uisp
vendored
BIN
build/linux/dist/tools/uisp
vendored
Binary file not shown.
@ -49,8 +49,7 @@ fi
|
|||||||
echo Copying shared and core files...
|
echo Copying shared and core files...
|
||||||
cp -r ../shared/* work
|
cp -r ../shared/* work
|
||||||
rm -rf work/dist
|
rm -rf work/dist
|
||||||
cp -r ../../targets work/lib
|
cp -r ../../hardware work
|
||||||
cp -r ../../bootloader168 work
|
|
||||||
rm work/reference.zip
|
rm work/reference.zip
|
||||||
|
|
||||||
echo Copying examples...
|
echo Copying examples...
|
||||||
@ -60,8 +59,7 @@ cp -r ../shared/dist/examples work/
|
|||||||
echo Copying dist files...
|
echo Copying dist files...
|
||||||
cp -r dist/lib work/
|
cp -r dist/lib work/
|
||||||
#cp -r dist/core work/
|
#cp -r dist/core work/
|
||||||
cp -r dist/bootloader work/
|
cp -r dist/tools work/hardware/
|
||||||
cp -r dist/tools work/
|
|
||||||
|
|
||||||
### -- START BUILDING -------------------------------------------
|
### -- START BUILDING -------------------------------------------
|
||||||
|
|
||||||
@ -71,14 +69,6 @@ cd ../..
|
|||||||
### -- BUILD GCC ------------------------------------------------
|
### -- BUILD GCC ------------------------------------------------
|
||||||
# in the future we will build avr-gcc and tools (if they don't exist)
|
# in the future we will build avr-gcc and tools (if they don't exist)
|
||||||
|
|
||||||
### -- COPY BOOTLOADER -----------------------------------------
|
|
||||||
cd bootloader
|
|
||||||
# don't make the bootloader, since it rarely changes and requires
|
|
||||||
# installation of make.
|
|
||||||
# make
|
|
||||||
cp ATmegaBOOT.hex ../build/linux/work/bootloader
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
### -- BUILD PARSER ---------------------------------------------
|
### -- BUILD PARSER ---------------------------------------------
|
||||||
|
|
||||||
cd app
|
cd app
|
||||||
@ -105,7 +95,7 @@ echo Building the PDE...
|
|||||||
# show the user an error, rather than crapping out with some strange
|
# show the user an error, rather than crapping out with some strange
|
||||||
# "class not found" crap
|
# "class not found" crap
|
||||||
#jikes -classpath ../build/linux/work/classes:../build/linux/work/lib/antlr.jar:../build/linux/work/lib/oro.jar:../build/linux/work/lib/registry.jar:../build/linux/work/lib/RXTXcomm.jar:../build/linux/work/lib/mrj.jar:$CLASSPATH -d ../build/linux/work/classes tools/*.java preproc/*.java syntax/*.java *.java
|
#jikes -classpath ../build/linux/work/classes:../build/linux/work/lib/antlr.jar:../build/linux/work/lib/oro.jar:../build/linux/work/lib/registry.jar:../build/linux/work/lib/RXTXcomm.jar:../build/linux/work/lib/mrj.jar:$CLASSPATH -d ../build/linux/work/classes tools/*.java preproc/*.java syntax/*.java *.java
|
||||||
javac -source 1.4 -target 1.4 -classpath ../build/linux/work/class:../build/linux/work/lib/antlr.jar:../build/linux/work/lib/oro.jar:../build/linux/work/lib/registry.jar:../build/linux/work/lib/RXTXcomm.jar:../build/linux/work/lib/mrj.jar:$CLASSPATH -d ../build/linux/work/classes tools/*.java preproc/*.java syntax/*java *.java
|
javac -source 1.4 -target 1.4 -classpath ../build/linux/work/class:../build/linux/work/lib/antlr.jar:../build/linux/work/lib/oro.jar:../build/linux/work/lib/registry.jar:../build/linux/work/lib/RXTXcomm.jar:../build/linux/work/lib/mrj.jar:$CLASSPATH -d ../build/linux/work/classes ../core/*.java tools/*.java preproc/*.java syntax/*java *.java
|
||||||
|
|
||||||
cd ../build/linux/work/classes
|
cd ../build/linux/work/classes
|
||||||
rm -f ../lib/pde.jar
|
rm -f ../lib/pde.jar
|
||||||
|
Reference in New Issue
Block a user