Subversion Repositories Kolibri OS

Rev

Rev 9390 | Rev 9411 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9367 Boppan 1
import os
2
import sys
9368 Boppan 3
import shlex
9367 Boppan 4
import shutil
5
import urllib.request
6
import subprocess
7
 
9374 Boppan 8
path_to_tools_workspace = os.path.dirname(os.path.abspath(__file__))
9
path_to_tools = os.path.dirname(path_to_tools_workspace)
9370 Boppan 10
sys.path.append(path_to_tools)
9367 Boppan 11
 
9374 Boppan 12
from workspace.build import build
13
 
9390 Boppan 14
from lib.builds import builds_get, builds_get_contents
9370 Boppan 15
from lib.makeflop import Floppy
16
from lib.platform import is_win32, path
17
from lib.logging import log
9383 Boppan 18
from lib.constants import tools_cache_kolibri_img
9367 Boppan 19
 
20
# TODO: Move into _tools/lib
21
def run_qemu(start_dir = "workspace"):
22
    qemu_command = f"qemu-system-i386"
23
    flags = ""
24
    flags += "-L . " # IDK why it does not work without this
25
    flags += "-m 128 "
26
    flags += f"-drive format=raw,file={start_dir}/kolibri.img,index=0,if=floppy -boot a "
27
    flags += "-vga vmware "
28
    flags += "-net nic,model=rtl8139 -net user "
29
    flags += "-soundhw ac97 "
30
    if is_win32():
31
        qemu_full_path = shutil.which(qemu_command)
9381 Boppan 32
        qemu_directory = os.path.dirname(qemu_full_path)
9367 Boppan 33
        flags += f"-L {qemu_directory} "
34
    s = f"{qemu_command} {flags}"
35
    qemu_stdout = open(f"{start_dir}/qemu_stdout.log", "w")
36
    qemu_stderr = open(f"{start_dir}/qemu_stderr.log", "w")
37
    if is_win32():
38
        return subprocess.Popen(s, bufsize = 0, stdout = qemu_stdout, stderr = qemu_stderr, stdin = subprocess.DEVNULL, shell = True, start_new_session = True)
39
    else:
40
        a = shlex.split(s)
41
        return subprocess.Popen(a, bufsize = 0, stdout = qemu_stdout, stderr = qemu_stderr, stdin = subprocess.DEVNULL, start_new_session = True)
42
 
43
if __name__ == "__main__":
9377 Boppan 44
    program_name = build()
9367 Boppan 45
 
46
    os.makedirs("workspace", exist_ok = True)
47
 
9373 Boppan 48
    # Create a copy of IMG
9390 Boppan 49
    kolibri_img = builds_get("eng/data/data/kolibri.img", "workspace/kolibri.img")
9373 Boppan 50
 
9367 Boppan 51
    # Open the IMG
9390 Boppan 52
    with open(kolibri_img, "rb") as img:
9367 Boppan 53
        img_data = img.read()
54
    img = Floppy(img_data)
55
 
56
    # Remove unuseful folders
57
    img.delete_path("GAMES")
58
    img.delete_path("DEMOS")
59
    img.delete_path("3D")
60
 
9391 Boppan 61
    # Insert faster kernel if no --compressed-kernel flag passed
62
    if "--compressed-kernel" not in sys.argv:
9389 Boppan 63
        new_kernel = builds_get_contents("eng/data/kernel/trunk/kernel.mnt.pretest")
64
        img.add_file_path("KERNEL.MNT", new_kernel)
65
 
9377 Boppan 66
    log("Moving program into kolibri image... ", end = "")
67
    with open(program_name, "rb") as file:
68
        file_data = file.read()
69
    if not img.add_file_path(program_name.upper(), file_data):
70
        print(f"Coudn't move {program_name} into IMG")
9367 Boppan 71
    log("Done")
72
 
9377 Boppan 73
    log("Adding program to autorun.dat... ", end = "")
74
    lines_to_add = bytes(f"\r\n/SYS/{program_name.upper()}\t\t""\t0\t# Your program", "ascii")
9373 Boppan 75
    autorun_dat = img.extract_file_path("SETTINGS\AUTORUN.DAT")
76
    place_for_new_lines = autorun_dat.index(b"\r\n/SYS/@TASKBAR")# b"\r\n### Hello, ASM World! ###")
77
    autorun_dat = autorun_dat[:place_for_new_lines] + lines_to_add + autorun_dat[place_for_new_lines:]
78
    img.delete_path("SETTINGS\AUTORUN.DAT")
79
    img.add_file_path("SETTINGS\AUTORUN.DAT", autorun_dat)
80
    log("Done")
81
 
9390 Boppan 82
    img.save(kolibri_img)
9373 Boppan 83
 
9367 Boppan 84
    run_qemu()