QUOTE (ktp @ Jul 29 2009, 06:16 PM)

It was enough for me, at least for today :-).
Yesterday was already tomorrow.

Anyway I re-thought a bit about the matter:
QUOTE (jaclaz @ Jul 29 2009, 04:32 PM)

Of course, it depends on the actual checks the "stupid" MP3 thingy does, if for example it wants the number of "hidden sectors" to be equal to 0, we need to manipulate the data about "reserved sectors" or invent something else.

On a "normal" "superfloppy":
The number of hidden sectors is 0 (zero) as the bootsector is first sector of the disk.
The number of reserved sectors is determined by size of volume and app that formatted it
i.e. in Tiny Hexer "Structure Viewer" (example):
CODE
...
Reserved Sectors: '0x0020' (32 dec)
...
Hidden sectors: '0x00000000' (0 dec)
...
On a partitioned drive with 63 hidden sectors the values in the "right" bootsector (the one on sector 63 LBA) are, again in Tiny Hexer:
CODE
...
Reserved Sectors: '0x0024' (36 dec)
...
Hidden sectors: '0x0000003F' (63 dec)
...
We copied this latter values on the "fake" bootsector DATA on first sector of disk, and they are actually "wrong", there.
You should try incrementing the "Reserved Sectors" and decrement the "Hidden Sectors" by the offset we created, i.e. 63 or 0x3F.
Thus you will have:
CODE
...
Reserved Sectors: '0x0063' (99 dec)
...
Hidden sectors: '0x00000000' (0 dec)
...
When you will feel tomorrow has come, that would be the try to make.

@dencorso
Thanks for the app.
I cross-posted it on original thread:
http://www.911cd.net/forums//index.php?sho...1702&st=241
jaclaz