Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Secure boot to kernel #474

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ jobs:
- name: Create disk image
run: cargo make disk

- name: Create secure disk image (Linux-only)
run: cargo make disk-secure
if: steps.isUbuntu.outputs.result

- name: Test
run: cargo make test
if: steps.isUbuntu.outputs.result
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
target
**/*.rs.bk
Cargo.lock
isofiles/boot/sunrise-*
os.iso
DISK.img
.idea
Expand Down
86 changes: 86 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[workspace]
members = ["kernel", "bootstrap", "shell", "time", "libuser", "wall-clock", "sm", "vi", "ahci", "fs", "libutils", "libkern", "swipc-gen", "swipc-parser", "docs", "libtimezone", "disk-initializer", "loader", "keyboard", "std_hello_world", "coreutils"]
members = ["kernel", "bootstrap", "shell", "time", "libuser", "wall-clock",
"sm", "vi", "ahci", "fs", "libutils", "libkern", "swipc-gen",
"swipc-parser", "docs", "libtimezone", "disk-initializer", "loader",
"keyboard", "std_hello_world", "twili", "coreutils", "gen-secureboot-keys"]

[patch.crates-io.libc]
git = "https://github.com/sunriseos/libc.git"
Expand Down
Loading