bytemark bench: turn off blinking cursor

This commit is contained in:
Fabian 2022-10-17 23:59:37 -05:00
parent 7f5fb11faf
commit f13c238109

View file

@ -42,8 +42,8 @@ emulator.bus.register("emulator-started", function()
}
setTimeout(() => {
const set = exclude_tests.map(name => `echo ${name}=0 >> CMD && `).join("");
emulator.serial0_send(`cd nbench && touch CMD && ${set} ./nbench -cCMD\n`);
const set = exclude_tests.map(name => `echo ${name}=0 >> CMD`).join(" && ");
emulator.serial0_send(`echo 0 > /sys/class/graphics/fbcon/cursor_blink && cd nbench && touch CMD && ${set} && ./nbench -cCMD\n`);
}, 1000);
});