diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2018-03-07 22:51:24 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-03-30 22:11:20 +0200 |
commit | ac076f59de92cbea22bc26e5c83bbbdf75e9c70f (patch) | |
tree | 0b887e341dd560c91aee10327bc77e372a118ae4 /support/scripts | |
parent | 086b43f698108b5d88d69e400aa9784353873429 (diff) | |
download | buildroot-ac076f59de92cbea22bc26e5c83bbbdf75e9c70f.tar.gz buildroot-ac076f59de92cbea22bc26e5c83bbbdf75e9c70f.zip |
support/check-bin-arch: exclude kernel modules for merged /usr
When using a merged /usr, the kernel module path is really
/usr/lib/modules, as /lib is a symlink to usr/lib .
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Peter Korsgaard <peter@korsgaard.com>
Reviewed-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit 1b9a57442d0a234b03585235f516d755372f29b3)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'support/scripts')
-rwxr-xr-x | support/scripts/check-bin-arch | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/scripts/check-bin-arch b/support/scripts/check-bin-arch index d8385b4fcf..7f97696735 100755 --- a/support/scripts/check-bin-arch +++ b/support/scripts/check-bin-arch @@ -14,6 +14,7 @@ declare -a IGNORES=( # and its modules may still be 64-bit. To keep the basic # check-bin-arch logic simple, just skip this directory. "/lib/modules" + "/usr/lib/modules" # Skip files in /usr/share, several packages (qemu, # pru-software-support) legitimately install ELF binaries that |