We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47d5f80 commit 629f7b7Copy full SHA for 629f7b7
1 file changed
kramel-build.sh
@@ -291,6 +291,13 @@ build_kernel() {
291
msg "|| Started Compilation ||"
292
make -j"$PROCS" O=out \
293
"${MAKE[@]}" 2>&1 | tee error.log
294
+ make -j"$PROCS" O=out \
295
+ "${MAKE[@]}" modules_prepare
296
297
+ "${MAKE[@]}" modules INSTALL_MOD_PATH="$KERNEL_DIR"/out/modules
298
299
+ "${MAKE[@]}" modules_install INSTALL_MOD_PATH="$KERNEL_DIR"/out/modules
300
+ find "$KERNEL_DIR"/out/modules -type f -iname '*.ko' -exec cp {} AnyKernel3/modules/system/lib/modules/ \;
301
302
BUILD_END=$(date +"%s")
303
DIFF=$((BUILD_END - BUILD_START))
0 commit comments