Commit 24c2535f authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Peter Korsgaard
Browse files

package/dosfstools: add host-package selection



Add dosfstools as a host-package selection in the menuconfig.

Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 59d1fe58
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
menu "Host utilities"

source "package/dfu-util/Config.in.host"
source "package/dosfstools/Config.in.host"
source "package/e2fsprogs/Config.in.host"
source "package/lpc3250loader/Config.in.host"
source "package/omap-u-boot-utils/Config.in.host"
+6 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_HOST_DOSFSTOOLS
	bool "host dosfstools"
	help
	  Tools for creating and checking DOS FAT filesystems.
	  
	  http://www.daniel-baumann.ch/software/dosfstools/
+9 −0
Original line number Diff line number Diff line
@@ -43,4 +43,13 @@ define DOSFSTOOLS_CLEAN_CMDS
	-$(MAKE) -C $(@D) clean
endef

define HOST_DOSFSTOOLS_BUILD_CMDS
	$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D)
endef

define HOST_DOSFSTOOLS_INSTALL_CMDS
	$(MAKE) -C $(@D) $(HOST_CONFIGURE_OPTS) PREFIX=$(HOST_DIR)/usr install
endef

$(eval $(generic-package))
$(eval $(host-generic-package))