All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH buildroot-test] scripts/autobuild-run: calculate dldir as an absolute path
@ 2019-09-14 13:35 Thomas Petazzoni
  2019-09-14 17:05 ` Arnout Vandecappelle
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2019-09-14 13:35 UTC (permalink / raw)
  To: buildroot

Right now, self.dldir is a relative path, equal to
"instance-X/dl". Then, the Buildroot build is executed with
BR2_DL_DIR=self.dldir, which means that self.dldir is interpreted
relatively to the Buildroot source directory.

Due to this, we get the following directory organization:

 instance-0
  + buildroot
    + instance-0
      + dl
  + instance.log
  + output

Instead of the excepted organization:

 instance-0
 + buildroot
 + dl
 + instance.log
 + output

We fix this issue (which was introduced when the Builder class was
created) by making self.dldir an absolute path.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 scripts/autobuild-run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/autobuild-run b/scripts/autobuild-run
index ead81a0..7e3c7a0 100755
--- a/scripts/autobuild-run
+++ b/scripts/autobuild-run
@@ -270,7 +270,7 @@ class Builder:
         # frequently needed directories
         self.idir = "instance-%d" % self.instance
         self.srcdir = os.path.join(self.idir, "buildroot")
-        self.dldir = os.path.join(self.idir, "dl")
+        self.dldir = os.path.abspath(os.path.join(self.idir, "dl"))
         # We need the absolute path to use with O=, because the relative
         # path to the output directory here is not relative to the
         # Buildroot sources, but to the location of the autobuilder
-- 
2.21.0

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

* [Buildroot] [PATCH buildroot-test] scripts/autobuild-run: calculate dldir as an absolute path
  2019-09-14 13:35 [Buildroot] [PATCH buildroot-test] scripts/autobuild-run: calculate dldir as an absolute path Thomas Petazzoni
@ 2019-09-14 17:05 ` Arnout Vandecappelle
  2019-09-14 17:24 ` Atharva Lele
  2019-09-15 12:56 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2019-09-14 17:05 UTC (permalink / raw)
  To: buildroot



On 14/09/2019 15:35, Thomas Petazzoni wrote:
> Right now, self.dldir is a relative path, equal to
> "instance-X/dl". Then, the Buildroot build is executed with
> BR2_DL_DIR=self.dldir, which means that self.dldir is interpreted
> relatively to the Buildroot source directory.
> 
> Due to this, we get the following directory organization:
> 
>  instance-0
>   + buildroot
>     + instance-0
>       + dl
>   + instance.log
>   + output
> 
> Instead of the excepted organization:
> 
>  instance-0
>  + buildroot
>  + dl
>  + instance.log
>  + output
> 
> We fix this issue (which was introduced when the Builder class was
> created) by making self.dldir an absolute path.
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

 Regards,
 Arnout

> ---
>  scripts/autobuild-run | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/scripts/autobuild-run b/scripts/autobuild-run
> index ead81a0..7e3c7a0 100755
> --- a/scripts/autobuild-run
> +++ b/scripts/autobuild-run
> @@ -270,7 +270,7 @@ class Builder:
>          # frequently needed directories
>          self.idir = "instance-%d" % self.instance
>          self.srcdir = os.path.join(self.idir, "buildroot")
> -        self.dldir = os.path.join(self.idir, "dl")
> +        self.dldir = os.path.abspath(os.path.join(self.idir, "dl"))
>          # We need the absolute path to use with O=, because the relative
>          # path to the output directory here is not relative to the
>          # Buildroot sources, but to the location of the autobuilder
> 

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

* [Buildroot] [PATCH buildroot-test] scripts/autobuild-run: calculate dldir as an absolute path
  2019-09-14 13:35 [Buildroot] [PATCH buildroot-test] scripts/autobuild-run: calculate dldir as an absolute path Thomas Petazzoni
  2019-09-14 17:05 ` Arnout Vandecappelle
@ 2019-09-14 17:24 ` Atharva Lele
  2019-09-15 12:56 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Atharva Lele @ 2019-09-14 17:24 UTC (permalink / raw)
  To: buildroot

On Sat, Sep 14, 2019 at 7:05 PM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> Right now, self.dldir is a relative path, equal to
> "instance-X/dl". Then, the Buildroot build is executed with
> BR2_DL_DIR=self.dldir, which means that self.dldir is interpreted
> relatively to the Buildroot source directory.
>
> Due to this, we get the following directory organization:
>
>  instance-0
>   + buildroot
>     + instance-0
>       + dl
>   + instance.log
>   + output
>
> Instead of the excepted organization:
>
>  instance-0
>  + buildroot
>  + dl
>  + instance.log
>  + output
>
> We fix this issue (which was introduced when the Builder class was
> created) by making self.dldir an absolute path.
>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

I had not noticed this..

Thanks for fixing it!

Reviewed-by: Atharva Lele <itsatharva@gmail.com>

Regards,
Atharva Lele

> ---
>  scripts/autobuild-run | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/autobuild-run b/scripts/autobuild-run
> index ead81a0..7e3c7a0 100755
> --- a/scripts/autobuild-run
> +++ b/scripts/autobuild-run
> @@ -270,7 +270,7 @@ class Builder:
>          # frequently needed directories
>          self.idir = "instance-%d" % self.instance
>          self.srcdir = os.path.join(self.idir, "buildroot")
> -        self.dldir = os.path.join(self.idir, "dl")
> +        self.dldir = os.path.abspath(os.path.join(self.idir, "dl"))
>          # We need the absolute path to use with O=, because the relative
>          # path to the output directory here is not relative to the
>          # Buildroot sources, but to the location of the autobuilder
> --
> 2.21.0
>

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

* [Buildroot] [PATCH buildroot-test] scripts/autobuild-run: calculate dldir as an absolute path
  2019-09-14 13:35 [Buildroot] [PATCH buildroot-test] scripts/autobuild-run: calculate dldir as an absolute path Thomas Petazzoni
  2019-09-14 17:05 ` Arnout Vandecappelle
  2019-09-14 17:24 ` Atharva Lele
@ 2019-09-15 12:56 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2019-09-15 12:56 UTC (permalink / raw)
  To: buildroot

On Sat, 14 Sep 2019 15:35:18 +0200
Thomas Petazzoni <thomas.petazzoni@bootlin.com> wrote:

> Right now, self.dldir is a relative path, equal to
> "instance-X/dl". Then, the Buildroot build is executed with
> BR2_DL_DIR=self.dldir, which means that self.dldir is interpreted
> relatively to the Buildroot source directory.
> 
> Due to this, we get the following directory organization:
> 
>  instance-0
>   + buildroot
>     + instance-0
>       + dl
>   + instance.log
>   + output
> 
> Instead of the excepted organization:
> 
>  instance-0
>  + buildroot
>  + dl
>  + instance.log
>  + output
> 
> We fix this issue (which was introduced when the Builder class was
> created) by making self.dldir an absolute path.
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> ---
>  scripts/autobuild-run | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to buildroot-test.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2019-09-15 12:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-14 13:35 [Buildroot] [PATCH buildroot-test] scripts/autobuild-run: calculate dldir as an absolute path Thomas Petazzoni
2019-09-14 17:05 ` Arnout Vandecappelle
2019-09-14 17:24 ` Atharva Lele
2019-09-15 12:56 ` Thomas Petazzoni

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.