mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 01:07:14 +08:00
Users should keep their firmware (not just BIOS) up to date. Framework 13 Intel 11-13th Gen have some components that can't be updated with fwupd, so some BIOS versions are better to be installed through the EFI shell or Windows. Signed-off-by: Daniel Schaefer <dhs@frame.work>
27 lines
964 B
Markdown
27 lines
964 B
Markdown
# [Framework Laptop 13](https://frame.work/)
|
|
|
|
## Updating Firmware
|
|
|
|
Everything is updateable through fwupd, so it's enabled by default.
|
|
|
|
To get the latest firmware, run:
|
|
|
|
```sh
|
|
$ fwupdmgr refresh
|
|
$ fwupdmgr update
|
|
```
|
|
|
|
- [Latest Update](https://fwupd.org/lvfs/devices/work.frame.Laptop.Ryzen7040.BIOS.firmware)
|
|
|
|
## Suspend/wake workaround
|
|
|
|
As of firmware v03.03, a bug in the EC causes the system to wake if AC is connected _despite_ the lid being closed. A workaround has been [upstreamed](https://github.com/torvalds/linux/commit/a55bdad5dfd1efd4ed9ffe518897a21ca8e4e193) in Linux v6.7. For older kernels, the following works around this, with the trade-off that keyboard presses also no longer wake the system.
|
|
|
|
```nix
|
|
{
|
|
hardware.framework.amd-7040.preventWakeOnAC = true;
|
|
}
|
|
```
|
|
|
|
See [Framework AMD Ryzen 7040 Series lid wakeup behavior feedback](https://community.frame.work/t/tracking-framework-amd-ryzen-7040-series-lid-wakeup-behavior-feedback/39128/45).
|