Squash commits for public release
This commit is contained in:
20
build/boot/x86/BUILD.gn
Normal file
20
build/boot/x86/BUILD.gn
Normal 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",
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user