Compare commits
4 Commits
fc2efa2474
...
d02f1a9efc
Author | SHA1 | Date | |
---|---|---|---|
d02f1a9efc | |||
edd7979b3f | |||
eb15f473c6 | |||
df426afbc8 |
@ -7,7 +7,7 @@ class Image < Builder
|
|||||||
def run(options)
|
def run(options)
|
||||||
unless @cache.up_to_date?(@target, nil, @sources, @env)
|
unless @cache.up_to_date?(@target, nil, @sources, @env)
|
||||||
print_run_message("Image <target>#{@target}<reset>", nil)
|
print_run_message("Image <target>#{@target}<reset>", nil)
|
||||||
system(*%W[dd if=/dev/zero of=#{@target} bs=1k count=1440])
|
File.binwrite(@target, "\0" * (1440 * 1024))
|
||||||
system(*%W[mformat -i #{@target} -f 1440 ::])
|
system(*%W[mformat -i #{@target} -f 1440 ::])
|
||||||
system(*%W[mmd -i #{@target} ::/EFI])
|
system(*%W[mmd -i #{@target} ::/EFI])
|
||||||
system(*%W[mmd -i #{@target} ::/EFI/BOOT])
|
system(*%W[mmd -i #{@target} ::/EFI/BOOT])
|
||||||
@ -25,11 +25,11 @@ uefi_env = env "uefi" do |env|
|
|||||||
env["CFLAGS"] += %w[-ffreestanding]
|
env["CFLAGS"] += %w[-ffreestanding]
|
||||||
env["LDFLAGS"] += %w[-nostdlib -Wl,-dll -shared -Wl,--subsystem,10 -e efi_main]
|
env["LDFLAGS"] += %w[-nostdlib -Wl,-dll -shared -Wl,--subsystem,10 -e efi_main]
|
||||||
env["LIBS"] += %w[gcc]
|
env["LIBS"] += %w[gcc]
|
||||||
env["sources"] = glob("*.c")
|
env["sources"] = glob("src/**/*.c")
|
||||||
env.Program("^/BOOTX64.EFI", "${sources}")
|
env.Program("^/BOOTX64.EFI", "${sources}")
|
||||||
env.Image("^/efi-loader.img", "^/BOOTX64.EFI")
|
env.Image("^/efi-loader.img", "^/BOOTX64.EFI")
|
||||||
end
|
end
|
||||||
|
|
||||||
task "run" do
|
task "run" do
|
||||||
sh %W[qemu-system-x86_64 -bios OVMF.fd -hda #{uefi_env.expand("^/efi-loader.img")}]
|
sh %W[qemu-system-x86_64 -bios OVMF.fd -drive file=#{uefi_env.expand("^/efi-loader.img")},format=raw]
|
||||||
end
|
end
|
||||||
|
@ -38,8 +38,19 @@ static void write_hex64(size_t n)
|
|||||||
write_string(s);
|
write_string(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void wait_key(void)
|
||||||
|
{
|
||||||
|
EFI_INPUT_KEY key;
|
||||||
|
write_string(L"Press any key...\r\n");
|
||||||
|
while (g_system_table->ConIn->ReadKeyStroke(g_system_table->ConIn, &key) == EFI_NOT_READY)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void check_gop_handle(EFI_HANDLE handle)
|
static void check_gop_handle(EFI_HANDLE handle)
|
||||||
{
|
{
|
||||||
|
write_string(L"Going to check GOP handle...\r\n");
|
||||||
|
wait_key();
|
||||||
EFI_HANDLE interface = NULL;
|
EFI_HANDLE interface = NULL;
|
||||||
EFI_STATUS status = g_system_table->BootServices->HandleProtocol(handle,
|
EFI_STATUS status = g_system_table->BootServices->HandleProtocol(handle,
|
||||||
&(EFI_GUID)EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID,
|
&(EFI_GUID)EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID,
|
||||||
@ -63,6 +74,32 @@ static void check_gop_handle(EFI_HANDLE handle)
|
|||||||
write_string(L"\r\n");
|
write_string(L"\r\n");
|
||||||
|
|
||||||
EFI_GRAPHICS_OUTPUT_PROTOCOL * gop = (EFI_GRAPHICS_OUTPUT_PROTOCOL *)interface;
|
EFI_GRAPHICS_OUTPUT_PROTOCOL * gop = (EFI_GRAPHICS_OUTPUT_PROTOCOL *)interface;
|
||||||
|
UINTN info_size;
|
||||||
|
EFI_GRAPHICS_OUTPUT_MODE_INFORMATION * info;
|
||||||
|
for (uint32_t mode_number = 0u;
|
||||||
|
(status = gop->QueryMode(gop, mode_number, &info_size, &info)) == EFI_SUCCESS;
|
||||||
|
mode_number++)
|
||||||
|
{
|
||||||
|
write_string(L"Mode ");
|
||||||
|
write_uint(mode_number);
|
||||||
|
write_string(L": ");
|
||||||
|
write_uint(info->HorizontalResolution);
|
||||||
|
write_string(L"x");
|
||||||
|
write_uint(info->VerticalResolution);
|
||||||
|
write_string(L" f=");
|
||||||
|
write_uint(info->PixelFormat);
|
||||||
|
write_string(L" s=");
|
||||||
|
write_uint(info->PixelsPerScanLine);
|
||||||
|
write_string(L"\r\n");
|
||||||
|
g_system_table->BootServices->FreePool(info);
|
||||||
|
if ((mode_number % 20) == 19)
|
||||||
|
{
|
||||||
|
wait_key();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
write_string(L"Error ");
|
||||||
|
write_uint(status);
|
||||||
|
write_string(L" from QueryMode\r\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void dump_memory_map(void)
|
static void dump_memory_map(void)
|
||||||
@ -114,7 +151,6 @@ EFI_STATUS
|
|||||||
efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE * system_table)
|
efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE * system_table)
|
||||||
{
|
{
|
||||||
EFI_STATUS status;
|
EFI_STATUS status;
|
||||||
EFI_INPUT_KEY key;
|
|
||||||
|
|
||||||
g_system_table = system_table;
|
g_system_table = system_table;
|
||||||
|
|
||||||
@ -151,10 +187,7 @@ efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE * system_table)
|
|||||||
check_gop_handle(buffer[i]);
|
check_gop_handle(buffer[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
write_string(L"Press any key...\r\n");
|
wait_key();
|
||||||
while ((status = system_table->ConIn->ReadKeyStroke(system_table->ConIn, &key)) == EFI_NOT_READY)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user