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

update dependencies in README #11

Merged
merged 1 commit into from
Jun 27, 2024
Merged
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
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ An experimental bootloader for ChomeOS's depthcharge.
> Submarine is currently beta software. Please exercise care with your system and report any issues you encounter.

## 📕 Explainer

Submarine provides a minimal Linux environmemt that lives in a small partition (16mb) on the disk. We use this environment to bootstrap a full Linux system (or a different system if you're brave.)

[Additional documention can be found on Fyra Developer (under construction!)
Expand All @@ -27,6 +28,7 @@ Please make sure you have these dependencies first before building.
```bash
make
gcc
ccache
flex
bison
elfutils-devel
Expand All @@ -35,13 +37,23 @@ vboot-utils
golang
xz
bc
tar
openssl-devel
python3-pip
uboot-tools
```

Additionally, you'll need to install u-root. To install the latest version:
Additionally, you'll need to install `u-root` and `depthcharge-tools`. To install the latest version:

```bash
go install github.com/u-root/u-root@latest
pip3 install depthcharge-tools
```

Lastly, you may need to install a cross-compile gcc. For example:

```bash
gcc-aarch64-linux-gnu
```

## 🏗️ Building
Expand Down
Loading