funkyguy4000:
I would need to change the pins to use that library. Is that possible or is it hardcoded into the bootloader?
Check Sd2Card.h under arduino-1.0/libraries/SD/utility/. When SOFTWARE_SPI is defined the pins can be set as desired.
/** SPI chip select pin */
uint8_t const SD_CHIP_SELECT_PIN = 10;
/** SPI Master Out Slave In pin */
uint8_t const SPI_MOSI_PIN = 11;
/** SPI Master In Slave Out pin */
uint8_t const SPI_MISO_PIN = 12;
/** SPI Clock pin */
uint8_t const SPI_SCK_PIN = 13;