mirror of
https://git.yoctoproject.org/poky
synced 2026-04-04 23:02:22 +02:00
kernel-devsrc: ppc32: fix reproducibility
In a similar manner to the arm/arm32 reprodicibility fixes, we can also fix ppc32. The file .vdso32-offsets.h.cmd has captured paths, but we don't need it on target or SDKs to regenerate a build enviroment. We add it to our vdso-offsets list of files to delete and we no longer have files patckaged with buildpaths. (From OE-Core rev: 3480149a102737a198ba1929c6cdd4ea5a966739) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 2a142b68b232ff7728f4eb945eea923c64e7ebd5) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
3e6f03797c
commit
1c8f219ec6
@@ -129,9 +129,11 @@ do_install() {
|
||||
cp -a --parents include/generated/autoconf.h $kerneldir/build 2>/dev/null || :
|
||||
|
||||
if [ -e $kerneldir/include/generated/.vdso-offsets.h.cmd ] ||
|
||||
[ -e $kerneldir/build/include/generated/.vdso-offsets.h.cmd ]; then
|
||||
[ -e $kerneldir/build/include/generated/.vdso-offsets.h.cmd ] ||
|
||||
[ -e $kerneldir/build/include/generated/.vdso32-offsets.h.cmd ] ; then
|
||||
rm -f $kerneldir/include/generated/.vdso-offsets.h.cmd
|
||||
rm -f $kerneldir/build/include/generated/.vdso-offsets.h.cmd
|
||||
rm -f $kerneldir/build/include/generated/.vdso32-offsets.h.cmd
|
||||
fi
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user