mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
package: add bonnie++
Closes #3379 A good filesystem performance benchmark program Signed-off-by: Martin Hicks <mort@bork.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
1445e1455e
commit
4bc799856b
3
CHANGES
3
CHANGES
@ -9,10 +9,11 @@
|
|||||||
quagga, readline, rsync, samba, squid, socat, squashfs, tslib,
|
quagga, readline, rsync, samba, squid, socat, squashfs, tslib,
|
||||||
webkit, xerces, xlib_xtrans, xorg-server, xterm, xz
|
webkit, xerces, xlib_xtrans, xorg-server, xterm, xz
|
||||||
|
|
||||||
New packages: can-utils, htop, libv4l
|
New packages: bonnie++, can-utils, htop, libv4l
|
||||||
|
|
||||||
Issues resolved (http://bugs.uclibc.org):
|
Issues resolved (http://bugs.uclibc.org):
|
||||||
|
|
||||||
|
#3379: New Package: bonnie++
|
||||||
#3445: Not working openssl-10.0.0d on 386sx
|
#3445: Not working openssl-10.0.0d on 386sx
|
||||||
#3451: fakeroot package: wrong FAKEROOT_SITE variable
|
#3451: fakeroot package: wrong FAKEROOT_SITE variable
|
||||||
#3457: alsamixergui: broken URL
|
#3457: alsamixergui: broken URL
|
||||||
|
@ -17,6 +17,7 @@ source "package/xz/Config.in"
|
|||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
menu "Debugging, profiling and benchmark"
|
menu "Debugging, profiling and benchmark"
|
||||||
|
source "package/bonnie/Config.in"
|
||||||
source "package/dhrystone/Config.in"
|
source "package/dhrystone/Config.in"
|
||||||
source "package/dmalloc/Config.in"
|
source "package/dmalloc/Config.in"
|
||||||
source "package/kexec/Config.in"
|
source "package/kexec/Config.in"
|
||||||
|
10
package/bonnie/Config.in
Normal file
10
package/bonnie/Config.in
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
config BR2_PACKAGE_BONNIE
|
||||||
|
bool "bonnie++"
|
||||||
|
depends on BR2_INSTALL_LIBSTDCPP
|
||||||
|
help
|
||||||
|
Filesystem tester
|
||||||
|
|
||||||
|
http://www.coker.com.au/bonnie++/
|
||||||
|
|
||||||
|
comment "bonnie++ requires a toolchain with C++ support enabled"
|
||||||
|
depends on !BR2_INSTALL_LIBSTDCPP
|
18
package/bonnie/bonnie.mk
Normal file
18
package/bonnie/bonnie.mk
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
#
|
||||||
|
# bonnie++
|
||||||
|
#
|
||||||
|
|
||||||
|
BONNIE_VERSION = 1.03e
|
||||||
|
BONNIE_SOURCE = bonnie++-$(BONNIE_VERSION).tgz
|
||||||
|
BONNIE_SITE = http://www.coker.com.au/bonnie++/
|
||||||
|
|
||||||
|
define BONNIE_INSTALL_TARGET_CMDS
|
||||||
|
install -D -m 755 $(@D)/bonnie++ $(TARGET_DIR)/usr/sbin/bonnie++
|
||||||
|
install -D -m 755 $(@D)/zcav $(TARGET_DIR)/usr/sbin/zcav
|
||||||
|
endef
|
||||||
|
|
||||||
|
define BONNIE_UNINSTALL_TARGET_CMDS
|
||||||
|
rm -f $(TARGET_DIR)/usr/sbin/bonnie++ $(TARGET_DIR)/usr/sbin/zcav
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call AUTOTARGETS,package,bonnie))
|
Loading…
x
Reference in New Issue
Block a user