aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWolfgang Müller2025-03-08 12:17:23 +0100
committerWolfgang Müller2025-03-08 12:17:23 +0100
commit409b0b97313a8930db9874a96fa95354386f4a02 (patch)
treef425203cf67fd2ac84152f0f5dd3631646db6116
parent09569daaf9ab5d367bc7b873d7233a415bee965a (diff)
downloadkern-master.tar.gz (sig)
Install modules before installing kernelHEAD0.6.1master
Certain kernel installation steps (like generating the initramfs) need access to the just-installed modules, so make sure we install those first.
-rwxr-xr-xkern2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern b/kern
index f24b573..59a0db4 100755
--- a/kern
+++ b/kern
@@ -100,7 +100,7 @@ build_kernel() {
install_kernel() {
need_kernel_source
mount_boot_on_demand
- sudo make install modules_install
+ sudo make modules_install install
}
post_install_kernel() {