diff options
-rwxr-xr-x | scripts/feeds | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/feeds b/scripts/feeds index 7cbe07f58e..d07c28bc50 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -461,6 +461,11 @@ sub do_install_target($) { return 1; } + # Clean packageinfo of linux kernel to force the scan. + # Otherwise kernel modules defined at target level are not scanned, as the + # linux kernel package was scanned before the installation of the target. + unlink "tmp/info/.packageinfo-kernel_linux"; + return 0; } |