* [ptxdist] [PATCH] u-boot: Fix typos in cfghash calls
@ 2020-03-27 7:08 Alexander Dahl
2020-03-27 12:36 ` Michael Olbrich
2020-04-01 15:06 ` [ptxdist] " Michael Olbrich
0 siblings, 2 replies; 4+ messages in thread
From: Alexander Dahl @ 2020-03-27 7:08 UTC (permalink / raw)
To: ptxdist
Fixes: 189159b2c34b ("u-boot: use ptx/cfghash-file instead of manual tricks to rebuild the package")
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
rules/u-boot.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/u-boot.make b/rules/u-boot.make
index 66f40cad6..7454e9a0c 100644
--- a/rules/u-boot.make
+++ b/rules/u-boot.make
@@ -40,13 +40,13 @@ ifdef PTXCONF_U_BOOT_BOOT_SCRIPT
U_BOOT_BOOT_SCRIPT_TXT := $(call ptx/in-platformconfigdir, uboot.scr)
U_BOOT_BOOT_SCRIPT_BIN := $(call remove_quotes, \
$(PTXCONF_U_BOOT_BOOT_SCRIPT_ROOTFS_PATH))
-$(call ptx/cfghash-file, OS_RELEU_BOOT, $(U_BOOT_BOOT_SCRIPT_TXT))
+$(call ptx/cfghash-file, U_BOOT, $(U_BOOT_BOOT_SCRIPT_TXT))
endif
ifdef PTXCONF_U_BOOT_ENV_IMAGE_CUSTOM
U_BOOT_ENV_IMAGE_CUSTOM_SRC := $(call ptx/in-platformconfigdir, \
$(call remove_quotes, $(PTXCONF_U_BOOT_ENV_IMAGE_CUSTOM_SOURCE)))
-$(call ptx/cfghash-file, OS_RELEU_BOOT, $(U_BOOT_ENV_IMAGE_CUSTOM_SRC))
+$(call ptx/cfghash-file, U_BOOT, $(U_BOOT_ENV_IMAGE_CUSTOM_SRC))
endif
U_BOOT_WRAPPER_BLACKLIST := \
--
2.20.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ptxdist] [PATCH] u-boot: Fix typos in cfghash calls
2020-03-27 7:08 [ptxdist] [PATCH] u-boot: Fix typos in cfghash calls Alexander Dahl
@ 2020-03-27 12:36 ` Michael Olbrich
2020-03-27 13:21 ` Alexander Dahl
2020-04-01 15:06 ` [ptxdist] " Michael Olbrich
1 sibling, 1 reply; 4+ messages in thread
From: Michael Olbrich @ 2020-03-27 12:36 UTC (permalink / raw)
To: ptxdist
On Fri, Mar 27, 2020 at 08:08:31AM +0100, Alexander Dahl wrote:
> Fixes: 189159b2c34b ("u-boot: use ptx/cfghash-file instead of manual tricks to rebuild the package")
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> ---
> rules/u-boot.make | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/rules/u-boot.make b/rules/u-boot.make
> index 66f40cad6..7454e9a0c 100644
> --- a/rules/u-boot.make
> +++ b/rules/u-boot.make
> @@ -40,13 +40,13 @@ ifdef PTXCONF_U_BOOT_BOOT_SCRIPT
> U_BOOT_BOOT_SCRIPT_TXT := $(call ptx/in-platformconfigdir, uboot.scr)
> U_BOOT_BOOT_SCRIPT_BIN := $(call remove_quotes, \
> $(PTXCONF_U_BOOT_BOOT_SCRIPT_ROOTFS_PATH))
> -$(call ptx/cfghash-file, OS_RELEU_BOOT, $(U_BOOT_BOOT_SCRIPT_TXT))
> +$(call ptx/cfghash-file, U_BOOT, $(U_BOOT_BOOT_SCRIPT_TXT))
Ugh, right. I should have tested this a bit more.
Thanks for catching this.
Michael
> endif
>
> ifdef PTXCONF_U_BOOT_ENV_IMAGE_CUSTOM
> U_BOOT_ENV_IMAGE_CUSTOM_SRC := $(call ptx/in-platformconfigdir, \
> $(call remove_quotes, $(PTXCONF_U_BOOT_ENV_IMAGE_CUSTOM_SOURCE)))
> -$(call ptx/cfghash-file, OS_RELEU_BOOT, $(U_BOOT_ENV_IMAGE_CUSTOM_SRC))
> +$(call ptx/cfghash-file, U_BOOT, $(U_BOOT_ENV_IMAGE_CUSTOM_SRC))
> endif
>
> U_BOOT_WRAPPER_BLACKLIST := \
> --
> 2.20.1
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ptxdist] [PATCH] u-boot: Fix typos in cfghash calls
2020-03-27 12:36 ` Michael Olbrich
@ 2020-03-27 13:21 ` Alexander Dahl
0 siblings, 0 replies; 4+ messages in thread
From: Alexander Dahl @ 2020-03-27 13:21 UTC (permalink / raw)
To: ptxdist
[-- Attachment #1.1: Type: text/plain, Size: 1394 bytes --]
Hei hei,
On Fri, Mar 27, 2020 at 01:36:34PM +0100, Michael Olbrich wrote:
> On Fri, Mar 27, 2020 at 08:08:31AM +0100, Alexander Dahl wrote:
> > Fixes: 189159b2c34b ("u-boot: use ptx/cfghash-file instead of manual tricks to rebuild the package")
> > Signed-off-by: Alexander Dahl <ada@thorsis.com>
> > ---
> > rules/u-boot.make | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/rules/u-boot.make b/rules/u-boot.make
> > index 66f40cad6..7454e9a0c 100644
> > --- a/rules/u-boot.make
> > +++ b/rules/u-boot.make
> > @@ -40,13 +40,13 @@ ifdef PTXCONF_U_BOOT_BOOT_SCRIPT
> > U_BOOT_BOOT_SCRIPT_TXT := $(call ptx/in-platformconfigdir, uboot.scr)
> > U_BOOT_BOOT_SCRIPT_BIN := $(call remove_quotes, \
> > $(PTXCONF_U_BOOT_BOOT_SCRIPT_ROOTFS_PATH))
> > -$(call ptx/cfghash-file, OS_RELEU_BOOT, $(U_BOOT_BOOT_SCRIPT_TXT))
> > +$(call ptx/cfghash-file, U_BOOT, $(U_BOOT_BOOT_SCRIPT_TXT))
>
> Ugh, right. I should have tested this a bit more.
>
> Thanks for catching this.
FWIW, I also did not build test this … O:-)
Have a nice weekend.
Alex
--
/"\ ASCII RIBBON | »With the first link, the chain is forged. The first
\ / CAMPAIGN | speech censured, the first thought forbidden, the
X AGAINST | first freedom denied, chains us all irrevocably.«
/ \ HTML MAIL | (Jean-Luc Picard, quoting Judge Aaron Satie)
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 92 bytes --]
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ptxdist] u-boot: Fix typos in cfghash calls
2020-03-27 7:08 [ptxdist] [PATCH] u-boot: Fix typos in cfghash calls Alexander Dahl
2020-03-27 12:36 ` Michael Olbrich
@ 2020-04-01 15:06 ` Michael Olbrich
1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2020-04-01 15:06 UTC (permalink / raw)
To: ptxdist; +Cc: Alexander Dahl
Thanks, applied as 403cd8884939d430aecbecbf8db3d567a209ff64.
Michael
[sent from post-receive hook]
On Wed, 01 Apr 2020 17:06:43 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> Fixes: 189159b2c34b ("u-boot: use ptx/cfghash-file instead of manual tricks to rebuild the package")
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> ---
> rules/u-boot.make | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/rules/u-boot.make b/rules/u-boot.make
> index 66f40cad6..7454e9a0c 100644
> --- a/rules/u-boot.make
> +++ b/rules/u-boot.make
> @@ -40,13 +40,13 @@ ifdef PTXCONF_U_BOOT_BOOT_SCRIPT
> U_BOOT_BOOT_SCRIPT_TXT := $(call ptx/in-platformconfigdir, uboot.scr)
> U_BOOT_BOOT_SCRIPT_BIN := $(call remove_quotes, \
> $(PTXCONF_U_BOOT_BOOT_SCRIPT_ROOTFS_PATH))
> -$(call ptx/cfghash-file, OS_RELEU_BOOT, $(U_BOOT_BOOT_SCRIPT_TXT))
> +$(call ptx/cfghash-file, U_BOOT, $(U_BOOT_BOOT_SCRIPT_TXT))
> endif
>
> ifdef PTXCONF_U_BOOT_ENV_IMAGE_CUSTOM
> U_BOOT_ENV_IMAGE_CUSTOM_SRC := $(call ptx/in-platformconfigdir, \
> $(call remove_quotes, $(PTXCONF_U_BOOT_ENV_IMAGE_CUSTOM_SOURCE)))
> -$(call ptx/cfghash-file, OS_RELEU_BOOT, $(U_BOOT_ENV_IMAGE_CUSTOM_SRC))
> +$(call ptx/cfghash-file, U_BOOT, $(U_BOOT_ENV_IMAGE_CUSTOM_SRC))
> endif
>
> U_BOOT_WRAPPER_BLACKLIST := \
>
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-04-01 15:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-27 7:08 [ptxdist] [PATCH] u-boot: Fix typos in cfghash calls Alexander Dahl
2020-03-27 12:36 ` Michael Olbrich
2020-03-27 13:21 ` Alexander Dahl
2020-04-01 15:06 ` [ptxdist] " Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox