DistroKit Mailinglist
 help / color / mirror / Atom feed
* [DistroKit] [PATCH v1 0/3] fix defaultenv build for stm32 and at91 barebox
@ 2022-04-08 10:41 Oleksij Rempel
  2022-04-08 10:41 ` [DistroKit] [PATCH v1 1/3] fixup! v7a: barebox-at91: build out of three Oleksij Rempel
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Oleksij Rempel @ 2022-04-08 10:41 UTC (permalink / raw)
  To: distrokit; +Cc: Oleksij Rempel

Conversion to OOT breaks defaultenv build for some barebox version.
This patches should fix it.

Oleksij Rempel (3):
  fixup! v7a: barebox-at91: build out of three
  fixup! v7a: barebox-stm32mp: build out of three
  fixup! v7a_noneon: barebox-at91: build out of three

 configs/platform-v7a/rules/barebox-at91.make        | 6 +++---
 configs/platform-v7a/rules/barebox-stm32mp.make     | 6 +++---
 configs/platform-v7a_noneon/rules/barebox-at91.make | 6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

-- 
2.30.2


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [DistroKit] [PATCH v1 1/3] fixup! v7a: barebox-at91: build out of three
  2022-04-08 10:41 [DistroKit] [PATCH v1 0/3] fix defaultenv build for stm32 and at91 barebox Oleksij Rempel
@ 2022-04-08 10:41 ` Oleksij Rempel
  2022-04-08 10:41 ` [DistroKit] [PATCH v1 2/3] fixup! v7a: barebox-stm32mp: " Oleksij Rempel
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Oleksij Rempel @ 2022-04-08 10:41 UTC (permalink / raw)
  To: distrokit; +Cc: Oleksij Rempel

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
 configs/platform-v7a/rules/barebox-at91.make | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configs/platform-v7a/rules/barebox-at91.make b/configs/platform-v7a/rules/barebox-at91.make
index 5199ab6..9563a23 100644
--- a/configs/platform-v7a/rules/barebox-at91.make
+++ b/configs/platform-v7a/rules/barebox-at91.make
@@ -67,10 +67,10 @@ endif
 
 $(STATEDIR)/barebox-at91.prepare: $(BAREBOX_AT91_CONFIG)
 	@$(call targetinfo)
-	@rm -f "$(BAREBOX_AT91_DIR)/.ptxdist-defaultenv"
-	@ln -s "$(call ptx/in-platformconfigdir, barebox-at91-defaultenv)" \
-		"$(BAREBOX_AT91_DIR)/.ptxdist-defaultenv"
 	@$(call world/prepare, BAREBOX_AT91)
+	@rm -f "$(BAREBOX_AT91_BUILD_DIR)/.ptxdist-defaultenv"
+	@ln -s "$(call ptx/in-platformconfigdir, barebox-at91-defaultenv)" \
+		"$(BAREBOX_AT91_BUILD_DIR)/.ptxdist-defaultenv"
 	@$(call touch)
 
 # ----------------------------------------------------------------------------
-- 
2.30.2


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [DistroKit] [PATCH v1 2/3] fixup! v7a: barebox-stm32mp: build out of three
  2022-04-08 10:41 [DistroKit] [PATCH v1 0/3] fix defaultenv build for stm32 and at91 barebox Oleksij Rempel
  2022-04-08 10:41 ` [DistroKit] [PATCH v1 1/3] fixup! v7a: barebox-at91: build out of three Oleksij Rempel
@ 2022-04-08 10:41 ` Oleksij Rempel
  2022-04-08 10:41 ` [DistroKit] [PATCH v1 3/3] fixup! v7a_noneon: barebox-at91: " Oleksij Rempel
  2022-04-09  7:37 ` [DistroKit] [PATCH v1 0/3] fix defaultenv build for stm32 and at91 barebox Robert Schwebel
  3 siblings, 0 replies; 5+ messages in thread
From: Oleksij Rempel @ 2022-04-08 10:41 UTC (permalink / raw)
  To: distrokit; +Cc: Oleksij Rempel

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
 configs/platform-v7a/rules/barebox-stm32mp.make | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configs/platform-v7a/rules/barebox-stm32mp.make b/configs/platform-v7a/rules/barebox-stm32mp.make
index 0cedc47..f120a09 100644
--- a/configs/platform-v7a/rules/barebox-stm32mp.make
+++ b/configs/platform-v7a/rules/barebox-stm32mp.make
@@ -64,10 +64,10 @@ endif
 
 $(STATEDIR)/barebox-stm32mp.prepare: $(BAREBOX_STM32MP_CONFIG)
 	@$(call targetinfo)
-	@rm -f "$(BAREBOX_STM32MP_DIR)/.ptxdist-defaultenv"
-	@ln -s "$(call ptx/in-platformconfigdir, barebox-stm32mp-defaultenv)" \
-		"$(BAREBOX_STM32MP_DIR)/.ptxdist-defaultenv"
 	@$(call world/prepare, BAREBOX_STM32MP)
+	@rm -f "$(BAREBOX_STM32MP_BUILD_DIR)/.ptxdist-defaultenv"
+	@ln -s "$(call ptx/in-platformconfigdir, barebox-stm32mp-defaultenv)" \
+		"$(BAREBOX_STM32MP_BUILD_DIR)/.ptxdist-defaultenv"
 	@$(call touch)
 
 # ----------------------------------------------------------------------------
-- 
2.30.2


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [DistroKit] [PATCH v1 3/3] fixup! v7a_noneon: barebox-at91: build out of three
  2022-04-08 10:41 [DistroKit] [PATCH v1 0/3] fix defaultenv build for stm32 and at91 barebox Oleksij Rempel
  2022-04-08 10:41 ` [DistroKit] [PATCH v1 1/3] fixup! v7a: barebox-at91: build out of three Oleksij Rempel
  2022-04-08 10:41 ` [DistroKit] [PATCH v1 2/3] fixup! v7a: barebox-stm32mp: " Oleksij Rempel
@ 2022-04-08 10:41 ` Oleksij Rempel
  2022-04-09  7:37 ` [DistroKit] [PATCH v1 0/3] fix defaultenv build for stm32 and at91 barebox Robert Schwebel
  3 siblings, 0 replies; 5+ messages in thread
From: Oleksij Rempel @ 2022-04-08 10:41 UTC (permalink / raw)
  To: distrokit; +Cc: Oleksij Rempel

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
 configs/platform-v7a_noneon/rules/barebox-at91.make | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configs/platform-v7a_noneon/rules/barebox-at91.make b/configs/platform-v7a_noneon/rules/barebox-at91.make
index 66d951e..a479f1e 100644
--- a/configs/platform-v7a_noneon/rules/barebox-at91.make
+++ b/configs/platform-v7a_noneon/rules/barebox-at91.make
@@ -65,10 +65,10 @@ endif
 
 $(STATEDIR)/barebox-at91.prepare: $(BAREBOX_AT91_CONFIG)
 	@$(call targetinfo)
-	@rm -f "$(BAREBOX_AT91_DIR)/.ptxdist-defaultenv"
-	@ln -s "$(call ptx/in-platformconfigdir, barebox-at91-defaultenv)" \
-		"$(BAREBOX_AT91_DIR)/.ptxdist-defaultenv"
 	@$(call world/prepare, BAREBOX_AT91)
+	@rm -f "$(BAREBOX_AT91_BUILD_DIR)/.ptxdist-defaultenv"
+	@ln -s "$(call ptx/in-platformconfigdir, barebox-at91-defaultenv)" \
+		"$(BAREBOX_AT91_BUILD_DIR)/.ptxdist-defaultenv"
 	@$(call touch)
 
 # ----------------------------------------------------------------------------
-- 
2.30.2


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [DistroKit] [PATCH v1 0/3] fix defaultenv build for stm32 and at91 barebox
  2022-04-08 10:41 [DistroKit] [PATCH v1 0/3] fix defaultenv build for stm32 and at91 barebox Oleksij Rempel
                   ` (2 preceding siblings ...)
  2022-04-08 10:41 ` [DistroKit] [PATCH v1 3/3] fixup! v7a_noneon: barebox-at91: " Oleksij Rempel
@ 2022-04-09  7:37 ` Robert Schwebel
  3 siblings, 0 replies; 5+ messages in thread
From: Robert Schwebel @ 2022-04-09  7:37 UTC (permalink / raw)
  To: Oleksij Rempel; +Cc: distrokit

On Fri, Apr 08, 2022 at 12:41:23PM +0200, Oleksij Rempel wrote:
> Conversion to OOT breaks defaultenv build for some barebox version.
> This patches should fix it.

Cooked in next overnight, looks good, applied and pushed to master.

rsc
-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Steuerwalder Str. 21                       | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-9    |

_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-04-09  7:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-08 10:41 [DistroKit] [PATCH v1 0/3] fix defaultenv build for stm32 and at91 barebox Oleksij Rempel
2022-04-08 10:41 ` [DistroKit] [PATCH v1 1/3] fixup! v7a: barebox-at91: build out of three Oleksij Rempel
2022-04-08 10:41 ` [DistroKit] [PATCH v1 2/3] fixup! v7a: barebox-stm32mp: " Oleksij Rempel
2022-04-08 10:41 ` [DistroKit] [PATCH v1 3/3] fixup! v7a_noneon: barebox-at91: " Oleksij Rempel
2022-04-09  7:37 ` [DistroKit] [PATCH v1 0/3] fix defaultenv build for stm32 and at91 barebox Robert Schwebel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox