Squash commits for public release

This commit is contained in:
2025-02-12 09:54:05 -05:00
commit 7118adc514
1108 changed files with 80873 additions and 0 deletions

20
build/boot/x86/BUILD.gn Normal file
View File

@@ -0,0 +1,20 @@
if (target_arch == "x86") {
action("bootx86") {
script = "make_boot_drive.py"
sources = [
"$root_build_dir/stage1.bin",
"$root_build_dir/stage2.bin",
]
outputs = [ "$root_build_dir/os-image.bin" ]
args = [
rebase_path("$root_build_dir/stage1.bin", root_build_dir),
rebase_path("$root_build_dir/stage2.bin", root_build_dir),
rebase_path("$root_build_dir/os-image.bin", root_build_dir),
]
deps = [
"stage1:stage1",
"stage2:stage2",
]
}
}