All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yegor Yefremov <yegorslists@googlemail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/1] thunderbolt-tools: new package
Date: Fri, 26 Jan 2018 15:38:30 +0100	[thread overview]
Message-ID: <CAGm1_ks3WPq22oH6DhcrfLV2JARq5opbQ7Cfyt9f3iZq627qxg@mail.gmail.com> (raw)
In-Reply-To: <CAGm1_ktzWc_nEwN9s+jU=2NQ-fg6+duquXgND_4gdGTjif9SVQ@mail.gmail.com>

On Fri, Jan 26, 2018 at 3:36 PM, Yegor Yefremov
<yegorslists@googlemail.com> wrote:
> On Fri, Jan 26, 2018 at 3:20 PM, Andrei Emeltchenko
> <Andrei.Emeltchenko.news@gmail.com> wrote:
>> From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
>>
>> Add package thunderbolt-tools to handle Thunderbolt devices.
>>
>> Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
>> ---
>>  DEVELOPERS                                       |  3 +++
>>  package/Config.in                                |  1 +
>>  package/thunderbolt-tools/Config.in              | 13 +++++++++++++
>>  package/thunderbolt-tools/thunderbolt-tools.hash |  2 ++
>>  package/thunderbolt-tools/thunderbolt-tools.mk   | 15 +++++++++++++++
>>  5 files changed, 34 insertions(+)
>>  create mode 100644 package/thunderbolt-tools/Config.in
>>  create mode 100644 package/thunderbolt-tools/thunderbolt-tools.hash
>>  create mode 100644 package/thunderbolt-tools/thunderbolt-tools.mk
>>
>> diff --git a/DEVELOPERS b/DEVELOPERS
>> index 73c0231bc0..822961a467 100644
>> --- a/DEVELOPERS
>> +++ b/DEVELOPERS
>> @@ -1949,3 +1949,6 @@ F:        package/qjson/
>>  F:     package/quazip/
>>  F:     package/shapelib/
>>  F:     package/tinc/
>> +
>> +N:     Andrei Emeltchenko <andrei.emeltchenko@intel.com>
>> +F:     package/thunderbolt-tools/
>> diff --git a/package/Config.in b/package/Config.in
>> index 00451f526d..d638ac3a72 100644
>> --- a/package/Config.in
>> +++ b/package/Config.in
>> @@ -505,6 +505,7 @@ endmenu
>>         source "package/sunxi-mali/Config.in"
>>         source "package/sysstat/Config.in"
>>         source "package/targetcli-fb/Config.in"
>> +       source "package/thunderbolt-tools/Config.in"
>>         source "package/ti-gfx/Config.in"
>>         source "package/ti-sgx-demos/Config.in"
>>         source "package/ti-sgx-km/Config.in"
>> diff --git a/package/thunderbolt-tools/Config.in b/package/thunderbolt-tools/Config.in
>> new file mode 100644
>> index 0000000000..0187ee4569
>> --- /dev/null
>> +++ b/package/thunderbolt-tools/Config.in
>> @@ -0,0 +1,13 @@
>> +config BR2_PACKAGE_THUNDERBOLT_TOOLS
>> +       bool "thunderbolt-tools"
>> +       select BR2_PACKAGE_BOOST
>> +       select BR2_PACKAGE_BOOST_FILESYSTEM
>> +       depends on BR2_PACKAGE_HAS_UDEV
>> +       depends on BR2_INSTALL_LIBSTDCPP
>> +       help
>> +         Thunderbolt user space tools
>> +
>> +         https://github.com/intel/thunderbolt-software-user-space
>> +
>> +comment "thunderbolt-tools package needs udev provided by systemd of eudev, C++"
>
> s/of/or
>
>> +       depends on BR2_PACKAGE_HAS_UDEV
>
> depends on !BR2_INSTALL_LIBSTDCPP || !BR2_PACKAGE_HAS_UDEV
>
>> diff --git a/package/thunderbolt-tools/thunderbolt-tools.hash b/package/thunderbolt-tools/thunderbolt-tools.hash
>> new file mode 100644
>> index 0000000000..b1cfded05a
>> --- /dev/null
>> +++ b/package/thunderbolt-tools/thunderbolt-tools.hash
>> @@ -0,0 +1,2 @@
>> +# locally computed
>> +sha256 705f56b095a9764ca933f43ecf7629812976cb20600545ac9838730bd0ae6e2c thunderbolt-tools-8c82b2f84dfede86683873bc47a0b95714129a66.tar.gz

please add sha256 checksum for COPYING

>> diff --git a/package/thunderbolt-tools/thunderbolt-tools.mk b/package/thunderbolt-tools/thunderbolt-tools.mk
>> new file mode 100644
>> index 0000000000..6bf7b7a9c7
>> --- /dev/null
>> +++ b/package/thunderbolt-tools/thunderbolt-tools.mk
>> @@ -0,0 +1,15 @@
>> +################################################################################
>> +#
>> +# thunderbolt-tools
>> +#
>> +################################################################################
>> +
>> +THUNDERBOLT_TOOLS_VERSION = 8c82b2f84dfede86683873bc47a0b95714129a66
>> +THUNDERBOLT_TOOLS_SITE = https://github.com/01org/thunderbolt-software-user-space.git
>
> remove this line
>
> with this changed applied you can add my
>
> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
>
> Yegor
>
>> +THUNDERBOLT_TOOLS_SITE = $(call github,intel,thunderbolt-software-user-space,$(THUNDERBOLT_TOOLS_VERSION))
>> +THUNDERBOLT_TOOLS_LICENSE = BSD-3-Clause
>> +THUNDERBOLT_TOOLS_LICENSE_FILES = COPYING
>> +
>> +THUNDERBOLT_TOOLS_DEPENDENCIES = host-pkgconf boost eudev
>> +
>> +$(eval $(cmake-package))
>> --
>> 2.14.1
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot

  reply	other threads:[~2018-01-26 14:38 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-25 13:09 [Buildroot] [PATCH 1/1] package: Add thunderbolt-tools package Andrei Emeltchenko
2018-01-25 14:19 ` Yegor Yefremov
2018-01-25 16:38   ` Andrei Emeltchenko
2018-01-25 18:31     ` Yegor Yefremov
2018-01-26 14:20 ` [Buildroot] [PATCH 1/1] thunderbolt-tools: new package Andrei Emeltchenko
2018-01-26 14:36   ` Yegor Yefremov
2018-01-26 14:38     ` Yegor Yefremov [this message]
2018-01-26 15:30 ` [Buildroot] [PATCHv3 " Andrei Emeltchenko
2018-01-27 11:55   ` Peter Korsgaard

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=CAGm1_ks3WPq22oH6DhcrfLV2JARq5opbQ7Cfyt9f3iZq627qxg@mail.gmail.com \
    --to=yegorslists@googlemail.com \
    --cc=buildroot@busybox.net \
    /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 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.