Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 01/20] numactl: new package
Date: Mon, 27 May 2013 10:42:26 +0200	[thread overview]
Message-ID: <877gikerv1.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <1369606110-8088-2-git-send-email-thomas.petazzoni@free-electrons.com> (Thomas Petazzoni's message of "Mon, 27 May 2013 00:08:11 +0200")

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> From: Will Newton <will.newton@imgtec.com>
 Thomas> [Thomas: updated to 2.0.8, restricted to supported architectures,
 Thomas> added licensing informations, updated to latest Buildroot package
 Thomas> infrastructure]

 Thomas> Signed-off-by: Will Newton <will.newton@imgtec.com>
 Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 Thomas> ---
 Thomas>  package/Config.in          |    1 +
 Thomas>  package/numactl/Config.in  |   12 ++++++++++++
 Thomas>  package/numactl/numactl.mk |   21 +++++++++++++++++++++
 Thomas>  3 files changed, 34 insertions(+)
 Thomas>  create mode 100644 package/numactl/Config.in
 Thomas>  create mode 100644 package/numactl/numactl.mk

 Thomas> diff --git a/package/Config.in b/package/Config.in
 Thomas> index d980871..6094c1b 100644
 Thomas> --- a/package/Config.in
 Thomas> +++ b/package/Config.in
 Thomas> @@ -852,6 +852,7 @@ source "package/module-init-tools/Config.in"
 Thomas>  endif
 Thomas>  source "package/monit/Config.in"
 Thomas>  source "package/ncdu/Config.in"
 Thomas> +source "package/numactl/Config.in"
 Thomas>  source "package/polkit/Config.in"
 Thomas>  if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 Thomas>  source "package/procps/Config.in"
 Thomas> diff --git a/package/numactl/Config.in b/package/numactl/Config.in
 Thomas> new file mode 100644
 Thomas> index 0000000..d39a733
 Thomas> --- /dev/null
 Thomas> +++ b/package/numactl/Config.in
 Thomas> @@ -0,0 +1,12 @@
 Thomas> +config BR2_PACKAGE_NUMACTL
 Thomas> +	bool "numactl"
 Thomas> +	# numactl uses some system calls that are not available on all
 Thomas> +	# architectures.
 Thomas> +	depends on BR2_i386 || BR2_mips || BR2_mipsel || \
 Thomas> +		   BR2_mips64 || BR2_mips64el || BR2_powerpc || BR2_x86_64
 Thomas> +	help
 Thomas> +	  numactl allows you to run your application on specific cpus
 Thomas> +	  and memory nodes. It does this by supplying a NUMA memory
 Thomas> +	  policy to the operating system before running your program.
 Thomas> +
 Thomas> +	  http://oss.sgi.com/projects/libnuma/
 Thomas> diff --git a/package/numactl/numactl.mk b/package/numactl/numactl.mk
 Thomas> new file mode 100644
 Thomas> index 0000000..440847c
 Thomas> --- /dev/null
 Thomas> +++ b/package/numactl/numactl.mk
 Thomas> @@ -0,0 +1,21 @@
 Thomas> +#############################################################
 Thomas> +#
 Thomas> +# numactl
 Thomas> +#
 Thomas> +#############################################################
 Thomas> +
 Thomas> +NUMACTL_VERSION = 2.0.8
 Thomas> +NUMACTL_SOURCE = numactl-$(NUMACTL_VERSION).tar.gz
 Thomas> +NUMACTL_SITE = ftp://oss.sgi.com/www/projects/libnuma/download/
 Thomas> +NUMACTL_LICENSE = LGPLv2.1 (libnuma), GPLv2 (programs)
 Thomas> +NUMCTL_LICENSE_FILES = README

s/NUMCTL/NUMACTL/

The package uses stat64, so it needs largefile support in toolchain.

Committed to next with those issues fixed, thanks.

-- 
Bye, Peter Korsgaard

  reply	other threads:[~2013-05-27  8:42 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-26 22:08 [Buildroot] [PATCH 00/20] Patches from the Patchwork Day Thomas Petazzoni
2013-05-26 22:08 ` [Buildroot] [PATCH 01/20] numactl: new package Thomas Petazzoni
2013-05-27  8:42   ` Peter Korsgaard [this message]
2013-05-26 22:08 ` [Buildroot] [PATCH 02/20] dropbear: factorize the 'depends on BR2_PACKAGE_DROPBEAR' Thomas Petazzoni
2013-05-27 11:11   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 03/20] elf2flt: fix build when zlib is not installed on the host Thomas Petazzoni
2013-05-27 11:13   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 04/20] gcc: fix gcc 4.8 build when thread support is disabled Thomas Petazzoni
2013-05-27 11:36   ` Peter Korsgaard
2013-05-27 21:55   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 05/20] toolchain: blackfin: Remove Blackfin toolchain 2011R1 release Thomas Petazzoni
2013-05-27 11:36   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 06/20] poco: Add upstream patch to add support for aarch64 Thomas Petazzoni
2013-06-09 20:14   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 07/20] flex: needs M4 at runtime Thomas Petazzoni
2013-05-27 21:55   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 08/20] Remove useless CVS related files Thomas Petazzoni
2013-05-27 21:59   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 09/20] toolchain-external: add support for 'Sourcery CodeBench ARM 2013.05' Thomas Petazzoni
2013-05-27 22:03   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 10/20] toolchain-external: remove support for 'Sourcery CodeBench ARM 2011.03' Thomas Petazzoni
2013-05-27 22:03   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 11/20] sunxi-tools: new host/target package Thomas Petazzoni
2013-05-27 22:09   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 12/20] sunxi-boards: new package Thomas Petazzoni
2013-05-28 21:29   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 13/20] cubieboard: add support Thomas Petazzoni
2013-05-29 10:54   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 14/20] freescale-imx: new package directory Thomas Petazzoni
2013-05-29 12:24   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 15/20] imx-lib: move to the freescale-imx directory Thomas Petazzoni
2013-05-29 12:28   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 16/20] firmware-imx: " Thomas Petazzoni
2013-05-29 12:31   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 17/20] freescale-imx: bump to 1.1.0 Thomas Petazzoni
2013-05-29 13:19   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 18/20] gpu-viv-bin-mx6q: new package Thomas Petazzoni
2013-05-29 13:39   ` Peter Korsgaard
2013-05-29 13:48     ` Thomas Petazzoni
2013-05-29 13:54       ` Peter Korsgaard
2013-06-01 18:14       ` Arnout Vandecappelle
2013-05-26 22:08 ` [Buildroot] [PATCH 19/20] network-manager: use a <pkg>_VERSION_MAJOR variable Thomas Petazzoni
2013-05-29 13:45   ` Peter Korsgaard
2013-05-26 22:08 ` [Buildroot] [PATCH 20/20] network-manager: bump to 0.9.8.0 Thomas Petazzoni
2013-05-29 14:09   ` 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=877gikerv1.fsf@dell.be.48ers.dk \
    --to=jacmet@uclibc.org \
    --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