Merge pull request #7 from hellow554/v6.1
fix detection of kernel modules on 64-bit image
This commit is contained in:
commit
f25e76508f
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ function get_kernel_version() {
|
||||||
|
|
||||||
function check_kernel_headers() {
|
function check_kernel_headers() {
|
||||||
VER_RUN=$(get_kernel_version)
|
VER_RUN=$(get_kernel_version)
|
||||||
VER_HDR=$(dpkg -L raspberrypi-kernel-headers | egrep -m1 "/lib/modules/[^-]+/build" | awk -F'/' '{ print $4; }')
|
VER_HDR=$(dpkg -L raspberrypi-kernel-headers | egrep -m1 "/lib/modules/[[:print:]]+/build" | awk -F'/' '{ print $4; }')
|
||||||
[ "X$VER_RUN" == "X$VER_HDR" ] && {
|
[ "X$VER_RUN" == "X$VER_HDR" ] && {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue