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

Add a way to install development tools on fedora and arch linux to readme. #3

Merged
merged 1 commit into from
May 26, 2023
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
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,26 @@ The Embedded Controller on your Framework Laptop handles low level functions, in

The Framework Laptop EC code can be built easily outside the Chromium development environment as a standalone project with a minimal set of tools.

On Ubuntu you can install the development tools easily.
You can install the development tools easily.

On Ubuntu

```
sudo apt install gcc-arm-none-eabi libftdi1-dev
```

On Fedora

```
sudo dnf install arm-none-eabi-gcc-cs libftdi-devel
```

On Arch Linux

```
sudo pacman -S arm-none-eabi-gcc libftdi
```

## Framework Laptop EC for Intel 11th Gen Core Processors

Building the project
Expand Down