diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-07-02 11:13:47 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-05 10:59:40 +0100 |
commit | 1453135bd72db785145b3c115c336b4d115962e9 (patch) | |
tree | 466001c2f508e78161e9b1f556331bcce52942b1 /meta/recipes-kernel | |
parent | c90326070165105306def851d692c82f2352360f (diff) | |
download | poky-1453135bd72db785145b3c115c336b4d115962e9.tar.gz |
kernel-devsrc: powerpc64 add scripts prepare support
Similar to 32bit powerpc, we need more vdso bits in devsrc to
support on target scripts prepare for powerpc64.
(From OE-Core rev: 412186e001c66f943e10d787e9b826f1ca987402)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/linux/kernel-devsrc.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/kernel-devsrc.bb b/meta/recipes-kernel/linux/kernel-devsrc.bb index 92076ac8b0..21b42833ba 100644 --- a/meta/recipes-kernel/linux/kernel-devsrc.bb +++ b/meta/recipes-kernel/linux/kernel-devsrc.bb | |||
@@ -114,6 +114,7 @@ do_install() { | |||
114 | fi | 114 | fi |
115 | if [ "${ARCH}" = "powerpc" ]; then | 115 | if [ "${ARCH}" = "powerpc" ]; then |
116 | cp -a --parents arch/powerpc/kernel/vdso32/vdso32.lds $kerneldir/build 2>/dev/null || : | 116 | cp -a --parents arch/powerpc/kernel/vdso32/vdso32.lds $kerneldir/build 2>/dev/null || : |
117 | cp -a --parents arch/powerpc/kernel/vdso64/vdso64.lds $kerneldir/build 2>/dev/null || : | ||
117 | fi | 118 | fi |
118 | 119 | ||
119 | cp -a include $kerneldir/build/include | 120 | cp -a include $kerneldir/build/include |
@@ -182,6 +183,7 @@ do_install() { | |||
182 | cp -a --parents arch/${ARCH}/kernel/syscalls/syscalltbl.sh $kerneldir/build/ 2>/dev/null || : | 183 | cp -a --parents arch/${ARCH}/kernel/syscalls/syscalltbl.sh $kerneldir/build/ 2>/dev/null || : |
183 | cp -a --parents arch/${ARCH}/kernel/syscalls/syscallhdr.sh $kerneldir/build/ 2>/dev/null || : | 184 | cp -a --parents arch/${ARCH}/kernel/syscalls/syscallhdr.sh $kerneldir/build/ 2>/dev/null || : |
184 | cp -a --parents arch/${ARCH}/kernel/vdso32/* $kerneldir/build/ 2>/dev/null || : | 185 | cp -a --parents arch/${ARCH}/kernel/vdso32/* $kerneldir/build/ 2>/dev/null || : |
186 | cp -a --parents arch/${ARCH}/kernel/vdso64/* $kerneldir/build/ 2>/dev/null || : | ||
185 | fi | 187 | fi |
186 | 188 | ||
187 | # include the machine specific headers for ARM variants, if available. | 189 | # include the machine specific headers for ARM variants, if available. |