Thanks, applied as 61892ea7bc86eccb34a5ca4178f2b97d662d7575.

Michael

[sent from post-receive hook]

On Sat, 15 Jun 2024 16:58:55 +0200, Roland Hieber <r...@pengutronix.de> wrote:
> Signed-off-by: Roland Hieber <r...@pengutronix.de>
> Message-Id: <20240613100744.1899176-3-...@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbr...@pengutronix.de>
> 
> diff --git a/rules/nanopb.in b/rules/nanopb.in
> new file mode 100644
> index 000000000000..ca3ac1b2c1d8
> --- /dev/null
> +++ b/rules/nanopb.in
> @@ -0,0 +1,12 @@
> +## SECTION=system_libraries
> +
> +config NANOPB
> +     tristate
> +     select HOST_CMAKE
> +     select HOST_SYSTEM_PYTHON3
> +     select HOST_PROTOBUF
> +     prompt "nanopb"
> +     help
> +       Nanopb is a plain-C implementation of Google's Protocol Buffers data
> +       format. It is targeted at 32 bit microcontrollers, but is also fit for
> +       other embedded systems with tight memory constraints.
> diff --git a/rules/nanopb.make b/rules/nanopb.make
> new file mode 100644
> index 000000000000..4b592768830d
> --- /dev/null
> +++ b/rules/nanopb.make
> @@ -0,0 +1,41 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2024 by Roland Hieber <r...@pengutronix.de>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_NANOPB) += nanopb
> +
> +#
> +# Paths and names
> +#
> +NANOPB_VERSION               := 0.4.8
> +NANOPB_MD5           := 7c5305add7bf70b915c6eb1dc50cc20f
> +NANOPB                       := nanopb-$(NANOPB_VERSION)
> +NANOPB_SUFFIX                := tar.gz
> +NANOPB_URL           := 
> https://jpa.kapsi.fi/nanopb/download/$(NANOPB).$(NANOPB_SUFFIX)
> +NANOPB_SOURCE                := $(SRCDIR)/$(NANOPB).$(NANOPB_SUFFIX)
> +NANOPB_DIR           := $(BUILDDIR)/$(NANOPB)
> +NANOPB_LICENSE               := Zlib
> +NANOPB_LICENSE_FILES := 
> file://LICENSE.txt;md5=9db4b73a55a3994384112efcdb37c01f
> +
> +# 
> ----------------------------------------------------------------------------
> +# Prepare
> +# 
> ----------------------------------------------------------------------------
> +
> +#
> +# cmake
> +#
> +NANOPB_CONF_TOOL     := cmake
> +NANOPB_CONF_OPT              := \
> +     $(CROSS_CMAKE_USR)
> +
> +# Note: the package installs only headers, generators, and static libraries, 
> so
> +# no targetinstall stage is needed.
> +
> +# vim: syntax=make

Reply via email to