Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
bool "nbd client"
default y
help
- the client part of NBD.
+ The client part of NBD.
config BR2_PACKAGE_NBD_SERVER
bool "nbd server"
help
- the server part of NBD.
+ The server part of NBD.
+
+config BR2_PACKAGE_NBD_TRDUMP
+ bool "nbd trdump"
+ help
+ Utility to dump server logs in human-readable form.
endif
ifneq ($(BR2_PACKAGE_NBD_SERVER),y)
NBD_TOREMOVE += /usr/bin/nbd-server
endif
+ifneq ($(BR2_PACKAGE_NBD_TRDUMP),y)
+NBD_TOREMOVE += /usr/bin/nbd-trdump
+endif
define NBD_CLEANUP_AFTER_INSTALL
rm -f $(addprefix $(TARGET_DIR), $(NBD_TOREMOVE))