From: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: ecordonnier@snap.com
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core][PATCH v5] kernel.bbclass: make do_symlink_kernelsrc reentrant
Date: Wed, 31 Jan 2024 17:53:40 +0100 [thread overview]
Message-ID: <20240131165340dbfecc40@mail.local> (raw)
In-Reply-To: <CAHUKmYbSB7YvxRbriXxpG9+JumEysDgVW=SxBX=B1yjDCRMrtw@mail.gmail.com>
On 30/01/2024 16:39:27+0100, Etienne Cordonnier via lists.openembedded.org wrote:
> Hi,
> what is the status of this patch? Was it rejected?
>
I'll test it again because I don't remember but I possibly add a
build/test failure.
> Étienne
>
> On Thu, Dec 21, 2023 at 10:50 PM Etienne Cordonnier via
> lists.openembedded.org <ecordonnier=snap.com@lists.openembedded.org> wrote:
>
> > patch v5: added ignore_dangling_symlinks to avoid error when linux sources
> > contain dangling symlinks
> >
> > On Thu, Dec 21, 2023 at 10:49 PM Etienne Cordonnier via
> > lists.openembedded.org
> > <https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.openembedded.org&d=DwMFaQ&c=ncDTmphkJTvjIDPh0hpF_4vCHvabgGkICC2epckfdiw&r=AhkbNonVuMIGRfPx_Qj9TsRih1DULJTKUkSGa66m67E&m=UCoMTsJKrnqkV-eQGGRGBeC-wIGTP7H0LRPvcTWkn9673LluHqkCpFInRctDEEct&s=Af3lZ-qHdVwBo6b8tlJ45PXYNer8GU6q0uxJ740caCA&e=>
> > <ecordonnier=snap.com@lists.openembedded.org> wrote:
> >
> >> From: Etienne Cordonnier <ecordonnier@snap.com>
> >>
> >> The function do_symlink_kernsrc is not reentrant in the case where S is
> >> defined
> >> to a non-default value. This causes build-failures e.g. when building
> >> linux-yocto, then updating
> >> poky to a commit which modifies kernel.bbclass, and then building
> >> linux-yocto again.
> >>
> >> Bugzilla: https://bugzilla.yoctoproject.org/show_bug.cgi?id=15325
> >> <https://urldefense.proofpoint.com/v2/url?u=https-3A__bugzilla.yoctoproject.org_show-5Fbug.cgi-3Fid-3D15325&d=DwMFaQ&c=ncDTmphkJTvjIDPh0hpF_4vCHvabgGkICC2epckfdiw&r=AhkbNonVuMIGRfPx_Qj9TsRih1DULJTKUkSGa66m67E&m=eo9dzHi2uXPV1dA2f4GoA6Y7QoDiG2TTF1R2YQ__SwnF1U1d0O2JxX3PprS_T9BN&s=e9FG4cG4GbLjCy8loEN6qVisSUax4Ngvd_Ok8TPonvY&e=>
> >>
> >> Tested with a recipe "my-custom-linux" which unpacks sources to a custom
> >> ${S} directory
> >> and ran symlink_kernsrc several times:
> >> $ bitbake -f -c symlink_kernsrc my-custom-linux
> >>
> >> Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
> >> ---
> >> meta/classes-recipe/kernel.bbclass | 8 +++++++-
> >> 1 file changed, 7 insertions(+), 1 deletion(-)
> >>
> >> diff --git a/meta/classes-recipe/kernel.bbclass
> >> b/meta/classes-recipe/kernel.bbclass
> >> index 9ff37f5c38..45b63f1fa1 100644
> >> --- a/meta/classes-recipe/kernel.bbclass
> >> +++ b/meta/classes-recipe/kernel.bbclass
> >> @@ -189,11 +189,17 @@ python do_symlink_kernsrc () {
> >> # drop trailing slash, so that os.symlink(kernsrc, s)
> >> doesn't use s as
> >> # directory name and fail
> >> s = s[:-1]
> >> - if d.getVar("EXTERNALSRC"):
> >> + if d.getVar("EXTERNALSRC") and not os.path.islink(s):
> >> # With EXTERNALSRC S will not be wiped so we can symlink to
> >> it
> >> os.symlink(s, kernsrc)
> >> else:
> >> import shutil
> >> + # perform idempotent/reentrant copy
> >> + s_copy = s + ".orig"
> >> + if not os.path.isdir(s_copy):
> >> + shutil.copytree(s, s_copy, ignore_dangling_symlinks=True)
> >> + bb.utils.remove(s, recurse=True)
> >> + shutil.copytree(s_copy, s, ignore_dangling_symlinks=True)
> >> shutil.move(s, kernsrc)
> >> os.symlink(kernsrc, s)
> >> }
> >> --
> >> 2.34.1
> >>
> >>
> >>
> >>
> >
> >
> >
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#194496): https://lists.openembedded.org/g/openembedded-core/message/194496
> Mute This Topic: https://lists.openembedded.org/mt/104055728/3617179
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2024-01-31 16:53 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <17A2F72F5D272934.28089@lists.openembedded.org>
2023-12-21 21:50 ` [OE-core][PATCH v5] kernel.bbclass: make do_symlink_kernelsrc reentrant Etienne Cordonnier
[not found] ` <17A2F73D8934EE37.10357@lists.openembedded.org>
2024-01-30 15:39 ` Etienne Cordonnier
2024-01-31 16:53 ` Alexandre Belloni [this message]
2024-01-31 17:17 ` Etienne Cordonnier
2024-02-04 14:15 ` Alexandre Belloni
2023-12-22 10:11 ecordonnier
-- strict thread matches above, loose matches on Subject: below --
2023-12-21 21:49 Etienne Cordonnier
2024-02-09 17:36 ` Richard Purdie
2024-05-27 9:45 ` Etienne Cordonnier
2024-05-27 18:34 ` Alexandre Belloni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240131165340dbfecc40@mail.local \
--to=alexandre.belloni@bootlin.com \
--cc=ecordonnier@snap.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox