From 9e59c4ab3883b4dc8b3a9b269524e62415780966 Mon Sep 17 00:00:00 2001 From: Heiko Thiery Date: Sat, 4 Jun 2022 13:55:00 +0200 Subject: [PATCH] package/rauc: add option to enable/disable streaming support RAUC 1.7 introduces streaming update support. Make this configurable and add required dependency to libnl. Signed-off-by: Heiko Thiery Signed-off-by: Thomas Petazzoni --- package/rauc/Config.in | 10 ++++++++++ package/rauc/rauc.mk | 7 +++++++ 2 files changed, 17 insertions(+) diff --git a/package/rauc/Config.in b/package/rauc/Config.in index 1170e50845..7451b29a55 100644 --- a/package/rauc/Config.in +++ b/package/rauc/Config.in @@ -40,6 +40,16 @@ config BR2_PACKAGE_RAUC_NETWORK This option enables support for updating firmware over the network using libcurl. +if BR2_PACKAGE_RAUC_NETWORK + +config BR2_PACKAGE_RAUC_STREAMING + bool "streaming update support" + select BR2_PACKAGE_LIBNL + help + This option enables support for streaming update mode. + +endif + config BR2_PACKAGE_RAUC_JSON bool "JSON output support" select BR2_PACKAGE_JSON_GLIB diff --git a/package/rauc/rauc.mk b/package/rauc/rauc.mk index 90b2317d4b..8bfb0b79ba 100644 --- a/package/rauc/rauc.mk +++ b/package/rauc/rauc.mk @@ -52,6 +52,13 @@ else RAUC_CONF_OPTS += --disable-json endif +ifeq ($(BR2_PACKAGE_RAUC_STREAMING),y) +RAUC_CONF_OPTS += --enable-streaming +RAUC_DEPENDENCIES += libnl +else +RAUC_CONF_OPTS += --disable-streaming +endif + HOST_RAUC_DEPENDENCIES = \ host-pkgconf \ host-openssl \