F: arch/Config.in.powerpc
F: package/kvm-unit-tests
+N: Dagg Stompler <daggs@gmx.com>
+F: package/meson-tools/
+
N: Daniel J. Leach <dleach@belcan.com>
F: package/dacapo/
source "package/lpc3250loader/Config.in.host"
source "package/lttng-babeltrace/Config.in.host"
source "package/mender-artifact/Config.in.host"
+ source "package/meson-tools/Config.in.host"
source "package/mfgtools/Config.in.host"
source "package/mkpasswd/Config.in.host"
source "package/mtd/Config.in.host"
--- /dev/null
+config BR2_PACKAGE_HOST_MESON_TOOLS
+ bool "host meson-tools"
+ help
+ meson-tools is a collection of tools for use with the
+ Amlogic Meson family of ARM based SoCs. It allows management
+ of signatures which are required for booting amlogic based
+ boards with u-boot.
+
+ https://github.com/afaerber/meson-tools
--- /dev/null
+################################################################################
+#
+# meson-tools
+#
+################################################################################
+
+HOST_MESON_TOOLS_VERSION = 0a02e2d34413f4bf9b15946352bc8c8ee13a5843
+HOST_MESON_TOOLS_SITE = $(call github,afaerber,meson-tools,$(HOST_MESON_TOOLS_VERSION))
+HOST_MESON_TOOLS_LICENSE = GPL-2.0+
+HOST_MESON_TOOLS_LICENSE_FILES = COPYING
+HOST_MESON_TOOLS_DEPENDENCIES = host-openssl
+
+HOST_MESON_TOOLS_PROGS = amlbootsig unamlbootsig amlinfo
+
+define HOST_MESON_TOOLS_BUILD_CMDS
+ $(HOST_MAKE_ENV) $(MAKE) -C $(@D) $(HOST_CONFIGURE_OPTS) \
+ LDFLAGS="$(HOST_LDFLAGS) -lssl -lcrypto"
+endef
+
+define HOST_MESON_TOOLS_INSTALL_CMDS
+ $(foreach f,$(HOST_MESON_TOOLS_PROGS), \
+ $(INSTALL) -D -m 0755 $(@D)/$(f) $(HOST_DIR)/bin/$(f)
+ )
+endef
+
+$(eval $(host-generic-package))