File tree Expand file tree Collapse file tree 1 file changed +18
-6
lines changed
Expand file tree Collapse file tree 1 file changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -16,18 +16,30 @@ The Framework Laptop EC code can be built easily outside the Chromium developmen
1616
1717On 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)
2736make 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
You can’t perform that action at this time.
0 commit comments