Skip to content

Commit b450cbc

Browse files
authored
Merge pull request #521 from FrameworkComputer/update-readme
Update README with tools and hx30 instructions
2 parents b1c945c + 2823869 commit b450cbc

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,30 @@ The Framework Laptop EC code can be built easily outside the Chromium developmen
1616

1717
On Ubuntu you can install the development tools easily.
1818

19-
```
20-
sudo apt install gcc-arm-none-eabi libftdi1-dev
19+
```sh
20+
sudo apt install gcc-arm-none-eabi libftdi1-dev build-essential pkg-config
2121
```
2222

23-
## Framework Laptop EC for Intel 11th Gen Core Processors
23+
## Framework Laptop EC
2424

25-
Building the project
26-
```
25+
The different Framework Laptops are each implemented as their own board:
26+
27+
| Laptop Generation | Board Name |
28+
| --- | --- |
29+
| Intel 11th Gen Core Processors | `hx20` |
30+
| Intel 12th Gen Core Processors | `hx30` |
31+
32+
Building the project - run the command for the processor you have:
33+
34+
```sh
35+
# hx20 (11th Gen)
2736
make BOARD=hx20 CROSS_COMPILE=arm-none-eabi-
37+
38+
# hx30 (12th Gen)
39+
make BOARD=hx30 CROSS_COMPILE=arm-none-eabi-
2840
```
2941

30-
The output artifact is ```build/hx20/ec.bin``` which can be flashed to the EC SPI flash ROM.
42+
The output artifact is `build/hx20/ec.bin` which can be flashed to the EC SPI flash ROM.
3143

3244
### EC Flash configuration
3345

0 commit comments

Comments
 (0)