From e87998c224231855d44dd82a30100bc8a4adb632 Mon Sep 17 00:00:00 2001 From: fennecj Date: Tue, 10 Aug 2021 18:22:33 +0800 Subject: [PATCH] Fix incorrect path There should be a space between uname and -r --- lkmpg.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lkmpg.tex b/lkmpg.tex index 8924bc5..6083852 100644 --- a/lkmpg.tex +++ b/lkmpg.tex @@ -537,7 +537,7 @@ In this case, you need to restore the value of symbol \textbf{EXTRAVERSION} to \ We suggest to keep a backup copy of the makefile used to compile your kernel available in \verb|/lib/modules/5.14.0-rc2/build|. A simple command as following should suffice. \begin{codebash} -cp /lib/modules/`uname-r`/build/Makefile linux-`uname -r` +cp /lib/modules/`uname -r`/build/Makefile linux-`uname -r` \end{codebash} Here \sh|linux-`uname -r`| is the Linux kernel source you are attempting to build.