Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5117 → Rev 5118

/data/Tupfile.lua
521,7 → 521,8
end
 
-- create empty 1.44M file
make_img_command = "dd if=/dev/zero of=kolibri.img count=2880 bs=512 2>&1"
make_img_command = '^ MKIMG kolibri.img^ ' -- for tup: don't write full command to logs
make_img_command = make_img_command .. "dd if=/dev/zero of=kolibri.img count=2880 bs=512 2>&1"
-- format it as a standard 1.44M floppy
make_img_command = make_img_command .. " && mformat -f 1440 -i kolibri.img ::"
-- copy bootloader
577,6 → 578,7
else volume_id = "KolibriOS"
end
tup.definerule{inputs = input_deps, command =
'^ MKISOFS kolibri.iso^ ' .. -- for tup: don't write full command to logs
'mkisofs -U -J -pad -b kolibri.img -c boot.catalog -hide-joliet boot.catalog -graft-points ' ..
'-A "KolibriOS AutoBuilder" -p "CleverMouse" -publisher "KolibriOS Team" -V "' .. volume_id .. '" -sysid "KOLIBRI" ' ..
'-iso-level 3 -o kolibri.iso kolibri.img' .. iso_files_list .. ' 2>&1',