All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v5 6/7] package/amd-catalyst: Add support AMD CCCLE
Date: Tue, 23 Aug 2016 16:27:14 +0200	[thread overview]
Message-ID: <20160823142714.GC5749@free.fr> (raw)
In-Reply-To: <20160823121950.16826-7-romain.perier@free-electrons.com>

Romain, All,

On 2016-08-23 14:19 +0200, Romain Perier spake thusly:
> The AMD Catalyst Linux driver includes a graphical controler center for AMD
> graphics accelerators, called Catalyst Controler Center. This commits
> adds support to install this tool by adding a separated prompt.
> 
> Signed-off-by: Romain Perier <romain.perier@free-electrons.com>
> ---
> 
> Changes in v5:
>  - Remove BR2_USE_MMU dependency which is already required by glibc
>    (all amd-catalyst blobs require glibc)
>  - Cosmetic changes
> 
>  package/amd-catalyst/Config.in       | 14 ++++++++++++++
>  package/amd-catalyst/amd-catalyst.mk | 10 ++++++++++
>  2 files changed, 24 insertions(+)
> 
> diff --git a/package/amd-catalyst/Config.in b/package/amd-catalyst/Config.in
> index 1d889f6..e325bc0 100644
> --- a/package/amd-catalyst/Config.in
> +++ b/package/amd-catalyst/Config.in
> @@ -45,6 +45,20 @@ config BR2_PACKAGE_AMD_CATALYST_CMDLINE_TOOLS
>  	help
>  	  Build the amd command line tools
>  
> +comment "Catalyst Control Center needs Qt4 with X11 and PNG support"
> +	depends on !BR2_PACKAGE_QT || !BR2_PACKAGE_QT_X11 \
> +		|| !BR2_PACKAGE_QT_NOPNG

If I understand the comment correctly, these need PNG support in Qt. So
you'd want the dependency of the comment to be on BR2_PACKAGE_QT_NOPNG:

    comment "Catalyst Control Center needs Qt4 with X11 and PNG support"
        depends on !BR2_PACKAGE_QT || !BR2_PACKAGE_QT_X11 \
                || BR2_PACKAGE_QT_NOPNG

I.e. show the comment when there is no PNG support in Qt.

> +config BR2_PACKAGE_AMD_CATALYST_CCCLE
> +	bool "Catalyst Control Center"
> +	depends on BR2_PACKAGE_QT && BR2_PACKAGE_QT_X11

And here you forgot to depend on !NOPNG.

Besides, I'd have put each dependency on its own line:

    config BR2_PACKAGE_AMD_CATALYST_CCCLE
        bool "Catalyst Control Center"
        depends on BR2_PACKAGE_QT
        depends on BR2_PACKAGE_QT_X11
        depends on !BR2_PACKAGE_QT_NOPNG
        [...]

> +	select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # procps-ng
> +	select BR2_PACKAGE_PROCPS_NG # runtime
> +	select BR2_PACKAGE_QT_GUI_MODULE
> +	select BR2_PACKAGE_QT_ACCESSIBILITY
> +	help
> +	  Installs the Catalyst Control Center, a Qt graphical tool to
> +	  control AMD graphics accelerators.
>  endif

Empty line before the endif, please.

Regards,
Yann E. MORIN.

>  
>  comment "amd-catalyst kernel module needs a kernel to be built"
> diff --git a/package/amd-catalyst/amd-catalyst.mk b/package/amd-catalyst/amd-catalyst.mk
> index 7fbe6b3..2226b70 100644
> --- a/package/amd-catalyst/amd-catalyst.mk
> +++ b/package/amd-catalyst/amd-catalyst.mk
> @@ -126,6 +126,15 @@ define  AMD_CATALYST_INSTALL_CMDLINE_TOOLS
>  endef
>  endif
>  
> +ifeq ($(BR2_PACKAGE_AMD_CATALYST_CCCLE), y)
> +define AMD_CATALYST_INSTALL_CCCLE
> +	$(INSTALL) -m 0755 $(AMD_CATALYST_ARCH_DIR)/usr/X11R6/bin/amdcccle \
> +		$(TARGET_DIR)/usr/bin/amdcccle
> +	$(INSTALL) -m 0755 $(AMD_CATALYST_ARCH_DIR)/usr/sbin/amdnotifyui \
> +		$(TARGET_DIR)/usr/sbin/amdnotifyui
> +endef
> +endif
> +
>  define AMD_CATALYST_CONFIGURE_CMDS
>  	$(call AMD_CATALYST_PREPARE_MODULE)
>  endef
> @@ -137,6 +146,7 @@ endef
>  define AMD_CATALYST_INSTALL_TARGET_CMDS
>  	$(call AMD_CATALYST_INSTALL_XORG)
>  	$(call AMD_CATALYST_INSTALL_CMDLINE_TOOLS)
> +	$(call AMD_CATALYST_INSTALL_CCCLE)
>  endef
>  
>  $(eval $(generic-package))
> -- 
> 2.9.3
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

  reply	other threads:[~2016-08-23 14:27 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-23 12:19 [Buildroot] [PATCH v5 0/7] Add support for AMD Catalyst graphics driver Romain Perier
2016-08-23 12:19 ` [Buildroot] [PATCH v5 1/7] support/download: Add support to pass options directly to downloaders Romain Perier
2016-08-23 12:58   ` Thomas Petazzoni
2016-08-23 12:19 ` [Buildroot] [PATCH v5 2/7] pkg-download: Allow packages to pass generic options to download methods Romain Perier
2016-08-23 12:58   ` Thomas Petazzoni
2016-08-23 12:19 ` [Buildroot] [PATCH v5 3/7] docs/manual: Document the variable $(PKG)_DL_OPTS Romain Perier
2016-08-23 12:58   ` Thomas Petazzoni
2016-08-23 12:19 ` [Buildroot] [PATCH v5 4/7] package/amd-catalyst: Add AMD proprietary graphic stack support Romain Perier
2016-08-23 13:42   ` Yann E. MORIN
2016-08-23 19:58   ` Thomas Petazzoni
2016-08-23 12:19 ` [Buildroot] [PATCH v5 5/7] package/amd-catalyst: Add AMD cmdline tools Romain Perier
2016-08-23 19:58   ` Thomas Petazzoni
2016-08-23 12:19 ` [Buildroot] [PATCH v5 6/7] package/amd-catalyst: Add support AMD CCCLE Romain Perier
2016-08-23 14:27   ` Yann E. MORIN [this message]
2016-08-23 19:59   ` Thomas Petazzoni
2016-08-24  7:39     ` Romain Perier
2016-08-24 12:46       ` Thomas Petazzoni
2016-08-23 12:19 ` [Buildroot] [PATCH v5 7/7] package/amd-catalyst: Add support for OpenCL Romain Perier
2016-08-23 14:29   ` Yann E. MORIN
2016-08-23 19:59   ` Thomas Petazzoni

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=20160823142714.GC5749@free.fr \
    --to=yann.morin.1998@free.fr \
    --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.