package: add flashbench

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2012-12-15 00:58:02 +01:00
parent ee094dd16f
commit 018a49a507
3 changed files with 37 additions and 0 deletions

View File

@ -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"

View File

@ -0,0 +1,14 @@
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

View File

@ -0,0 +1,22 @@
#############################################################
#
# 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))