Subversion Repositories Kolibri OS

Rev

Rev 9391 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9391 Rev 9411
Line 12... Line 12...
12
from workspace.build import build
12
from workspace.build import build
Line 13... Line 13...
13
 
13
 
14
from lib.builds import builds_get, builds_get_contents
14
from lib.builds import builds_get, builds_get_contents
15
from lib.makeflop import Floppy
15
from lib.makeflop import Floppy
16
from lib.platform import is_win32, path
16
from lib.platform import is_win32, path
17
from lib.logging import log
17
from lib.logging import log, require_tools
Line 18... Line 18...
18
from lib.constants import tools_cache_kolibri_img
18
from lib.constants import tools_cache_kolibri_img
19
 
19
 
-
 
20
# TODO: Move into _tools/lib
-
 
21
def run_qemu(start_dir = "workspace"):
20
# TODO: Move into _tools/lib
22
    require_tools(("qemu-system-i386",))
21
def run_qemu(start_dir = "workspace"):
23
 
22
    qemu_command = f"qemu-system-i386"
24
    qemu_command = f"qemu-system-i386"
23
    flags = ""
25
    flags = ""
24
    flags += "-L . " # IDK why it does not work without this
26
    flags += "-L . " # IDK why it does not work without this