General Mac OS X Discussion General Apple and Mac OS X Discussion

Reply
 
LinkBack Thread Tools Display Modes
  (#31) Old
Member
 
Posts: 65
Join Date: Oct 2008
Default Re: SD Card slot - Brainstorming a solution - 11-12-2008, 11:19 AM

Great the dream of extra storage is getting closer. You guys are all great at helping those like myself to understand and learn from your experience and expertise. Thanks you guys for making this a great forum.
Tried it out works great too bad all but one of my cards are sdhc. Thank you so much!


Dell Mini 9 | 32GB SSD Runcore | 2GB RAM | 1.3 mp WebCam | OS X 10.6.2 | USB Wake Off | Legacy Support Off | Bluetooth Module On | A05 bios | NBI 0.8.3RC3 | Geekbench 2 Score 985 |  Mac Pro 2008 | 2 X 2.8 GHz Quad Core 45-nm Intel Xeon E5462 (Harpertown/Penryn) processors | 16GB 800 MHz DDR2 Ram | ATI Radeon HD 2600 XT 256 MB GDDR3 | Geekbench 2 Score 12296 |  MacBook Pro 13" (Mid 2009) | 2.53GHz Intel Core 2 Duo P8700 4GB 1066MHz | Geekbench 2 Score 3907 | http://tinyurl.com/y9gu2f7
Reply With Quote
  (#32) Old
Member
 
Posts: 79
Join Date: Oct 2008
Location: Sedalia, CO
Default Re: SD Card slot - Brainstorming a solution - 11-12-2008, 04:28 PM

ok, I must be a dumb a$$ because I can't get this to work.

I extracted the tar file into the Extensions folder of the boot partition.
Ran the update.sh script to update the cache, chown, etc and than rebooted.

I inserted a formatter SD card and it doesn't show in Finder or Disk Utility..

Feeling dumb...

Update:

I looked in the Profiler under Extensions and do not see the new driver IOSDHC loaded at all....


-ed-
Reply With Quote
  (#33) Old
Member
 
Posts: 88
Join Date: Nov 2008
Default Re: SD Card slot - Brainstorming a solution - 11-12-2008, 05:29 PM

Hmm. I never looked at extensions to see if it was loaded and I've not tried doing what you did. I was always manually loading the kext after boot from the Terminal (so I didn't have to reboot to try new versions). Given that I'd call this "pre-alpha" at best, you may want to hold off, but if you're brave enough to continue...

1) Make sure you were root when you extracted the files. All files in the directory must be owned by user "root" and group "wheel" or the driver won't load. To ensure that the files are owned correctly, from Terminal do "chown -R root:wheel /path/to/IOSDHCIBlockDevice.kext"

2) Run "sudo kextload -tv /path/to/IOSDHCIBlockDevice.kext" from Terminal.

3) The output from that *should* tell you what's wrong.

Alternately, it may start working at that point. I suspect your problem was #1, but I'm not really sure what Type11's script does.

EDIT: Also, in a different terminal window, run "sudo tail -f /var/log/system.log". If the driver finds the card, it will output some junk in there (part of which is the size of the card). Between the output of that and kextload either you'll figure out what's wrong, or I can.
Reply With Quote
  (#34) Old
Member
 
Posts: 79
Join Date: Oct 2008
Location: Sedalia, CO
Default Re: SD Card slot - Brainstorming a solution - 11-12-2008, 07:08 PM

Well, I guess I am brave enough as I continue to play with this.. I appreciate your response and tried what you asked..

The permissions were ok, I had checked that already and also the update scripts from type11 does a chown..

I manually loaded the kext and here is the output.. It looks like it loads correctly but I get no response when inserting an SD card.. I formatted the card HFS (on another mac) just incase but that didn't help..

The formating will be a little munged but you get the idea.

kextload -tv /Volumes/EFI/Extensions/IOSDHCIBlockDevice.kext
kextload: resolving dependencies for kernel extensions with validation and authentication failures
kextload: extension /Volumes/EFI/Extensions/IOSDHCIBlockDevice.kext appears to be loadable
kextload: loading extension /Volumes/EFI/Extensions/IOSDHCIBlockDevice.kext
kextload: /Volumes/EFI/Extensions/IOSDHCIBlockDevice.kext loaded successfully
kextload: sending personalities to kernel:
kextload: from extension /System/Library/Extensions/IOStorageFamily.kext:
kextload: IOFDiskPartitionScheme
kextload: IOMediaBSDClient
kextload: IOGUIDPartitionScheme
kextload: IOAppleLabelScheme
kextload: IOBlockStorageDriver
kextload: IOApplePartitionScheme
kextload: from extension /System/Library/Extensions/IOPCIFamily.kext:
kextload: IOPCI2PCIBridge-Name
kextload: IOPCI2PCIBridge-i386
kextload: IOPCI2PCIBridge-PCI
kextload: from extension /Volumes/EFI/Extensions/IOSDHCIBlockDevice.kext:
kextload: SD Card Host Controller
kextload: sending 10 personalities to the kernel
kextload: matching started for /Volumes/EFI/Extensions/IOSDHCIBlockDevice.kext


-ed-
Reply With Quote
  (#35) Old
Junior Member
 
Posts: 21
Join Date: Oct 2008
Location: Paris, France
Default Re: SD Card slot - Brainstorming a solution - 11-12-2008, 09:00 PM

WOW!!!!!!! Thanks for the work on this. Worked perfectly (I didn't even have to restart). I had a card in the slot before hand and as soon as I installed the kext with kextloader the SD card popped onto my desktop. I hope you continue and if you open up a paypal I will definately contribute. Thanks again
Reply With Quote
  (#36) Old
Senior Member
 
Posts: 218
Join Date: Oct 2008
Default Re: SD Card slot - Brainstorming a solution - 11-12-2008, 09:09 PM

fgodfrey thanks for sending me the source I am diffing with what I have done and hope to be able to work with you on getting this sorted. great start!
Reply With Quote
  (#37) Old
Member
 
Posts: 79
Join Date: Oct 2008
Location: Sedalia, CO
Default Re: SD Card slot - Brainstorming a solution - 11-12-2008, 09:29 PM

Still not working on my end..

Doesn't load at boot time although I ran the update script which updates the cache.

If I load manually using kextload, it does load (see previous posting) but still doesn't recognize a card put in the slot.

After manual loading, I get the following:
bash-3.2# kextstat | grep -i sdh
90 0 0x2dfe1000 0x4000 0x3000 IOSDHCIBlockDevice (1.0.0d1) <61 17 12>

Also, no messages in system.log at any time during this process that relates to these commands and actions.


-ed-
Reply With Quote
  (#38) Old
Senior Member
 
Posts: 218
Join Date: Oct 2008
Default Re: SD Card slot - Brainstorming a solution - 11-12-2008, 10:05 PM

humm strange i can get cards to load read only at will with the ket he posted. Also I have gotten SDHC to mount! However little problem if you copy anything it kernel panics ;-) I will post later and sync code with fgodfrey.
Reply With Quote
  (#39) Old
Senior Member
 
Posts: 218
Join Date: Oct 2008
Default Re: SD Card slot - Brainstorming a solution - 11-12-2008, 10:25 PM

eddiem5 can you try this kext? It is basically the same but with debugging turned way up. This will also give me some register dumps to look at ;-) Note that once we figure this out we will put it on the EFI partition but for now just use kexthelper to load it to normal place. Then do a kextunload and kextload -v on it to make sure it is running


It will look something like this in /var/log/system.log (make sure you are root to look at it or sudo) when it loads

Nov Â*7 21:12:27 b-as-macbookair11 kernel[0]: SDHCI: Size of Mem Region 256
Nov Â*7 21:12:27 b-as-macbookair11 kernel[0]: SDHCI: Card is not present
Nov Â*7 21:12:27 b-as-macbookair11 kernel[0]: SDHCI: reportRemovability
Nov Â*7 21:12:27 b-as-macbookair11 kernel[0]: SDHCI: reportPollRequirements
Nov Â*7 21:12:27 b-as-macbookair11 kernel[0]: SDHCI: reportEjectability
Nov Â*7 21:12:27 b-as-macbookair11 kernel[0]: SDHCI: reportLockability
Nov Â*7 21:12:27 b-as-macbookair11 kernel[0]: SDHCI: reportMaxReadTransfer
Nov Â*7 21:12:27 b-as-macbookair11 kernel[0]: SDHCI: reportMaxWriteTransfer
Nov Â*7 21:12:31 b-as-macbookair11 login[219]: USER_PROCESS: 219 ttys002
Nov Â*7 21:12:37 b-as-macbookair11 sudo[229]: Â*b : TTY=ttys002 ; PWD=/Users/b ; USER=root ; COMMAND=/bin/bash
Nov Â*7 21:13:11 b-as-macbookair11 kernel[0]: 0xE6240520
Nov Â*7 21:13:11 b-as-macbookair11 kernel[0]: Command: 2313
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: ommand: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x900
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x900
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x900
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x900
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x900
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x900
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x900
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:13 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: esponse = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x900
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x900
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI Int Status 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: SDHCI: Â*state1 = 0x1f70000 response = 0x0
Nov Â*7 21:13:24 b-as-macbookair11 kernel[0]: Command: 4410SDHCI: Â*state2 = 0x1f70202 response = 0x900
Nov Â*7 21:13:29 b-as-macbookair11 kernel[0]: SDHCI: doEjectMedia
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: BaseClock = 50MHz
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: SD Clock = 390KHz
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: powerSD: Â*0x14832b2
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: Command: 0Command: 2074SDHCI: Register Dump ************************************************** ****
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: SDMASysAddr: Â*Â*Â*Â*Â*Â*Â*Â*Â*0x00000000 PresentState: Â*Â*Â*Â*Â*Â*Â*Â*0x01FF0000
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: BlockSize: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x0000 BlockCount: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x0000
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: TransferMode: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x0000 Command: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x081A
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: HostControl: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x00 PowerControl: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x0F
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: BlockGapControl: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x00 WakeupControl: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x00
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: ClockControl: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x4007 TimeoutControl: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x00
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: SoftwareReset: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x00 NormalIntStatus: Â*Â*Â*Â*Â*Â*Â*Â*Â*0x0000
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: ErrorIntStatus: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x0000 NormalIntStatusEn: Â*Â*Â*Â*Â*Â*Â*0x0000
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: ErrorIntStatusEn: Â*Â*Â*Â*Â*Â*Â*Â*0x0000 NormalIntSignalEn: Â*Â*Â*Â*Â*Â*Â*0x0000
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: ErrorIntSignalEn: Â*Â*Â*Â*Â*Â*Â*Â*0x0000 CMD12ErrorStatus: Â*Â*Â*Â*Â*Â*Â*Â*0x0000
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: Capabilities[1]: Â*Â*Â*Â*Â*0x00000000 Capabilities[0]: Â*Â*Â*Â*Â*0x014832B2
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: MaxCurrentCap[1]: Â*Â*Â*Â*0x00000000 MaxCurrentCap[0]: Â*Â*Â*Â*0x00000000
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: ForceEventCMD12ErrStatus: 0x0000 ForceEventErrorIntStatus: 0x0000
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: AMDAErrorStatus: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x00 Argument Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x000001AA
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: ADMASystemAddr[1]: Â*Â*Â*0x00000000 ADMASystemAddr[0]: Â*Â*Â*0x00000000
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: SlotIntStatus: Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*0x0000 HostControllerVer: Â*Â*Â*Â*Â*Â*Â*0xAC01
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: Response[1]: Â*Â*Â*Â*Â*Â*Â*Â*Â*0x00000000 Response[0]: Â*Â*Â*Â*Â*Â*Â*Â*Â*0x000001AA
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: Response[3]: Â*Â*Â*Â*Â*Â*Â*Â*Â*0x00000000 Response[2]: Â*Â*Â*Â*Â*Â*Â*Â*Â*0x00000000
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: SDHCI: End of Register Dump********************************************** **

One more favor for anyone that tries this kext to get me some info. If you put in a SDHC I expect you will get in a loop with this kext on a couple registers. Can you paste me or send me your output? It should be something like

Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498Command: 14106Command: 10498
Nov Â*7 21:13:45 b-as-macbookair11 kernel[0]: Command: 14106Command: 10498
Nov Â*7 21:13:46: --- last message repeated 4 times ---

thanks
Attached Files
File Type: zip IOSDHCIBlockDevice.kext.zip (19.5 KB, 39 views)
Reply With Quote
  (#40) Old
Guru
 
Posts: 1,744
Join Date: Sep 2008
Location: Olalla, WA
Send a message via AIM to UnaClocker Send a message via Yahoo to UnaClocker
Default Re: SD Card slot - Brainstorming a solution - 11-13-2008, 12:16 AM

I did what you asked, Type11. Here is my log file. FYI.. I loaded my 1gb SD card first. Even copied a 5.5meg file from it to the SSD hard drive. I got an error when I first inserted it, but tried again and it worked. I had a little trouble getting it to click the first time, that's probably why I got an error. Anyways.. After the 1gb, I tried a 2gb card that I KNOW to be an SDHC card. I tried several times, but got "unreadable" errors each time. Should be a good log for ya.. I did a "sudo tail -f system.log > debugging.log" just before loading the kext, so you should have all of the applicable messages. I love that we are working as a team on this. I just wish I wasn't such a brick when it comes to coding..
The debugging log is here.


Tired of wondering if your Mini9 is doing ANYTHING? - Add a HDD Activity LED
Reply With Quote
Reply

« Trimmer Program? | iMovie work on mini 9? What apps are you using? »
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Copyright © 2008-2011 MyDellMini.com.