in der setup.py des Winxppro Pakets gibt es folgenden Block:
Code: Alles auswählen
# Copy Windows installation files
i386Dir = productProperties.get('i386_dir')
if not i386Dir: i386Dir = 'i386'
copy(source + '/' + i386Dir + '/*', target + '/$win_nt$.~ls/i386/')
copy(target + '/$win_nt$.~ls/i386/*', target + '/$win_nt$.~bt/')
copy(target + '/$win_nt$.~ls/i386/ntldr', target)
copy(target + '/$win_nt$.~ls/i386/ntdetect.com', target)
if os.path.exists(target + '/$win_nt$.~ls/i386/bootfont.bin'):
copy(target + '/$win_nt$.~ls/i386/bootfont.bin', target)
copy(target + '/$win_nt$.~ls/i386/txtsetup.sif', target)
copy(target + '/$win_nt$.~ls/i386/setupldr.bin', target + '/$ldr$')