When building the firmware locally on Linux, I get the following error, which I think is different from the benign "download get_status" failure.
$ cd firmware/modules
$ make PLATFORM=photon clean all program-dfu
....
arm-none-eabi-objcopy -O ihex ../../../build/target/system-part1/platform-6-m-lto/system-part1.elf ../../../build/target/system-part1/platform-6-m-lto/system-part1.hex
arm-none-eabi-size --format=berkeley ../../../build/target/system-part1/platform-6-m-lto/system-part1.elf
text data bss dec hex filename
246880 168 136 247184 3c590 ../../../build/target/system-part1/platform-6-m-lto/system-part1.elf
arm-none-eabi-objdump -h -S ../../../build/target/system-part1/platform-6-m-lto/system-part1.elf > ../../../build/target/system-part1/platform-6-m-lto/system-part1.lst
dfu-suffix -v 2B04 -p D006 -a ../../../build/target/system-part1/platform-6-m-lto/system-part1.dfu
dfu-suffix (dfu-util) 0.8
Copyright 2011-2012 Stefan Schmidt, 2013-2014 Tormod Volden
This program is Free Software and has ABSOLUTELY NO WARRANTY
Please report bugs to dfu-util@lists.gnumonks.org
Suffix successfully added to file
Serial device PARTICLE_SERIAL_DEV : not available
Flashing using dfu:
dfu-util -d 0x2B04:0xD006 -a 0 -s 0x8020000 -D ../../../build/target/system-part1/platform-6-m-lto/system-part1.dfu
dfu-util 0.8
Copyright 2005-2009 Weston Schmidt, Harald Welte and OpenMoko Inc.
Copyright 2010-2014 Tormod Volden and Stefan Schmidt
This program is Free Software and has ABSOLUTELY NO WARRANTY
Please report bugs to dfu-util@lists.gnumonks.org
Opening DFU capable USB device...
ID 1d50:607f
Run-time device DFU version 011a
Claiming USB DFU Interface...
Setting Alternate Setting #0 ...
Determining device status: state = dfuIDLE, status = 0
dfuIDLE, continuing
DFU mode device DFU version 011a
Device returned transfer size 4096
DfuSe interface name: "Internal Flash "
Downloading to address = 0x08020000, size = 247052
Download [ ] 0% 0 bytesdfu-util: Error during special command "ERASE_PAGE" get_status
make[1]: *** [program-dfu] Error 74
make[1]: Leaving directory `/home/andyw/spark/firmware/modules/photon/system-part1'
make: *** [/home/andyw/spark/firmware/modules/photon/system-part1/makefile] Error 2
$
Am I missing an unlock step or something similar ?