Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Mika Westerberg <mika.westerberg@linux.intel.com>
To: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Aapo Vienamo <aapo.vienamo@linux.intel.com>, buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH v2] package/tbtools: new package
Date: Sat, 11 May 2024 10:51:58 +0300	[thread overview]
Message-ID: <20240511075158.GF4162345@black.fi.intel.com> (raw)
In-Reply-To: <20240510134411.27f5639b@windsurf>

Hi,

On Fri, May 10, 2024 at 01:44:11PM +0200, Thomas Petazzoni wrote:
> Hello,
> 
> Thanks for your patch. I fixed up a few things, wanted to apply... but
> it fails to build for me. See below a number of comments, and details
> about the build failure.

Thanks for looking into it!

> On Tue, 30 Apr 2024 07:59:44 +0300
> Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> 
> > This is a collection of tools for Linux Thunderbolt/USB4 development,
> > debugging and validation.
> > 
> > Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
> > Reviewed-by: Aapo Vienamo <aapo.vienamo@linux.intel.com>
> > ---
> > Changes from v1:
> > 
> > - Added dependency to udev (libudev) and 64-bit builds.
> > - Added tag from Aapo.
> > 
> >  package/Config.in          |  1 +
> >  package/tbtools/Config.in  | 11 +++++++++++
> >  package/tbtools/tbtools.mk | 12 ++++++++++++
> >  3 files changed, 24 insertions(+)
> 
> You need to add an entry to the DEVELOPERS file, like this:
> 
> +N:     Mika Westerberg <mika.westerberg@linux.intel.com>
> +F:     package/tbtools/
> 
> (make sure to respect alphabetic ordering of developers)
> 
> > diff --git a/package/tbtools/Config.in b/package/tbtools/Config.in
> > new file mode 100644
> > index 000000000000..2627ea8bfcca
> > --- /dev/null
> > +++ b/package/tbtools/Config.in
> > @@ -0,0 +1,11 @@
> > +config BR2_PACKAGE_TBTOOLS
> > +	bool "tbtools"
> > +	depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
> > +	depends on BR2_PACKAGE_HAS_UDEV
> > +	depends on BR2_ARCH_IS_64
> 
> I think it was worth adding a comment about this:
> 
> +       # Fails to build on 32-bit systems
> 
> > +	select BR2_PACKAGE_HOST_RUSTC
> > +	help
> > +	  tbtools is a collection of tools for Linux Thunderbolt/USB4
> > +	  development, debugging and validation.
> > +
> > +	  https://github.com/intel/tbtools
> 
> You need a Config.in comment:
> 
> +comment "tbtools needs udev /dev management"
> +       depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
> +       depends on BR2_ARCH_IS_64
> +       depends on !BR2_PACKAGE_HAS_UDEV
> 
> 
> > diff --git a/package/tbtools/tbtools.mk b/package/tbtools/tbtools.mk
> > new file mode 100644
> > index 000000000000..61986ca8d311
> > --- /dev/null
> > +++ b/package/tbtools/tbtools.mk
> > @@ -0,0 +1,12 @@
> > +################################################################################
> > +#
> > +# tbtools
> > +#
> > +################################################################################
> > +
> > +TBTOOLS_VERSION = v0.3.2
> > +TBTOOLS_SITE = $(call github,intel,tbtools,$(TBTOOLS_VERSION))
> > +TBTOOLS_LICENSE = MIT
> > +TBTOOLS_LICENSE_FILES = LICENSE
> 
> You're missing:
> 
> +TBTOOLS_DEPENDENCIES = udev
> 
> without which udev is not built before tbtools. Without this, it fails
> with a pkg-config detection issue.
> 
> But even with udev built before, I get a build failure:
> 
>   = note: /home/thomas/projets/buildroot/output/host/opt/ext-toolchain/bin/../lib/gcc/aarch64-buildroot-linux-musl/12.3.0/../../../../aarch64-buildroot-linux-musl/bin/ld: cannot find -ludev: No such file or directory
>           collect2: error: ld returned 1 exit status
> 
> You can reproduce the following defconfig:
> 
> BR2_aarch64=y
> BR2_TOOLCHAIN_EXTERNAL=y
> BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
> BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_MUSL_STABLE=y
> BR2_INIT_NONE=y
> BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y
> BR2_SYSTEM_BIN_SH_NONE=y
> # BR2_PACKAGE_BUSYBOX is not set
> BR2_PACKAGE_TBTOOLS=y
> # BR2_TARGET_ROOTFS_TAR is not set
> 
> Could you have a look and submit a v2 ?

I think Rust udev wants to have glibc as the C library. I will add
dependency to that as well.

I'll fix these up in the next version.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

      reply	other threads:[~2024-05-11  7:52 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-30  4:59 [Buildroot] [PATCH v2] package/tbtools: new package Mika Westerberg
2024-05-10 11:44 ` Thomas Petazzoni via buildroot
2024-05-11  7:51   ` Mika Westerberg [this message]

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=20240511075158.GF4162345@black.fi.intel.com \
    --to=mika.westerberg@linux.intel.com \
    --cc=aapo.vienamo@linux.intel.com \
    --cc=buildroot@buildroot.org \
    --cc=thomas.petazzoni@bootlin.com \
    /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