* [ptxdist] [PATCH v3] U-Boot: Add option to disable OOT builds @ 2021-11-30 10:39 Christian Melki 2021-11-30 13:16 ` Alexander Dahl 2021-12-08 7:24 ` Michael Olbrich 0 siblings, 2 replies; 5+ messages in thread From: Christian Melki @ 2021-11-30 10:39 UTC (permalink / raw) To: ptxdist This option sometimes breaks builds with various external dependencies. Especially vendor trees that have sourcedir path references. Signed-off-by: Christian Melki <christian.melki@t2data.com> --- platforms/u-boot.in | 10 ++++++++++ rules/u-boot.make | 12 ++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/platforms/u-boot.in b/platforms/u-boot.in index 410391fe8..0d8213f45 100644 --- a/platforms/u-boot.in +++ b/platforms/u-boot.in @@ -20,6 +20,16 @@ config U_BOOT_MD5 string prompt "U-Boot source md5" +config U_BOOT_BUILD_OOT + prompt "Out of tree build" + default y + bool + help + U-Boot is usually built out of tree. + But for some builds, f.ex. with firmware blobs, out of tree builds + can break because of vendors using source paths to files. + This is mostly a workaround for those type of builds. + choice prompt "config system" default U_BOOT_CONFIGSYSTEM_LEGACY diff --git a/rules/u-boot.make b/rules/u-boot.make index 38c32bf27..2c6a1ada4 100644 --- a/rules/u-boot.make +++ b/rules/u-boot.make @@ -23,9 +23,14 @@ U_BOOT_SUFFIX := tar.bz2 U_BOOT_URL := https://ftp.denx.de/pub/u-boot/$(U_BOOT).$(U_BOOT_SUFFIX) U_BOOT_SOURCE := $(SRCDIR)/$(U_BOOT).$(U_BOOT_SUFFIX) U_BOOT_DIR := $(BUILDDIR)/$(U_BOOT) -U_BOOT_BUILD_DIR := $(U_BOOT_DIR)-build U_BOOT_DEVPKG := NO +ifdef PTXCONF_U_BOOT_BUILD_OOT +U_BOOT_BUILD_DIR := $(U_BOOT_DIR)-build U_BOOT_BUILD_OOT := KEEP +else +U_BOOT_BUILD_DIR := $(U_BOOT_DIR) +U_BOOT_BUILD_OOT := NO +endif ifdef PTXCONF_U_BOOT_CONFIGSYSTEM_KCONFIG U_BOOT_CONFIG := $(call ptx/in-platformconfigdir, \ @@ -54,10 +59,13 @@ U_BOOT_WRAPPER_BLACKLIST := \ U_BOOT_CONF_OPT := \ -C $(U_BOOT_DIR) \ - O=$(U_BOOT_BUILD_DIR) \ V=$(PTXDIST_VERBOSE) \ $(call remove_quotes,$(PTXCONF_U_BOOT_CUSTOM_MAKE_OPTS)) +ifdef PTXCONF_U_BOOT_BUILD_OOT +U_BOOT_CONF_OPT += O=$(U_BOOT_BUILD_DIR) +endif + U_BOOT_MAKE_ENV := \ CROSS_COMPILE=$(BOOTLOADER_CROSS_COMPILE) \ HOSTCC=$(HOSTCC) -- 2.30.2 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH v3] U-Boot: Add option to disable OOT builds 2021-11-30 10:39 [ptxdist] [PATCH v3] U-Boot: Add option to disable OOT builds Christian Melki @ 2021-11-30 13:16 ` Alexander Dahl 2021-12-08 7:24 ` Michael Olbrich 1 sibling, 0 replies; 5+ messages in thread From: Alexander Dahl @ 2021-11-30 13:16 UTC (permalink / raw) To: Christian Melki; +Cc: ptxdist Hello Christian, Am Tue, Nov 30, 2021 at 11:39:26AM +0100 schrieb Christian Melki: > This option sometimes breaks builds with various external dependencies. > Especially vendor trees that have sourcedir path references. > > Signed-off-by: Christian Melki <christian.melki@t2data.com> > --- > platforms/u-boot.in | 10 ++++++++++ > rules/u-boot.make | 12 ++++++++++-- > 2 files changed, 20 insertions(+), 2 deletions(-) > > diff --git a/platforms/u-boot.in b/platforms/u-boot.in > index 410391fe8..0d8213f45 100644 > --- a/platforms/u-boot.in > +++ b/platforms/u-boot.in > @@ -20,6 +20,16 @@ config U_BOOT_MD5 > string > prompt "U-Boot source md5" > > +config U_BOOT_BUILD_OOT > + prompt "Out of tree build" > + default y > + bool > + help > + U-Boot is usually built out of tree. > + But for some builds, f.ex. with firmware blobs, out of tree builds > + can break because of vendors using source paths to files. > + This is mostly a workaround for those type of builds. > + > choice > prompt "config system" > default U_BOOT_CONFIGSYSTEM_LEGACY > diff --git a/rules/u-boot.make b/rules/u-boot.make > index 38c32bf27..2c6a1ada4 100644 > --- a/rules/u-boot.make > +++ b/rules/u-boot.make > @@ -23,9 +23,14 @@ U_BOOT_SUFFIX := tar.bz2 > U_BOOT_URL := https://ftp.denx.de/pub/u-boot/$(U_BOOT).$(U_BOOT_SUFFIX) > U_BOOT_SOURCE := $(SRCDIR)/$(U_BOOT).$(U_BOOT_SUFFIX) > U_BOOT_DIR := $(BUILDDIR)/$(U_BOOT) > -U_BOOT_BUILD_DIR := $(U_BOOT_DIR)-build > U_BOOT_DEVPKG := NO > +ifdef PTXCONF_U_BOOT_BUILD_OOT > +U_BOOT_BUILD_DIR := $(U_BOOT_DIR)-build > U_BOOT_BUILD_OOT := KEEP > +else > +U_BOOT_BUILD_DIR := $(U_BOOT_DIR) > +U_BOOT_BUILD_OOT := NO > +endif > > ifdef PTXCONF_U_BOOT_CONFIGSYSTEM_KCONFIG > U_BOOT_CONFIG := $(call ptx/in-platformconfigdir, \ > @@ -54,10 +59,13 @@ U_BOOT_WRAPPER_BLACKLIST := \ > > U_BOOT_CONF_OPT := \ > -C $(U_BOOT_DIR) \ > - O=$(U_BOOT_BUILD_DIR) \ > V=$(PTXDIST_VERBOSE) \ > $(call remove_quotes,$(PTXCONF_U_BOOT_CUSTOM_MAKE_OPTS)) > > +ifdef PTXCONF_U_BOOT_BUILD_OOT > +U_BOOT_CONF_OPT += O=$(U_BOOT_BUILD_DIR) > +endif > + > U_BOOT_MAKE_ENV := \ > CROSS_COMPILE=$(BOOTLOADER_CROSS_COMPILE) \ > HOSTCC=$(HOSTCC) LGTM. Tested-by: Alexander Dahl <ada@thorsis.com> Greets Alex _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH v3] U-Boot: Add option to disable OOT builds 2021-11-30 10:39 [ptxdist] [PATCH v3] U-Boot: Add option to disable OOT builds Christian Melki 2021-11-30 13:16 ` Alexander Dahl @ 2021-12-08 7:24 ` Michael Olbrich 2021-12-08 7:32 ` Alexander Dahl 1 sibling, 1 reply; 5+ messages in thread From: Michael Olbrich @ 2021-12-08 7:24 UTC (permalink / raw) To: Christian Melki; +Cc: ptxdist On Tue, Nov 30, 2021 at 11:39:26AM +0100, Christian Melki wrote: > This option sometimes breaks builds with various external dependencies. > Especially vendor trees that have sourcedir path references. Hmmm, I don't really like this, but I do understand why it can be necessary :-/. > Signed-off-by: Christian Melki <christian.melki@t2data.com> > --- > platforms/u-boot.in | 10 ++++++++++ > rules/u-boot.make | 12 ++++++++++-- > 2 files changed, 20 insertions(+), 2 deletions(-) > > diff --git a/platforms/u-boot.in b/platforms/u-boot.in > index 410391fe8..0d8213f45 100644 > --- a/platforms/u-boot.in > +++ b/platforms/u-boot.in > @@ -20,6 +20,16 @@ config U_BOOT_MD5 > string > prompt "U-Boot source md5" > > +config U_BOOT_BUILD_OOT > + prompt "Out of tree build" > + default y > + bool > + help > + U-Boot is usually built out of tree. > + But for some builds, f.ex. with firmware blobs, out of tree builds > + can break because of vendors using source paths to files. > + This is mostly a workaround for those type of builds. > + > choice > prompt "config system" > default U_BOOT_CONFIGSYSTEM_LEGACY > diff --git a/rules/u-boot.make b/rules/u-boot.make > index 38c32bf27..2c6a1ada4 100644 > --- a/rules/u-boot.make > +++ b/rules/u-boot.make > @@ -23,9 +23,14 @@ U_BOOT_SUFFIX := tar.bz2 > U_BOOT_URL := https://ftp.denx.de/pub/u-boot/$(U_BOOT).$(U_BOOT_SUFFIX) > U_BOOT_SOURCE := $(SRCDIR)/$(U_BOOT).$(U_BOOT_SUFFIX) > U_BOOT_DIR := $(BUILDDIR)/$(U_BOOT) > -U_BOOT_BUILD_DIR := $(U_BOOT_DIR)-build > U_BOOT_DEVPKG := NO > +ifdef PTXCONF_U_BOOT_BUILD_OOT > +U_BOOT_BUILD_DIR := $(U_BOOT_DIR)-build > U_BOOT_BUILD_OOT := KEEP > +else > +U_BOOT_BUILD_DIR := $(U_BOOT_DIR) > +U_BOOT_BUILD_OOT := NO I prefere: U_BOOT_BUILD_DIR := $(U_BOOT_DIR)$(call ptx/ifdef, PTXCONF_U_BOOT_BUILD_OOT,-build) U_BOOT_BUILD_OOT := $(call ptx/ifdef, PTXCONF_U_BOOT_BUILD_OOT,KEEP,NO) to keep it more compact. > +endif > > ifdef PTXCONF_U_BOOT_CONFIGSYSTEM_KCONFIG > U_BOOT_CONFIG := $(call ptx/in-platformconfigdir, \ > @@ -54,10 +59,13 @@ U_BOOT_WRAPPER_BLACKLIST := \ > > U_BOOT_CONF_OPT := \ > -C $(U_BOOT_DIR) \ > - O=$(U_BOOT_BUILD_DIR) \ Right. In theory it should still work if O= is used unconditionally. Because U_BOOT_BUILD_DIR points to the source tree in the non-OOT case. But who knowns what happens in broken vendor trees. But wrap it with ptx/ifdef instead to keep it here. Michael > V=$(PTXDIST_VERBOSE) \ > $(call remove_quotes,$(PTXCONF_U_BOOT_CUSTOM_MAKE_OPTS)) > > +ifdef PTXCONF_U_BOOT_BUILD_OOT > +U_BOOT_CONF_OPT += O=$(U_BOOT_BUILD_DIR) > +endif > + > U_BOOT_MAKE_ENV := \ > CROSS_COMPILE=$(BOOTLOADER_CROSS_COMPILE) \ > HOSTCC=$(HOSTCC) > -- > 2.30.2 > > > _______________________________________________ > ptxdist mailing list > ptxdist@pengutronix.de > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH v3] U-Boot: Add option to disable OOT builds 2021-12-08 7:24 ` Michael Olbrich @ 2021-12-08 7:32 ` Alexander Dahl 2021-12-08 8:33 ` Michael Olbrich 0 siblings, 1 reply; 5+ messages in thread From: Alexander Dahl @ 2021-12-08 7:32 UTC (permalink / raw) To: Michael Olbrich; +Cc: Christian Melki, ptxdist Hello Michael, Am Wed, Dec 08, 2021 at 08:24:06AM +0100 schrieb Michael Olbrich: > On Tue, Nov 30, 2021 at 11:39:26AM +0100, Christian Melki wrote: > > This option sometimes breaks builds with various external dependencies. > > Especially vendor trees that have sourcedir path references. > > Hmmm, I don't really like this, but I do understand why it can be > necessary :-/. > > > Signed-off-by: Christian Melki <christian.melki@t2data.com> > > --- > > platforms/u-boot.in | 10 ++++++++++ > > rules/u-boot.make | 12 ++++++++++-- > > 2 files changed, 20 insertions(+), 2 deletions(-) > > > > diff --git a/platforms/u-boot.in b/platforms/u-boot.in > > index 410391fe8..0d8213f45 100644 > > --- a/platforms/u-boot.in > > +++ b/platforms/u-boot.in > > @@ -20,6 +20,16 @@ config U_BOOT_MD5 > > string > > prompt "U-Boot source md5" > > > > +config U_BOOT_BUILD_OOT > > + prompt "Out of tree build" > > + default y > > + bool > > + help > > + U-Boot is usually built out of tree. > > + But for some builds, f.ex. with firmware blobs, out of tree builds > > + can break because of vendors using source paths to files. > > + This is mostly a workaround for those type of builds. > > + > > choice > > prompt "config system" > > default U_BOOT_CONFIGSYSTEM_LEGACY > > diff --git a/rules/u-boot.make b/rules/u-boot.make > > index 38c32bf27..2c6a1ada4 100644 > > --- a/rules/u-boot.make > > +++ b/rules/u-boot.make > > @@ -23,9 +23,14 @@ U_BOOT_SUFFIX := tar.bz2 > > U_BOOT_URL := https://ftp.denx.de/pub/u-boot/$(U_BOOT).$(U_BOOT_SUFFIX) > > U_BOOT_SOURCE := $(SRCDIR)/$(U_BOOT).$(U_BOOT_SUFFIX) > > U_BOOT_DIR := $(BUILDDIR)/$(U_BOOT) > > -U_BOOT_BUILD_DIR := $(U_BOOT_DIR)-build > > U_BOOT_DEVPKG := NO > > +ifdef PTXCONF_U_BOOT_BUILD_OOT > > +U_BOOT_BUILD_DIR := $(U_BOOT_DIR)-build > > U_BOOT_BUILD_OOT := KEEP > > +else > > +U_BOOT_BUILD_DIR := $(U_BOOT_DIR) > > +U_BOOT_BUILD_OOT := NO > > I prefere: > > U_BOOT_BUILD_DIR := $(U_BOOT_DIR)$(call ptx/ifdef, PTXCONF_U_BOOT_BUILD_OOT,-build) > U_BOOT_BUILD_OOT := $(call ptx/ifdef, PTXCONF_U_BOOT_BUILD_OOT,KEEP,NO) > > to keep it more compact. > > > +endif > > > > ifdef PTXCONF_U_BOOT_CONFIGSYSTEM_KCONFIG > > U_BOOT_CONFIG := $(call ptx/in-platformconfigdir, \ > > @@ -54,10 +59,13 @@ U_BOOT_WRAPPER_BLACKLIST := \ > > > > U_BOOT_CONF_OPT := \ > > -C $(U_BOOT_DIR) \ > > - O=$(U_BOOT_BUILD_DIR) \ > > Right. In theory it should still work if O= is used unconditionally. > Because U_BOOT_BUILD_DIR points to the source tree in the non-OOT case. But > who knowns what happens in broken vendor trees. > > But wrap it with ptx/ifdef instead to keep it here. This is done few lines later, slightly different … > > Michael > > > V=$(PTXDIST_VERBOSE) \ > > $(call remove_quotes,$(PTXCONF_U_BOOT_CUSTOM_MAKE_OPTS)) > > > > +ifdef PTXCONF_U_BOOT_BUILD_OOT > > +U_BOOT_CONF_OPT += O=$(U_BOOT_BUILD_DIR) > > +endif > > + ^^ Here. Greets Alex > > U_BOOT_MAKE_ENV := \ > > CROSS_COMPILE=$(BOOTLOADER_CROSS_COMPILE) \ > > HOSTCC=$(HOSTCC) > > -- > > 2.30.2 > > > > > > _______________________________________________ > > ptxdist mailing list > > ptxdist@pengutronix.de > > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de > > > > -- > Pengutronix e.K. | | > Steuerwalder Str. 21 | http://www.pengutronix.de/ | > 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | > Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | > > _______________________________________________ > ptxdist mailing list > ptxdist@pengutronix.de > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH v3] U-Boot: Add option to disable OOT builds 2021-12-08 7:32 ` Alexander Dahl @ 2021-12-08 8:33 ` Michael Olbrich 0 siblings, 0 replies; 5+ messages in thread From: Michael Olbrich @ 2021-12-08 8:33 UTC (permalink / raw) To: Christian Melki, ptxdist On Wed, Dec 08, 2021 at 08:32:15AM +0100, Alexander Dahl wrote: > Hello Michael, > > Am Wed, Dec 08, 2021 at 08:24:06AM +0100 schrieb Michael Olbrich: > > On Tue, Nov 30, 2021 at 11:39:26AM +0100, Christian Melki wrote: > > > This option sometimes breaks builds with various external dependencies. > > > Especially vendor trees that have sourcedir path references. > > > > Hmmm, I don't really like this, but I do understand why it can be > > necessary :-/. > > > > > Signed-off-by: Christian Melki <christian.melki@t2data.com> > > > --- > > > platforms/u-boot.in | 10 ++++++++++ > > > rules/u-boot.make | 12 ++++++++++-- > > > 2 files changed, 20 insertions(+), 2 deletions(-) > > > > > > diff --git a/platforms/u-boot.in b/platforms/u-boot.in > > > index 410391fe8..0d8213f45 100644 > > > --- a/platforms/u-boot.in > > > +++ b/platforms/u-boot.in > > > @@ -20,6 +20,16 @@ config U_BOOT_MD5 > > > string > > > prompt "U-Boot source md5" > > > > > > +config U_BOOT_BUILD_OOT > > > + prompt "Out of tree build" > > > + default y > > > + bool > > > + help > > > + U-Boot is usually built out of tree. > > > + But for some builds, f.ex. with firmware blobs, out of tree builds > > > + can break because of vendors using source paths to files. > > > + This is mostly a workaround for those type of builds. > > > + > > > choice > > > prompt "config system" > > > default U_BOOT_CONFIGSYSTEM_LEGACY > > > diff --git a/rules/u-boot.make b/rules/u-boot.make > > > index 38c32bf27..2c6a1ada4 100644 > > > --- a/rules/u-boot.make > > > +++ b/rules/u-boot.make > > > @@ -23,9 +23,14 @@ U_BOOT_SUFFIX := tar.bz2 > > > U_BOOT_URL := https://ftp.denx.de/pub/u-boot/$(U_BOOT).$(U_BOOT_SUFFIX) > > > U_BOOT_SOURCE := $(SRCDIR)/$(U_BOOT).$(U_BOOT_SUFFIX) > > > U_BOOT_DIR := $(BUILDDIR)/$(U_BOOT) > > > -U_BOOT_BUILD_DIR := $(U_BOOT_DIR)-build > > > U_BOOT_DEVPKG := NO > > > +ifdef PTXCONF_U_BOOT_BUILD_OOT > > > +U_BOOT_BUILD_DIR := $(U_BOOT_DIR)-build > > > U_BOOT_BUILD_OOT := KEEP > > > +else > > > +U_BOOT_BUILD_DIR := $(U_BOOT_DIR) > > > +U_BOOT_BUILD_OOT := NO > > > > I prefere: > > > > U_BOOT_BUILD_DIR := $(U_BOOT_DIR)$(call ptx/ifdef, PTXCONF_U_BOOT_BUILD_OOT,-build) > > U_BOOT_BUILD_OOT := $(call ptx/ifdef, PTXCONF_U_BOOT_BUILD_OOT,KEEP,NO) > > > > to keep it more compact. > > > > > +endif > > > > > > ifdef PTXCONF_U_BOOT_CONFIGSYSTEM_KCONFIG > > > U_BOOT_CONFIG := $(call ptx/in-platformconfigdir, \ > > > @@ -54,10 +59,13 @@ U_BOOT_WRAPPER_BLACKLIST := \ > > > > > > U_BOOT_CONF_OPT := \ > > > -C $(U_BOOT_DIR) \ > > > - O=$(U_BOOT_BUILD_DIR) \ > > > > Right. In theory it should still work if O= is used unconditionally. > > Because U_BOOT_BUILD_DIR points to the source tree in the non-OOT case. But > > who knowns what happens in broken vendor trees. > > > > But wrap it with ptx/ifdef instead to keep it here. > > This is done few lines later, slightly different … I know. I meant, wrap it here instead of doing it below with the 'ifdef'. Michael > > > V=$(PTXDIST_VERBOSE) \ > > > $(call remove_quotes,$(PTXCONF_U_BOOT_CUSTOM_MAKE_OPTS)) > > > > > > +ifdef PTXCONF_U_BOOT_BUILD_OOT > > > +U_BOOT_CONF_OPT += O=$(U_BOOT_BUILD_DIR) > > > +endif > > > + > > ^^ Here. > > Greets > Alex > > > > U_BOOT_MAKE_ENV := \ > > > CROSS_COMPILE=$(BOOTLOADER_CROSS_COMPILE) \ > > > HOSTCC=$(HOSTCC) > > > -- > > > 2.30.2 > > > > > > > > > _______________________________________________ > > > ptxdist mailing list > > > ptxdist@pengutronix.de > > > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de > > > > > > > -- > > Pengutronix e.K. | | > > Steuerwalder Str. 21 | http://www.pengutronix.de/ | > > 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | > > Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | > > > > _______________________________________________ > > ptxdist mailing list > > ptxdist@pengutronix.de > > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de > > _______________________________________________ > ptxdist mailing list > ptxdist@pengutronix.de > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-12-08 8:33 UTC | newest] Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2021-11-30 10:39 [ptxdist] [PATCH v3] U-Boot: Add option to disable OOT builds Christian Melki 2021-11-30 13:16 ` Alexander Dahl 2021-12-08 7:24 ` Michael Olbrich 2021-12-08 7:32 ` Alexander Dahl 2021-12-08 8:33 ` Michael Olbrich
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox