All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kernel-devsrc: support 4.4+ ARM/ARM64 kernels
@ 2020-02-14 19:24 Ruslan Bilovol
  2020-03-02 18:15 ` Ruslan Bilovol
  0 siblings, 1 reply; 2+ messages in thread
From: Ruslan Bilovol @ 2020-02-14 19:24 UTC (permalink / raw)
  To: openembedded-core; +Cc: xe-linux-external

Linux Kernel 4.4 is an LTS kernel so people may still
build it with OE.

Thus make copying of some files optional:
 - arm64 module.lds file first appeared with kernel v4.6 commit
   fd045f6cd98e arm64: add support for module PLTs"
 - arm32 *.tbl files first appeared in kernel v4.10 in
   commit 96a8fae0fe09 "ARM: convert to generated
   system call tables"

Signed-off-by: Ruslan Bilovol <rbilovol@cisco.com>
---
 meta/recipes-kernel/linux/kernel-devsrc.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-kernel/linux/kernel-devsrc.bb b/meta/recipes-kernel/linux/kernel-devsrc.bb
index 2fa4be67cc..2ac679e204 100644
--- a/meta/recipes-kernel/linux/kernel-devsrc.bb
+++ b/meta/recipes-kernel/linux/kernel-devsrc.bb
@@ -147,7 +147,7 @@ do_install() {
             cp -a --parents arch/arm64/kernel/vdso/note.S $kerneldir/build/
             cp -a --parents arch/arm64/kernel/vdso/gen_vdso_offsets.sh $kerneldir/build/
 
-            cp -a --parents arch/arm64/kernel/module.lds $kerneldir/build/
+            cp -a --parents arch/arm64/kernel/module.lds $kerneldir/build/ 2>/dev/null || :
 	fi
 
 	if [ "${ARCH}" = "powerpc" ]; then
@@ -187,7 +187,7 @@ do_install() {
 
 	# required for generate missing syscalls prepare phase
 	cp -a --parents $(find arch/x86 -type f -name "syscall_32.tbl") $kerneldir/build
-	cp -a --parents $(find arch/arm -type f -name "*.tbl") $kerneldir/build
+	cp -a --parents $(find arch/arm -type f -name "*.tbl") $kerneldir/build 2>/dev/null || :
 
 	if [ "${ARCH}" = "x86" ]; then
 	    # files for 'make prepare' to succeed with kernel-devel
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] kernel-devsrc: support 4.4+ ARM/ARM64 kernels
  2020-02-14 19:24 [PATCH] kernel-devsrc: support 4.4+ ARM/ARM64 kernels Ruslan Bilovol
@ 2020-03-02 18:15 ` Ruslan Bilovol
  0 siblings, 0 replies; 2+ messages in thread
From: Ruslan Bilovol @ 2020-03-02 18:15 UTC (permalink / raw)
  To: openembedded-core; +Cc: xe-linux-external

Gentle ping

On 2/14/20 9:24 PM, Ruslan Bilovol wrote:
> Linux Kernel 4.4 is an LTS kernel so people may still
> build it with OE.
> 
> Thus make copying of some files optional:
>   - arm64 module.lds file first appeared with kernel v4.6 commit
>     fd045f6cd98e arm64: add support for module PLTs"
>   - arm32 *.tbl files first appeared in kernel v4.10 in
>     commit 96a8fae0fe09 "ARM: convert to generated
>     system call tables"
> 
> Signed-off-by: Ruslan Bilovol <rbilovol@cisco.com>
> ---
>   meta/recipes-kernel/linux/kernel-devsrc.bb | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/meta/recipes-kernel/linux/kernel-devsrc.bb b/meta/recipes-kernel/linux/kernel-devsrc.bb
> index 2fa4be67cc..2ac679e204 100644
> --- a/meta/recipes-kernel/linux/kernel-devsrc.bb
> +++ b/meta/recipes-kernel/linux/kernel-devsrc.bb
> @@ -147,7 +147,7 @@ do_install() {
>               cp -a --parents arch/arm64/kernel/vdso/note.S $kerneldir/build/
>               cp -a --parents arch/arm64/kernel/vdso/gen_vdso_offsets.sh $kerneldir/build/
>   
> -            cp -a --parents arch/arm64/kernel/module.lds $kerneldir/build/
> +            cp -a --parents arch/arm64/kernel/module.lds $kerneldir/build/ 2>/dev/null || :
>   	fi
>   
>   	if [ "${ARCH}" = "powerpc" ]; then
> @@ -187,7 +187,7 @@ do_install() {
>   
>   	# required for generate missing syscalls prepare phase
>   	cp -a --parents $(find arch/x86 -type f -name "syscall_32.tbl") $kerneldir/build
> -	cp -a --parents $(find arch/arm -type f -name "*.tbl") $kerneldir/build
> +	cp -a --parents $(find arch/arm -type f -name "*.tbl") $kerneldir/build 2>/dev/null || :
>   
>   	if [ "${ARCH}" = "x86" ]; then
>   	    # files for 'make prepare' to succeed with kernel-devel
> 


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-03-02 18:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-14 19:24 [PATCH] kernel-devsrc: support 4.4+ ARM/ARM64 kernels Ruslan Bilovol
2020-03-02 18:15 ` Ruslan Bilovol

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.