package/genimage: new host-only package

[Peter: wrap help text]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Yann E. MORIN 2013-03-17 08:19:43 +00:00 committed by Peter Korsgaard
parent 3007e58949
commit 1520628df1
3 changed files with 27 additions and 0 deletions

View File

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

View File

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

View File

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