diff --git a/data/Tupfile.lua b/data/Tupfile.lua index 396b98e04..0c89107ed 100644 --- a/data/Tupfile.lua +++ b/data/Tupfile.lua @@ -139,7 +139,7 @@ a named subitem "group=path/" and the file should be put in &1', + 'mkisofs -U -J -pad -b cdboot.bin -no-emul-boot -c boot.catalog' + .. ' -hide-joliet boot.catalog -hide-joliet cdboot.bin' + .. ' -hide-joliet kernel.mnt -graft-points' + .. ' -A "KolibriOS AutoBuilder" -p "CleverMouse"' + .. ' -publisher "KolibriOS Team" -V "' .. volume_id .. '" -sysid "KOLIBRI"' + .. ' -iso-level 3 -o %o ' .. iso_files_list .. ' 2>&1', outputs = {"kolibri.iso"}} -- generate command and dependencies for distribution kit cp = 'cp "%f" "%o"' -tup.definerule{inputs = {VAR_DATA .. "/kolibri.img"}, command = cp, outputs = {"distribution_kit/kolibri.img"}} for i,v in ipairs(distr_extra_files) do cmd = cp:gsub("%%f", string.gsub(v[2], "%%", "%%%%")) -- input can be a group, we can't rely on tup's expansion of %f in this case if string.sub(v[1], -1) == "/" @@ -1019,9 +1029,15 @@ for i,v in ipairs(raw_files) do table.insert(input_deps, v.group or local_file) end -tup.definerule{inputs = {}, command = "echo '" .. make_raw_command1 .. "' > %o", outputs = {'make_raw_command1_file'}} -tup.definerule{inputs = {}, command = "echo '" .. make_raw_command2 .. "' > %o", outputs = {'make_raw_command2_file'}} -tup.definerule{inputs = {}, command = "echo '" .. make_raw_command3 .. "' > %o", outputs = {'make_raw_command3_file'}} +tup.definerule{inputs = {}, command = "^ Prepare command file #1 for the raw image^" + .. "echo '" .. make_raw_command1 .. "' > %o", + outputs = {'make_raw_command1_file'}} +tup.definerule{inputs = {}, command = "^ Prepare command file #2 for the raw image^" + .. "echo '" .. make_raw_command2 .. "' > %o", + outputs = {'make_raw_command2_file'}} +tup.definerule{inputs = {}, command = "^ Prepare command file #3 for the raw image^" + .. "echo '" .. make_raw_command3 .. "' > %o", + outputs = {'make_raw_command3_file'}} table.insert(input_deps, 'make_raw_command1_file') table.insert(input_deps, 'make_raw_command2_file') diff --git a/data/common/distr_data/autorun.inf b/data/common/distr_data/autorun.inf index fe17e133d..69ec4bb01 100644 --- a/data/common/distr_data/autorun.inf +++ b/data/common/distr_data/autorun.inf @@ -1,2 +1,2 @@ [AutoRun] -icon=KolibriOS_icon.ico +icon=kolibrios.ico diff --git a/data/common/distr_data/KolibriOS_icon.ico b/data/common/distr_data/kolibrios.ico similarity index 100% rename from data/common/distr_data/KolibriOS_icon.ico rename to data/common/distr_data/kolibrios.ico