* [Buildroot] [PATCH 1/1] aer-inject: new package
@ 2016-03-30 13:01 tiago.brusamarello
2016-03-30 16:26 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: tiago.brusamarello @ 2016-03-30 13:01 UTC (permalink / raw)
To: buildroot
aer-inject allows to inject PCIE AER errors on the software level into
a running Linux kernel. This is intended for validation of the PCIE
driver error recovery handler and PCIE AER core handler.
Change-Id: Id3e701a9eb692627db42320ea7c37afbf4f712b8
Signed-off-by: tiago.brusamarello <tiago.brusamarello@datacom.ind.br>
---
package/Config.in | 1 +
package/aer-inject/Config.in | 10 ++++++++++
package/aer-inject/aer-inject.mk | 24 ++++++++++++++++++++++++
3 files changed, 35 insertions(+)
create mode 100644 package/aer-inject/Config.in
create mode 100644 package/aer-inject/aer-inject.mk
diff --git a/package/Config.in b/package/Config.in
index 8208da8..bd76669 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -340,6 +340,7 @@ menu "Firmware"
endmenu
source "package/a10disp/Config.in"
source "package/acpid/Config.in"
+ source "package/aer-inject/Config.in"
source "package/am335x-pru-package/Config.in"
source "package/avrdude/Config.in"
source "package/bcache-tools/Config.in"
diff --git a/package/aer-inject/Config.in b/package/aer-inject/Config.in
new file mode 100644
index 0000000..8856ff1
--- /dev/null
+++ b/package/aer-inject/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_AER_INJECT
+ bool "aer-inject"
+ help
+ aer-inject allows to inject PCIE AER errors on the software level into
+ a running Linux kernel. This is intended for validation of the PCIE
+ driver error recovery handler and PCIE AER core handler.
+
+ Requires a new Linux kernel with PCIE AER error injection patches.
+
+ https://git.kernel.org/cgit/linux/kernel/git/gong.chen/aer-inject.git/
diff --git a/package/aer-inject/aer-inject.mk b/package/aer-inject/aer-inject.mk
new file mode 100644
index 0000000..6b2c844
--- /dev/null
+++ b/package/aer-inject/aer-inject.mk
@@ -0,0 +1,24 @@
+################################################################################
+#
+# aer-inject
+#
+################################################################################
+
+AER_INJECT_VERSION = 9bd5e2c7886fca72f139cd8402488a2235957d41
+AER_INJECT_SITE = git://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/aer-inject.git
+AER_INJECT_SITE_METHOD = git
+AER_INJECT_LICENSE = GPLv2
+AER_INJECT_LICENSE_FILES = README
+AER_INJECT_DEPENDENCIES = host-flex host-bison
+AER_INJECT_MAKE_OPTS = $(TARGET_CONFIGURE_OPTS)
+
+define AER_INJECT_BUILD_CMDS
+ $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(AER_INJECT_MAKE_OPTS)
+endef
+
+define AER_INJECT_INSTALL_TARGET_CMDS
+ $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(AER_INJECT_MAKE_OPTS) \
+ DESTDIR=$(TARGET_DIR) PREFIX=/usr/bin install
+endef
+
+$(eval $(generic-package))
\ No newline at end of file
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH 1/1] aer-inject: new package
2016-03-30 13:01 [Buildroot] [PATCH 1/1] aer-inject: new package tiago.brusamarello
@ 2016-03-30 16:26 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2016-03-30 16:26 UTC (permalink / raw)
To: buildroot
Hello,
I've applied your patch, after doing a few tweaks.
First of all, could you fix your SMTP configuration so that your From:
is Tiago Brusamarello <...> rather than tiago.brusamarello ?
On Wed, 30 Mar 2016 10:01:52 -0300, tiago.brusamarello wrote:
> aer-inject allows to inject PCIE AER errors on the software level into
> a running Linux kernel. This is intended for validation of the PCIE
> driver error recovery handler and PCIE AER core handler.
>
> Change-Id: Id3e701a9eb692627db42320ea7c37afbf4f712b8
This line is not needed.
> Signed-off-by: tiago.brusamarello <tiago.brusamarello@datacom.ind.br>
This should also be Tiago Brusamarello <....>
> diff --git a/package/aer-inject/Config.in b/package/aer-inject/Config.in
> new file mode 100644
> index 0000000..8856ff1
> --- /dev/null
> +++ b/package/aer-inject/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_AER_INJECT
> + bool "aer-inject"
> + help
> + aer-inject allows to inject PCIE AER errors on the software level into
> + a running Linux kernel. This is intended for validation of the PCIE
> + driver error recovery handler and PCIE AER core handler.
> +
> + Requires a new Linux kernel with PCIE AER error injection patches.
Those lines were slightly too long, so I rewrapped them.
> +AER_INJECT_VERSION = 9bd5e2c7886fca72f139cd8402488a2235957d41
> +AER_INJECT_SITE = git://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/aer-inject.git
> +AER_INJECT_SITE_METHOD = git
> +AER_INJECT_LICENSE = GPLv2
> +AER_INJECT_LICENSE_FILES = README
> +AER_INJECT_DEPENDENCIES = host-flex host-bison
> +AER_INJECT_MAKE_OPTS = $(TARGET_CONFIGURE_OPTS)
This variable was not needed, you can just use TARGET_CONFIGURE_OPTS
directly.
> +
> +define AER_INJECT_BUILD_CMDS
> + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(AER_INJECT_MAKE_OPTS)
> +endef
> +
> +define AER_INJECT_INSTALL_TARGET_CMDS
> + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(AER_INJECT_MAKE_OPTS) \
> + DESTDIR=$(TARGET_DIR) PREFIX=/usr/bin install
The continuation line should be indented.
> +endef
> +
> +$(eval $(generic-package))
> \ No newline at end of file
There should be a newline at the end of file.
I've fixed up those minor issues and applied. Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-03-30 16:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-30 13:01 [Buildroot] [PATCH 1/1] aer-inject: new package tiago.brusamarello
2016-03-30 16:26 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox