Set up for testing lua on uefi
[rrq/tiniest.git] / muffin.lua
1 local sl = require "syslinux"
2 local vesa = require "vesa"
3
4 vesa.setmode()
5 vesa.load_background "sample2.jpg"
6
7 for c in string.gmatch ("Hello World! - VESA mode", ".") do
8     io.write (c)
9     sl.msleep(200)
10 end
11
12 -- vesa.load_background "PXE-RRZE_small.jpg"
13 sl.sleep(3)
14
15 -- Return to vesamenu
16 sl.run_command("vesamenu.")