The parameters you gave mkisofs simply do not sound "right".
Particularly on Linux sytems you should be VERY aware on CaSe SeNsItIvEnEsS.
A "normal" XP INSTALL (NOT recovery, which is what you asked about) disk has the /I386 folder and it is populated by 8+3 CAPITAL ONLY files.
A SP integrated INSTALL disk (or a Recovery disk, or anyway an OEM disk) may have the need for a "wider" -iso-level and/or -multidot.
The typical mkisofs command used (on Windows) to take care of most of the issues (but the name of files must be compliant on source) is more complex, in your case it could be:
mkisofs -v -iso-level 4 -l -N -D -d -J -joliet-long -r -volid "Advent6415-WinXP-patch1" -A MKISOFS -sysid "Win32" -b cdboot.bin -no-emul-boot -boot-load-size 4 -allow-multidot -hide cdboot -hide boot.catalog -o Advent6415-WinXP-patch1.iso
See more here:
http://reboot.pro/9696/
AND here:
http://ubuntuforums....p/t-338906.html
"Microsoft Corporation.img" could be another problem (the space in it and the mixed mode CAPITAL and small letters).
Rename it to "cdboot.bin".
All in all your command line (still in Windows) could be:
mkisofs -v -iso-level 4 -l -D -d -J -joliet-long -r -volid "Advent6415-WinXP-patch1" -A MKISOFS -sysid "Win32" -b cdboot.bin -no-emul-boot -boot-load-size 4 -allow-multidot -hide cdboot -hide boot.catalog -o Advent6415-WinXP-patch1.iso
You will have to verify if the particular MKISOFS you are using supports the used options.
The page you quoted says:
Quote
For example:
mkisofs -relaxed-filenames -d -D -J
-b bcdwboot.bin -no-emul-boot -boot-load-size 4 -o mybootcd.iso ./
ATTENTION! If you are adding the original Microsoft Windows XP/2000/NT bootsector (NT5BOOT.BIN or NT4BOOT.BIN) you ABSOLUTELY have to add the following option, too: -N.
Otherwise you will get the error 'CDBOOT: Couldn't find NTLDR' on startup.
For example:
mkisofs -relaxed-filenames -d -D -N -J
-b nt5boot.bin -no-emul-boot -boot-load-size 4 -o mybootcd.iso ./
You seemingly did not use the -N, nor the -relaxed-filenames nor the -d -D !
If you check *any* tutorial about re-creating a Windows XP INSTALL disk after having slipstramed a service pack with mkisofs, you will see how the mentioned switches are always present:
http://www.g-loaded....d-with-mkisofs/
http://sysblogd.word...nstallation-cd/
http://www.montanali...mWithLinux.html
jaclaz