Commit 1520628d authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Peter Korsgaard
Browse files

package/genimage: new host-only package

parent 3007e589
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ menu "Host utilities"
source "package/dfu-util/Config.in.host"
source "package/dosfstools/Config.in.host"
source "package/e2fsprogs/Config.in.host"
source "package/genimage/Config.in.host"
source "package/lpc3250loader/Config.in.host"
source "package/omap-u-boot-utils/Config.in.host"
source "package/openocd/Config.in.host"
+13 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_HOST_GENIMAGE
	bool "host genimage"
	help
	  genimage is a tool to generate multiple filesystem and flash
	  images from a given root filesystem tree. genimage is
	  intended to be run in a fakeroot environment.
	  
	  Configuration is done is a config file parsed by
	  libconfuse. Options like the path to tools can be given in
	  environment variables, the config file or commandline
	  switches.
	  
	  http://www.pengutronix.de/software/genimage/
+13 −0
Original line number Diff line number Diff line
#############################################################
#
# genimage
#
##############################################################

GENIMAGE_VERSION        = 4
GENIMAGE_SOURCE         = genimage-$(GENIMAGE_VERSION).tar.xz
GENIMAGE_SITE           = http://www.pengutronix.de/software/genimage/download/
GENIMAGE_DEPENDENCIES   = libconfuse
GENIMAGE_LICENSE        = GPLv2

$(eval $(host-autotools-package))