mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <mol@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Bastian Krause <bst@pengutronix.de>
Subject: Re: [ptxdist] [APPLIED] rauc-hawkbit-updater: new package
Date: Tue, 06 Oct 2020 10:18:51 +0200	[thread overview]
Message-ID: <E1kPiBP-0005Vg-IC@dude02.hi.pengutronix.de> (raw)
In-Reply-To: <20200924165621.24177-2-bst@pengutronix.de>

Thanks, applied as 399ce56f9106b1c671fbab3dc98db6c0db670109.

Michael

[sent from post-receive hook]

On Tue, 06 Oct 2020 10:18:51 +0200, Bastian Krause <bst@pengutronix.de> wrote:
> Signed-off-by: Bastian Krause <bst@pengutronix.de>
> Message-Id: <20200924165621.24177-2-bst@pengutronix.de>
> [mol: use menuconfig instead of config]
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/projectroot/etc/rauc-hawkbit-updater/config.conf b/projectroot/etc/rauc-hawkbit-updater/config.conf
> new file mode 100644
> index 000000000000..a1dfa97efecf
> --- /dev/null
> +++ b/projectroot/etc/rauc-hawkbit-updater/config.conf
> @@ -0,0 +1,43 @@
> +[client]
> +# host or IP and optional port
> +hawkbit_server            = 10.10.0.254:8080
> +
> +# true = HTTPS, false = HTTP
> +ssl                       = false
> +
> +# validate ssl certificate (only use if ssl is true)
> +ssl_verify                = false
> +
> +# Tenant id
> +tenant_id                 = DEFAULT
> +
> +# Target name (controller id)
> +target_name               = test-target
> +
> +# Security token
> +auth_token                = cb115a721af28f781b493fa467819ef5
> +
> +# Or gateway_token can be used instead of auth_token
> +#gateway_token             = cb115a721af28f781b493fa467819ef5
> +
> +# Temporay file RAUC bundle should be downloaded to
> +bundle_download_location  = /tmp/bundle.raucb
> +
> +# time in seconds to wait before retrying
> +retry_wait                = 60
> +
> +# connection timeout in seconds
> +connect_timeout           = 20
> +
> +# request timeout in seconds
> +timeout                   = 60
> +
> +# debug, info, message, critical, error, fatal
> +log_level                 = message
> +
> +# Every key / value under [device] is sent to HawkBit (target attributes),
> +# and can be used in target filter.
> +[device]
> +mac_address               = ff:ff:ff:ff:ff:ff
> +hw_revision               = 2
> +model                     = T1
> diff --git a/rules/rauc-hawkbit-updater.in b/rules/rauc-hawkbit-updater.in
> new file mode 100644
> index 000000000000..267bffc5b1da
> --- /dev/null
> +++ b/rules/rauc-hawkbit-updater.in
> @@ -0,0 +1,26 @@
> +## SECTION=applications
> +
> +menuconfig RAUC_HAWKBIT_UPDATER
> +	tristate
> +	prompt "rauc-hawkbit-updater          "
> +	select HOST_CMAKE
> +	select DBUS
> +	select JSON_GLIB
> +	select LIBCURL
> +	select LIBCURL_HTTP
> +	select LIBCURL_SSL
> +	select RAUC
> +	select RAUC_SERVICE
> +	select SYSTEMD		if RAUC_HAWKBIT_UPDATER_SYSTEMD_UNIT
> +	help
> +	  Daemon operating as an interface between the RAUC D-Bus API and the hawkBit DDI API.
> +
> +if RAUC_HAWKBIT_UPDATER
> +
> +config RAUC_HAWKBIT_UPDATER_SYSTEMD_UNIT
> +	bool
> +	default y
> +	depends on INITMETHOD_SYSTEMD
> +	prompt "install and enable systemd service file"
> +
> +endif
> diff --git a/rules/rauc-hawkbit-updater.make b/rules/rauc-hawkbit-updater.make
> new file mode 100644
> index 000000000000..5a9bfce71f33
> --- /dev/null
> +++ b/rules/rauc-hawkbit-updater.make
> @@ -0,0 +1,72 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2020 by Bastian Krause <bst@pengutronix.de>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_RAUC_HAWKBIT_UPDATER) += rauc-hawkbit-updater
> +
> +#
> +# Paths and names
> +#
> +RAUC_HAWKBIT_UPDATER_VERSION		:= 2020-09-09-gb38f5a5
> +RAUC_HAWKBIT_UPDATER_MD5		:= c2accd9bdcab813dbf9850e6ed63085e
> +RAUC_HAWKBIT_UPDATER			:= rauc-hawkbit-updater-$(RAUC_HAWKBIT_UPDATER_VERSION)
> +RAUC_HAWKBIT_UPDATER_SUFFIX		:= tar.gz
> +RAUC_HAWKBIT_UPDATER_URL		:= https://github.com/rauc/rauc-hawkbit-updater/archive/$(RAUC_HAWKBIT_UPDATER).$(RAUC_HAWKBIT_UPDATER_SUFFIX)
> +RAUC_HAWKBIT_UPDATER_SOURCE		:= $(SRCDIR)/$(RAUC_HAWKBIT_UPDATER).$(RAUC_HAWKBIT_UPDATER_SUFFIX)
> +RAUC_HAWKBIT_UPDATER_DIR		:= $(BUILDDIR)/$(RAUC_HAWKBIT_UPDATER)
> +RAUC_HAWKBIT_UPDATER_LICENSE		:= LGPL-2.1-or-later
> +RAUC_HAWKBIT_UPDATER_LICENSE_FILES	:= file://LICENSE;md5=1a6d268fd218675ffea8be556788b780
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +#
> +# cmake
> +#
> +RAUC_HAWKBIT_UPDATER_CONF_TOOL	:= cmake
> +RAUC_HAWKBIT_UPDATER_CONF_OPT	:= \
> +	$(CROSS_CMAKE_USR) \
> +	-DWITH_SYSTEMD=$(call ptx/onoff,PTXCONF_RAUC_HAWKBIT_UPDATER_SYSTEMD_UNIT) \
> +	-DBUILD_DOC=OFF \
> +	-DQA_BUILD=ON \
> +	--with-systemdsystemunitdir=/usr/lib/systemd/system
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/rauc-hawkbit-updater.targetinstall:
> +	@$(call targetinfo)
> +
> +	@$(call install_init, rauc-hawkbit-updater)
> +	@$(call install_fixup, rauc-hawkbit-updater,PRIORITY,optional)
> +	@$(call install_fixup, rauc-hawkbit-updater,SECTION,base)
> +	@$(call install_fixup, rauc-hawkbit-updater,AUTHOR,"Bastian Krause <bst@pengutronix.de>")
> +	@$(call install_fixup, rauc-hawkbit-updater,DESCRIPTION,missing)
> +
> +	@$(call install_copy, rauc-hawkbit-updater, 0, 0, 0755, -, \
> +		/usr/bin/rauc-hawkbit-updater)
> +
> +	@$(call install_alternative, rauc-hawkbit-updater, 0, 0, 0644, \
> +		/etc/rauc-hawkbit-updater/config.conf)
> +
> +ifdef PTXCONF_RAUC_HAWKBIT_UPDATER_SYSTEMD_UNIT
> +	@$(call install_alternative, rauc-hawkbit-updater, 0, 0, 0644, \
> +		/usr/lib/systemd/system/rauc-hawkbit-updater.service)
> +	@$(call install_link, rauc-hawkbit-updater, ../rauc-hawkbit-updater.service, \
> +		/usr/lib/systemd/system/multi-user.target.wants/rauc-hawkbit-updater.service)
> +endif
> +
> +	@$(call install_finish, rauc-hawkbit-updater)
> +
> +	@$(call touch)
> +
> +# vim: syntax=make

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

  reply	other threads:[~2020-10-06  8:18 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-24 16:56 [ptxdist] [PATCH v2 1/2] passwd/group: add rauc-hawkbit user/group Bastian Krause
2020-09-24 16:56 ` [ptxdist] [PATCH v2 2/2] rauc-hawkbit-updater: new package Bastian Krause
2020-10-06  8:18   ` Michael Olbrich [this message]
2020-10-06  8:18 ` [ptxdist] [APPLIED] passwd/group: add rauc-hawkbit user/group Michael Olbrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1kPiBP-0005Vg-IC@dude02.hi.pengutronix.de \
    --to=mol@pengutronix.de \
    --cc=bst@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox