Commit 018a49a5 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

package: add flashbench

parent ee094dd1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -182,6 +182,7 @@ source "package/cifs-utils/Config.in"
source "package/cramfs/Config.in"
source "package/dosfstools/Config.in"
source "package/e2fsprogs/Config.in"
source "package/flashbench/Config.in"
source "package/genext2fs/Config.in"
source "package/genromfs/Config.in"
source "package/makedevs/Config.in"
+14 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_FLASHBENCH
	bool "flashbench"
	depends on BR2_LARGEFILE
	help
	  Flashbench - Identify characteristics of flash media.

	  This is the tool used to identify the properties of
	  SD cards and other media for the Linaro flash memory
	  survey.

	  https://wiki.linaro.org/WorkingGroups/KernelConsolidation/Projects/FlashCardSurvey

comment "flashbench requires a toolchain with LARGEFILE support"
	depends on !BR2_LARGEFILE
+22 −0
Original line number Diff line number Diff line
#############################################################
#
# flashbench
#
#############################################################

FLASHBENCH_VERSION = 2e30b1968a66147412f21002ea844122a0d5e2f0
FLASHBENCH_SITE = git://git.linaro.org/people/arnd/flashbench.git
FLASHBENCH_LICENSE = GPLv2
FLASHBENCH_LICENSE_FILES = COPYING

define FLASHBENCH_BUILD_CMDS
	$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
		LDFLAGS="$(TARGET_LDFLAGS) -lrt"
endef

define FLASHBENCH_INSTALL_TARGET_CMDS
	$(INSTALL) -m 755 -D $(@D)/flashbench $(TARGET_DIR)/usr/bin/flashbench
	$(INSTALL) -m 755 -D $(@D)/erase $(TARGET_DIR)/usr/bin/erase
endef

$(eval $(generic-package))