ATtiny85 16mhz pll BOD disabled

I used to have an arduino core installed that would let me "bootload" the ATtiny85 with 16Mhz internal pll while also leaving the BOD disabled. But when i installed the latest Arduino IDE it mysteriously disappeared and i cant seem to track it down or any other that will allow me to do this.

Alternatively, Does anybody know what (if anything) i can edit in the boards.txt below to disable BOD

###########################################################################

attiny85at16p.name=ATtiny85 @ 16 MHz (internal PLL; 4.3 V BOD)

The following do NOT work...

attiny85at16p.upload.using=avrispv2

attiny85at16p.upload.using=Pololu USB AVR Programmer

The following DO work (pick one)...

attiny85at16p.upload.using=arduino:arduinoisp

attiny85at16p.upload.protocol=avrispv2

attiny85at16p.upload.using=pololu

attiny85at16p.upload.maximum_size=8192

PLL Clock; Start-up time PWRDWN/RESET: 1K CK/14 CK + 4 ms; [CKSEL=0001 SUT=00]

Brown-out detection level at VCC=4.3 V; [BODLEVEL=100]

Preserve EEPROM memory through the Chip Erase cycle; [EESAVE=0]

Serial program downloading (SPI) enabled; [SPIEN=0]

attiny85at16p.bootloader.low_fuses=0xC1
attiny85at16p.bootloader.high_fuses=0xD4
attiny85at16p.bootloader.extended_fuses=0xFF
attiny85at16p.bootloader.path=empty
attiny85at16p.bootloader.file=empty85at16.hex

attiny85at16p.build.mcu=attiny85
attiny85at16p.build.f_cpu=16000000L
attiny85at16p.build.core=tiny

###########################################################################

?

Cheers

High fuse D7

Thanks will try that as soon as i get back to studio!