Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Arnout Vandecappelle <arnout@mind.be>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2] msr-tools: new package
Date: Tue, 23 Feb 2016 01:22:06 +0100	[thread overview]
Message-ID: <56CBA62E.1040200@mind.be> (raw)
In-Reply-To: <1456180319-23117-1-git-send-email-vincent.stehle@intel.com>

On 02/22/16 23:31, Vincent Stehl? wrote:
> The MSR Tools project provides utilities to access x86 processor MSRs
> and CPU ID directly.
> 
> https://01.org/msr-tools
> 
> Signed-off-by: Vincent Stehl? <vincent.stehle@intel.com>
> Cc: Yegor Yefremov <yegorslists@googlemail.com>
> 
> ---
> 
> Changes since v1:
> - Add comments in Config.in that msr-tools runs only on x86
> - Drop redundant _SOURCE specification in msr-tools.mk
> 
>  package/Config.in                |  1 +
>  package/msr-tools/Config.in      | 15 +++++++++++++++
>  package/msr-tools/msr-tools.hash |  2 ++
>  package/msr-tools/msr-tools.mk   | 21 +++++++++++++++++++++
>  4 files changed, 39 insertions(+)
>  create mode 100644 package/msr-tools/Config.in
>  create mode 100644 package/msr-tools/msr-tools.hash
>  create mode 100644 package/msr-tools/msr-tools.mk
> 
> diff --git a/package/Config.in b/package/Config.in
> index 529ad33..f468b46 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -403,6 +403,7 @@ endif
>  	source "package/memtest86/Config.in"
>  	source "package/memtester/Config.in"
>  	source "package/minicom/Config.in"
> +	source "package/msr-tools/Config.in"
>  	source "package/nanocom/Config.in"
>  	source "package/neard/Config.in"
>  	source "package/nvidia-driver/Config.in"
> diff --git a/package/msr-tools/Config.in b/package/msr-tools/Config.in
> new file mode 100644
> index 0000000..b348499
> --- /dev/null
> +++ b/package/msr-tools/Config.in
> @@ -0,0 +1,15 @@
> +config BR2_PACKAGE_MSR_TOOLS
> +	bool "msr-tools"
> +	depends on BR2_i386 || BR2_x86_64
> +	help
> +	  The MSR Tools project provides utilities to access x86 processor MSRs
> +	  and CPU ID directly.
> +
> +	  Those tools access the hardware through the /dev/cpu/<cpu#>/msr and
> +	  /dev/cpu/<cpu#>/cpuid devices. This necessitates msr and cpuid
> +	  support in the kernel.

 Maybe specify which kernel options should be enabled, i.e. CONFIG_X86_CPUID and
CONFIG_X86_MSR.

> +
> +	  https://01.org/msr-tools
> +
> +comment "msr-tools runs only on x86 CPUs"
> +	depends on !BR2_i386 && !BR2_x86_64

 As I wrote, this shouldn't be there.

> diff --git a/package/msr-tools/msr-tools.hash b/package/msr-tools/msr-tools.hash
> new file mode 100644
> index 0000000..18146df
> --- /dev/null
> +++ b/package/msr-tools/msr-tools.hash
> @@ -0,0 +1,2 @@
> +# Locally computed:
> +sha256 9b87245ee091a798184e447066e9e0d7709b7c81f5e6ad55f2b958c1aa50c4a3 msr-tools-1.3.tar.gz
> diff --git a/package/msr-tools/msr-tools.mk b/package/msr-tools/msr-tools.mk
> new file mode 100644
> index 0000000..f14684f
> --- /dev/null
> +++ b/package/msr-tools/msr-tools.mk
> @@ -0,0 +1,21 @@
> +################################################################################
> +#
> +# msr-tools
> +#
> +################################################################################
> +
> +MSR_TOOLS_VERSION = 1.3
> +MSR_TOOLS_SITE = $(call github,01org,msr-tools,msr-tools-$(MSR_TOOLS_VERSION))
> +MSR_TOOLS_LICENSE = GPLv2+

 cpuid.c specifies GPLv2-only, so we should stick to that.

 Add a comment saying that there is no license file in the tarball. Or cpuid.c
could be used.

> +
> +define MSR_TOOLS_BUILD_CMDS
> +	$(TARGET_CONFIGURE_OPTS) \
> +	$(MAKE) -C $(@D) CC="$(CCACHE) $(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)"

 Is it possible to instead use

	$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS)

? At least, LDFLAGS should be passed as well.

> +endef
> +
> +define MSR_TOOLS_INSTALL_TARGET_CMDS
> +	$(TARGET_CONFIGURE_OPTS) \

 I think this should be after the make.


 Regards,
 Arnout

> +	$(MAKE) -C $(@D) install sbindir="$(TARGET_DIR)/usr/sbin"
> +endef
> +
> +$(eval $(generic-package))
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

  reply	other threads:[~2016-02-23  0:22 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-29 17:11 [Buildroot] [PATCH] msr-tools: new package Vincent Stehlé
2016-02-22 14:40 ` Yegor Yefremov
2016-02-22 22:21   ` Vincent Stehlé
2016-02-22 22:31     ` [Buildroot] [PATCH v2] " Vincent Stehlé
2016-02-23  0:22       ` Arnout Vandecappelle [this message]
2016-02-28 21:12         ` [Buildroot] [PATCH v3] " Vincent Stehlé
2016-02-28 21:32           ` Thomas Petazzoni
2016-02-23  0:13   ` [Buildroot] [PATCH] " Arnout Vandecappelle

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=56CBA62E.1040200@mind.be \
    --to=arnout@mind.be \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox