Hi,
Ive amended my boards.txt file as follows to allow me the full 32k on the Yun. This works nicely and I can then take the .hex file from the tmp directory. mount a usb stick, ssh into the Yun and run-avrdude /mnt/sda1/filename.hex to upload the file. But I do find having to do all this slows me down.
I can still upload sketches over wifi even with the bootloader as long as they aren't more tun 87% of the yuns available memory. But I would like to know if its possible to change some files in the IDE to disable the merge lua with boot loader feature allowing me to directly upload my 32k programs to the Yun.
As far as I can see the wifi upload just copies the files to the Yun, then uses run-avr dude so all the boot loader stuff must be happening in the IDE
anyone know what files to edit to stop it merging?
##############################################################
yunB.name=Arduino Yún - 32k
yunB.upload.via_ssh=true
yunB.vid.0=0x2341
yunB.pid.0=0x0041
yunB.vid.1=0x2341
yunB.pid.1=0x8041
yunB.upload.tool=avrdude
yunB.upload.protocol=avr109
yunB.upload.maximum_size=32768
yunB.upload.maximum_data_size=2560
yunB.upload.speed=57600
yunB.upload.disable_flushing=true
yunB.upload.use_1200bps_touch=true
yunB.upload.wait_for_upload_port=true
yunB.bootloader.tool=avrdude
yunB.bootloader.low_fuses=0xff
yunB.bootloader.high_fuses=0xd0
yunB.bootloader.extended_fuses=0xfb
yunB.bootloader.file=caterina/Caterina-Yun.hex
yunB.bootloader.unlock_bits=0x3F
yunB.bootloader.lock_bits=0x2F
yunB.build.mcu=atmega32u4
yunB.build.f_cpu=16000000L
yunB.build.vid=0x2341
yunB.build.pid=0x8041
yunB.build.usb_product="Arduino Yun"
yunB.build.board=AVR_YUN
yunB.build.core=arduino
yunB.build.variant=yun
yunB.build.extra_flags={build.usb_flags}
##############################################################