Commit 00152b6a authored by Romain Naour's avatar Romain Naour Committed by Thomas Petazzoni
Browse files

mcelog: new package



[Thomas:
  - use "make install", which allows to remove the custom installation
    logic in mcelog.mk.
  - no need to explicitly pass CFLAGS and CPPFLAGS when doing the
    build, since those definitions are already part of
    $(TARGET_CONFIGURE_OPTS).]

Signed-off-by: default avatarRomain Naour <romain.naour@openwide.fr>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent ea469fe6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -76,6 +76,7 @@ endif
	source "package/lttng-babeltrace/Config.in"
	source "package/lttng-modules/Config.in"
	source "package/lttng-tools/Config.in"
	source "package/mcelog/Config.in"
	source "package/memstat/Config.in"
	source "package/netperf/Config.in"
	source "package/oprofile/Config.in"
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_MCELOG
	bool "mcelog"
	depends on BR2_i386 || BR2_x86_64
	depends on BR2_USE_MMU # fork()
	help
	  mcelog processes machine checks (in particular memory and CPU hardware
	  errors) on modern x86 Linux systems.

	  http://www.mcelog.org/
+21 −0
Original line number Diff line number Diff line
################################################################################
#
# mcelog
#
################################################################################

MCELOG_VERSION = v105
MCELOG_SITE = $(BR2_KERNEL_MIRROR)/scm/utils/cpu/mce/mcelog.git
MCELOG_SITE_METHOD = git
MCELOG_LICENSE = GPLv2
MCELOG_LICENSE_FILES = README

define MCELOG_BUILD_CMDS
	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) all
endef

define MCELOG_INSTALL_TARGET_CMDS
	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) DESTDIR=$(TARGET_DIR) install
endef

$(eval $(generic-package))