
set SOURCE=%1

IF [%3]==[] (
set DEST=%2
) ELSE (
set DEST=%2\%3
IF NOT EXIST "%DEST%" MD "%DEST%\" 
)

xcopy "%SOURCE%\*.*" "%DEST%\" /e /k
move "%DEST%\system\initrd.img"    "%DEST%\"
move "%DEST%\system\vmlinuz"       "%DEST%\"
move "%DEST%\system\chain.c32"     "%DEST%\"
move "%DEST%\usb\hpusbkey\vesamenu.c32"  "%DEST%\"
move "%DEST%\system\sample.msg"    "%DEST%\"
move "%DEST%\usb\syslinux.cfg"     "%DEST%\"
move "%DEST%\usb\usbmenu.cfg"      "%DEST%\"
attrib -r "%DEST%\efi\boot\grub.cfg"
copy /Y "%DEST%\efi\boot\grub_usb.cfg"   "%DEST%\efi\boot\grub.cfg"

IF EXIST "%SOURCE%\usb\syslinux.exe" "%SOURCE%\usb\syslinux.exe" -fma %2
