Skip to content

Commit 659b41d

Browse files
committed
framework/desktop: Add minimum kernel version
Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 9157552 commit 659b41d

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

framework/desktop/amd-ai-max-300-series/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# [Framework Desktop](https://frame.work/desktop)
22

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+
39
## Updating Firmware
410

511
First put enable `fwupd`
Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
{ config, lib, ... }:
1+
{
2+
config,
3+
lib,
4+
pkgs,
5+
...
6+
}:
27
{
38
imports = [
49
../../../common/cpu/amd
@@ -7,4 +12,9 @@
712
../../../common/pc/ssd
813
../../framework-tool.nix
914
];
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+
);
1020
}

0 commit comments

Comments
 (0)