My current T60 status is "Bricked, in Bucts 1 configuration"
I'm not sure what you did, but if this was you flashchips.c:
.model_id = SST_SST25VF016B_T60,
.probe = probe_spi_res2,
.read = spi_chip_read,
then things were wrong:
Change the .probe field to probe_spi_res1 Change the .model_id field to the RES1 ID given in the datasheet of the flash chip Change the .write field to spi_chip_write_1
Tim