File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
framework/desktop/amd-ai-max-300-series Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 1
1
# [ Framework Desktop] ( https://frame.work/desktop )
2
2
3
+ ## Kernel version
4
+
5
+ The recommended version is 6.15 or newer, it has good GPU and also EC firmware support (for sensors and ARGB).
6
+ The lowest recommended version is 6.14. It has good GPU support already.
7
+ The absolute lowest that runs okay on headless systems is 6.11, but the GPU is not fully supported yet.
8
+
3
9
## Updating Firmware
4
10
5
11
First put enable ` fwupd `
Original file line number Diff line number Diff line change 1
- { config , lib , ... } :
1
+ {
2
+ config ,
3
+ lib ,
4
+ pkgs ,
5
+ ...
6
+ } :
2
7
{
3
8
imports = [
4
9
../../../common/cpu/amd
7
12
../../../common/pc/ssd
8
13
../../framework-tool.nix
9
14
] ;
15
+
16
+ # 6.14 and above have good GPU support
17
+ boot . kernelPackages = lib . mkIf ( lib . versionOlder pkgs . linux . version "6.14" ) (
18
+ lib . mkDefault pkgs . linuxPackages_latest
19
+ ) ;
10
20
}
You can’t perform that action at this time.
0 commit comments