Skip to content

Commit

Permalink
[Build] Ensure the kernel make is run in the repo root
Browse files Browse the repository at this point in the history
  • Loading branch information
codyd51 committed Feb 7, 2024
1 parent 52d86b4 commit 09a7890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build_os_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def main():
run_and_check(["nasm", "-f", "bin", (_REPO_ROOT / "ap_bootstrap.s.x86_64.arch_specific").as_posix(), "-o", (_REPO_ROOT / ".compiled_ap_bootstrap").as_posix()])

# Build the C and assembly portions of the kernel, and link with the Rust libraries
run_and_check(["make"])
run_and_check(["make"], cwd=_REPO_ROOT)

working_on_kernel_only = False
if not working_on_kernel_only:
Expand Down

0 comments on commit 09a7890

Please sign in to comment.