[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 06/12] website: docs: install: flashrom: document I/O port acc
From: |
Denis 'GNUtoo' Carikli |
Subject: |
[PATCH v1 06/12] website: docs: install: flashrom: document I/O port access. |
Date: |
Tue, 11 Jun 2024 20:52:15 +0200 |
From: Leah Rowe <leah@libreboot.org>
Signed-off-by: Leah Rowe <leah@libreboot.org>
Signed-off-by: Leah Rowe <info@minifree.org>
GNUtoo: fixed section underline, rebased, commit message, split patch.
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
---
website/pages/docs/install/install.md | 32 +++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/website/pages/docs/install/install.md
b/website/pages/docs/install/install.md
index 3e4d1ca..aeba7b1 100644
--- a/website/pages/docs/install/install.md
+++ b/website/pages/docs/install/install.md
@@ -35,6 +35,38 @@ is `kernel.securelevel=-1`; see [NetBSD securelevel
manual](https://wiki.netbsd.org/tutorials/kernel_secure_levels/)
and [OpenBSD securelevel manual](https://man.openbsd.org/securelevel).
+ERROR: Could not get I/O privileges
+-----------------------------------
+
+Error message: `ERROR: Could not get I/O privileges (Function not implemented)`
+
+If you get this while running `flashrom -p internal -w filename.rom` (or any
+internal flash operation), note: flashrom heavily uses ioperm/iopl functions
+to operate the internal flasher, at least on x86 machines.
+
+See: <https://lwn.net/Articles/804143/>
+
+Yeah, just enable `CONFIG_X86_IOPL_IOPERM` in your Linux kernel. This is
+a *build-time* option, so you must re-compile your kernel, or find a build that
+has this option enabled (IOPL emulation). Many default kernel configurations
+now disable this option.
+
+Here's a handy-dandy guide for building a kernel from source:
+<https://www.cyberciti.biz/tips/compiling-linux-kernel-26.html> - NOTE: the
+GNU Boot project recommends use of linux-libre, not linux, but this guide
should
+work with linux-libre releases. Here is GNU Linux-libre, the deblobbed linux
+kernel:
+<https://www.fsfla.org/ikiwiki/selibre/linux-libre/index.en.html>
+
+**BSD users:** On OpenBSD and NetBSD if you get similar errors, note that it
+should work here, but you need to boot with `kern.securelevel=-1`.
+See: [NetBSD securelevel
manual](https://wiki.netbsd.org/tutorials/kernel_secure_levels/)
+and [OpenBSD securelevel manpage](https://man.openbsd.org/securelevel).
+
+Otherwise, if you get such errors, it may just be that you're not root. You
+must run flashrom as root, at least to use the internal flasher (using external
+USB flashing dongles doesn't normally require root).
+
About ROM image file names
==========================
--
2.45.1
- [PATCH v1 00/12] More website content patches., Denis 'GNUtoo' Carikli, 2024/06/11
- [PATCH v1 02/12] website: status: update Spanish translation., Denis 'GNUtoo' Carikli, 2024/06/11
- [PATCH v1 03/12] website: status: clarify what kind of T60 are supported., Denis 'GNUtoo' Carikli, 2024/06/11
- [PATCH v1 01/12] website: pages: unify Download, Install and Buy preinstalled., Denis 'GNUtoo' Carikli, 2024/06/11
- [PATCH v1 06/12] website: docs: install: flashrom: document I/O port access.,
Denis 'GNUtoo' Carikli <=
- [PATCH v1 05/12] website: docs: install: flashrom: add support for BSD., Denis 'GNUtoo' Carikli, 2024/06/11
- [PATCH v1 04/12] website: status: Fix ThinkPad spelling., Denis 'GNUtoo' Carikli, 2024/06/11
- [PATCH v1 08/12] website: main page: clarify that GNU Boot is a distribution., Denis 'GNUtoo' Carikli, 2024/06/11
- [PATCH v1 07/12] Remove old logos, and make the website point to the new ones., Denis 'GNUtoo' Carikli, 2024/06/11
- [PATCH v1 09/12] website: status: mention upgrade instructions., Denis 'GNUtoo' Carikli, 2024/06/11