Running update_kernel.sh from maintainer-tools no longer update the kernel hash

When I run update_kernel.sh, the patches are refreshed but neither the new version of the kernel nor the hash for the new kernel is updated.

Is this due to the KERNEL_VERSION_FILE moving in the tree?

Old location: include/kernel-6.6
New location: target/linux/generic/kernel-6.6

./update_kernel.sh -v -u 6.6 6.6.91

Its due to that yes as script is still looking only for include/kernel-

1 Like

Yeah, that was it:

-               KERNEL_VERSION_FILE=include/kernel-"${KERNEL}"
+               KERNEL_VERSION_FILE=target/linux/generic/kernel-"${KERNEL}"

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.