From e9719d21a3bb4d3ee749376bbb4248b40163bf6d Mon Sep 17 00:00:00 2001 From: Ivan Baravy Date: Mon, 15 Jan 2024 03:58:48 +0000 Subject: [PATCH] Fix autobuild timestamp offset on the blue screen git-svn-id: svn://kolibrios.org@9966 a494cfbc-eb01-0410-851d-a64ba20cac60 --- data/Tupfile.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/Tupfile.lua b/data/Tupfile.lua index 6ddfcd6709..0625e39e27 100644 --- a/data/Tupfile.lua +++ b/data/Tupfile.lua @@ -879,7 +879,7 @@ for i,v in ipairs(img_files) do str = string.gsub(str, "%%", "%%%%") -- escape % as %% make_img_command = make_img_command .. " && cp " .. local_file .. " .kernel.mnt" make_img_command = make_img_command .. " && str=" .. str - make_img_command = make_img_command .. ' && echo -n $str | dd of=.kernel.mnt bs=1 seek=`expr 279 - length "$str"` conv=notrunc 2>/dev/null' + make_img_command = make_img_command .. ' && echo -n $str | dd of=.kernel.mnt bs=1 seek=`expr 274 - length "$str"` conv=notrunc 2>/dev/null' local_file = ".kernel.mnt" table.insert(output_deps, local_file) end