If you try to update the firmware of your playstation portable through linux by putting EBOOT.PBP on the memorystick through USB, you will very likely see a CORRUPTED DATA message when trying to run it. The same message might show up in other cases too, and the problem is probably the same.
The reason is this: If you list the contents of a VFAT-drive, any file or directory name that is all in uppercase will display as lowercase. It is still stored as uppercase, though. Sony has decided that the PSP should be case sensitive, even though it is reading a case insensitive file system.
Therefore, even though you can't tell the difference later, make sure you create the update-folder with uppercase letters, and put the eboot-file in there in uppercase letters too.
Code: Select all
mkdir /media/disk/psp/game/UPDATE
cp EBOOT.PBP /media/disk/psp/game/update/So there...

