diff mbox series

support/check-bin-arch: ignore /usr/lib/grub

Message ID 20190507124345.6424-1-alex_y_xu@yahoo.ca
State Accepted
Headers show
Series support/check-bin-arch: ignore /usr/lib/grub | expand

Commit Message

Alex Xu \(Hello71\) May 7, 2019, 12:43 p.m. UTC
/lib/grub is already ignored, so add /usr/lib/grub to support
BR2_ROOTFS_MERGED_USR.

Signed-off-by: Alex Xu (Hello71) <alex_y_xu@yahoo.ca>
---
 support/scripts/check-bin-arch | 1 +
 1 file changed, 1 insertion(+)

Comments

Thomas Petazzoni May 20, 2019, 8:34 p.m. UTC | #1
Hello Alex,

Thanks for your contribution!

On Tue,  7 May 2019 08:43:45 -0400
"Alex Xu (Hello71)" <alex_y_xu@yahoo.ca> wrote:

> /lib/grub is already ignored, so add /usr/lib/grub to support
> BR2_ROOTFS_MERGED_USR.
> 
> Signed-off-by: Alex Xu (Hello71) <alex_y_xu@yahoo.ca>
> ---
>  support/scripts/check-bin-arch | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/support/scripts/check-bin-arch b/support/scripts/check-bin-arch
> index 66b8d89932..0c6ce83b4f 100755
> --- a/support/scripts/check-bin-arch
> +++ b/support/scripts/check-bin-arch
> @@ -24,6 +24,7 @@ declare -a IGNORES=(
>  	# Skip files in /lib/grub, since it is possible to have it
>  	# for a different architecture (e.g. i386 grub on x86_64).
>  	"/lib/grub"
> +	"/usr/lib/grub"

I have updated the comment right above, and applied your patch to
master. Thanks!

Thomas
Peter Korsgaard June 6, 2019, 7:42 a.m. UTC | #2
>>>>> "Alex" == Alex Xu (Hello71) <alex_y_xu@yahoo.ca> writes:

 > /lib/grub is already ignored, so add /usr/lib/grub to support
 > BR2_ROOTFS_MERGED_USR.

 > Signed-off-by: Alex Xu (Hello71) <alex_y_xu@yahoo.ca>

Committed to 2019.02.x, thanks.
diff mbox series

Patch

diff --git a/support/scripts/check-bin-arch b/support/scripts/check-bin-arch
index 66b8d89932..0c6ce83b4f 100755
--- a/support/scripts/check-bin-arch
+++ b/support/scripts/check-bin-arch
@@ -24,6 +24,7 @@  declare -a IGNORES=(
 	# Skip files in /lib/grub, since it is possible to have it
 	# for a different architecture (e.g. i386 grub on x86_64).
 	"/lib/grub"
+	"/usr/lib/grub"
 )
 
 while getopts p:l:r:a:i: OPT ; do