DistroKit Mailinglist
 help / color / mirror / Atom feed
* [DistroKit] [PATCH 0/6] platform-v7a: basic layer support
@ 2018-10-26 11:52 Michael Olbrich
  2018-10-26 11:52 ` [DistroKit] [PATCH 1/6] platform-v7a: barebox-am335x: add " Michael Olbrich
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Michael Olbrich @ 2018-10-26 11:52 UTC (permalink / raw)
  To: distrokit; +Cc: Michael Olbrich

Hi,

This series of patches makes the Distrokit BSP layer aware. This is
necessary to stack another layer on top of existing BSP.

This basically means replacing all occurrences of PTXDIST_PLATFORMCONFIGDIR
with the appropriate macro to find the files or directories in other
layers.

Regards,
Michael

Michael Olbrich (6):
  platform-v7a: barebox-am335x: add layer support
  platform-v7a: barebox-mx6: add layer support
  platform-v7a: barebox-rpi2: add layer support
  platform-v7a: image-rpi2: add layer support
  platform-v7a: barebox-vexpress: add layer support
  platform-v7a: barebox-am335x-mlo: add layer support

 configs/platform-v7a/barebox-am335x.config         |  2 +-
 configs/platform-v7a/barebox-mx6.config            |  2 +-
 configs/platform-v7a/barebox-rpi2.config           |  2 +-
 configs/platform-v7a/barebox-vexpress.config       |  2 +-
 configs/platform-v7a/rules/barebox-am335x-mlo.make |  2 +-
 configs/platform-v7a/rules/barebox-am335x.make     |  8 +++++++-
 configs/platform-v7a/rules/barebox-mx6.make        |  8 +++++++-
 configs/platform-v7a/rules/barebox-rpi2.make       |  8 +++++++-
 configs/platform-v7a/rules/barebox-vexpress.make   |  8 +++++++-
 configs/platform-v7a/rules/image-rpi2.make         | 13 +++++++------
 10 files changed, 40 insertions(+), 15 deletions(-)

-- 
2.19.0


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

* [DistroKit] [PATCH 1/6] platform-v7a: barebox-am335x: add layer support
  2018-10-26 11:52 [DistroKit] [PATCH 0/6] platform-v7a: basic layer support Michael Olbrich
@ 2018-10-26 11:52 ` Michael Olbrich
  2018-10-26 11:52 ` [DistroKit] [PATCH 2/6] platform-v7a: barebox-mx6: " Michael Olbrich
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Michael Olbrich @ 2018-10-26 11:52 UTC (permalink / raw)
  To: distrokit; +Cc: Michael Olbrich

Remove all references to PTXDIST_PLATFORMCONFIGDIR to do this.

Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
---
 configs/platform-v7a/barebox-am335x.config     | 2 +-
 configs/platform-v7a/rules/barebox-am335x.make | 8 +++++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/configs/platform-v7a/barebox-am335x.config b/configs/platform-v7a/barebox-am335x.config
index 3cb527293349..0c78012c3e5a 100644
--- a/configs/platform-v7a/barebox-am335x.config
+++ b/configs/platform-v7a/barebox-am335x.config
@@ -192,7 +192,7 @@ CONFIG_DEFAULT_ENVIRONMENT=y
 CONFIG_DEFAULT_COMPRESSION_NONE=y
 CONFIG_DEFAULT_ENVIRONMENT_GENERIC_NEW=y
 CONFIG_DEFAULT_ENVIRONMENT_GENERIC_NEW_MENU=y
-CONFIG_DEFAULT_ENVIRONMENT_PATH="${PTXDIST_PLATFORMCONFIGDIR}/barebox-am335x-defaultenv"
+CONFIG_DEFAULT_ENVIRONMENT_PATH=".ptxdist-defaultenv"
 # CONFIG_BAREBOXENV_TARGET is not set
 # CONFIG_BAREBOXCRC32_TARGET is not set
 CONFIG_POLLER=y
diff --git a/configs/platform-v7a/rules/barebox-am335x.make b/configs/platform-v7a/rules/barebox-am335x.make
index e358ac666855..2c35ae19c701 100644
--- a/configs/platform-v7a/rules/barebox-am335x.make
+++ b/configs/platform-v7a/rules/barebox-am335x.make
@@ -21,7 +21,7 @@ BAREBOX_AM335X_MD5	:= 8286a8ea2cdd88104e5c6762d93d81db
 BAREBOX_AM335X		:= barebox-$(BAREBOX_AM335X_VERSION)
 BAREBOX_AM335X_SUFFIX	:= tar.bz2
 BAREBOX_AM335X_DIR	:= $(BUILDDIR)/barebox-am335x-$(BAREBOX_AM335X_VERSION)
-BAREBOX_AM335X_CONFIG	:= $(PTXDIST_PLATFORMCONFIGDIR)/barebox-am335x.config
+BAREBOX_AM335X_CONFIG	:= $(call ptx/in-platformconfigdir, barebox-am335x.config)
 BAREBOX_AM335X_LICENSE	:= GPL-2.0
 BAREBOX_AM335X_URL	:= $(call barebox-url, BAREBOX_AM335X)
 BAREBOX_AM335X_SOURCE	:= $(SRCDIR)/$(BAREBOX_AM335X).$(BAREBOX_AM335X_SUFFIX)
@@ -59,6 +59,12 @@ $(BAREBOX_AM335X_CONFIG):
 endif
 
 $(STATEDIR)/barebox-am335x.prepare: $(BAREBOX_AM335X_CONFIG)
+	@$(call targetinfo)
+	@rm -f "$(BAREBOX_AM335X_DIR)/.ptxdist-defaultenv"
+	@ln -s "$(call ptx/in-platformconfigdir, barebox-am335x-defaultenv)" \
+		"$(BAREBOX_AM335X_DIR)/.ptxdist-defaultenv"
+	@$(call world/prepare, BAREBOX_AM335X)
+	@$(call touch)
 
 # ----------------------------------------------------------------------------
 # Install
-- 
2.19.0


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

* [DistroKit] [PATCH 2/6] platform-v7a: barebox-mx6: add layer support
  2018-10-26 11:52 [DistroKit] [PATCH 0/6] platform-v7a: basic layer support Michael Olbrich
  2018-10-26 11:52 ` [DistroKit] [PATCH 1/6] platform-v7a: barebox-am335x: add " Michael Olbrich
@ 2018-10-26 11:52 ` Michael Olbrich
  2018-10-26 11:52 ` [DistroKit] [PATCH 3/6] platform-v7a: barebox-rpi2: " Michael Olbrich
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Michael Olbrich @ 2018-10-26 11:52 UTC (permalink / raw)
  To: distrokit; +Cc: Michael Olbrich

Remove all references to PTXDIST_PLATFORMCONFIGDIR to do this.

Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
---
 configs/platform-v7a/barebox-mx6.config     | 2 +-
 configs/platform-v7a/rules/barebox-mx6.make | 8 +++++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/configs/platform-v7a/barebox-mx6.config b/configs/platform-v7a/barebox-mx6.config
index b99dc166355a..980b97b6dbea 100644
--- a/configs/platform-v7a/barebox-mx6.config
+++ b/configs/platform-v7a/barebox-mx6.config
@@ -241,7 +241,7 @@ CONFIG_DEFAULT_COMPRESSION_NONE=y
 CONFIG_DEFAULT_ENVIRONMENT_GENERIC_NEW=y
 CONFIG_DEFAULT_ENVIRONMENT_GENERIC_NEW_MENU=y
 CONFIG_DEFAULT_ENVIRONMENT_GENERIC_NEW_DFU=y
-CONFIG_DEFAULT_ENVIRONMENT_PATH="${PTXDIST_PLATFORMCONFIGDIR}/barebox-mx6-defaultenv"
+CONFIG_DEFAULT_ENVIRONMENT_PATH=".ptxdist-defaultenv"
 # CONFIG_BAREBOXENV_TARGET is not set
 # CONFIG_BAREBOXCRC32_TARGET is not set
 CONFIG_POLLER=y
diff --git a/configs/platform-v7a/rules/barebox-mx6.make b/configs/platform-v7a/rules/barebox-mx6.make
index 7103ed483b38..7d7c2ce6d7ef 100644
--- a/configs/platform-v7a/rules/barebox-mx6.make
+++ b/configs/platform-v7a/rules/barebox-mx6.make
@@ -21,7 +21,7 @@ BAREBOX_MX6_MD5		:= 8286a8ea2cdd88104e5c6762d93d81db
 BAREBOX_MX6		:= barebox-$(BAREBOX_MX6_VERSION)
 BAREBOX_MX6_SUFFIX	:= tar.bz2
 BAREBOX_MX6_DIR		:= $(BUILDDIR)/barebox-mx6-$(BAREBOX_MX6_VERSION)
-BAREBOX_MX6_CONFIG	:= $(PTXDIST_PLATFORMCONFIGDIR)/barebox-mx6.config
+BAREBOX_MX6_CONFIG	:= $(call ptx/in-platformconfigdir, barebox-mx6.config)
 BAREBOX_MX6_LICENSE	:= GPL-2.0
 BAREBOX_MX6_URL		:= $(call barebox-url, BAREBOX_MX6)
 BAREBOX_MX6_SOURCE	:= $(SRCDIR)/$(BAREBOX_MX6).$(BAREBOX_MX6_SUFFIX)
@@ -65,6 +65,12 @@ $(BAREBOX_MX6_CONFIG):
 endif
 
 $(STATEDIR)/barebox-mx6.prepare: $(BAREBOX_MX6_CONFIG)
+	@$(call targetinfo)
+	@rm -f "$(BAREBOX_MX6_DIR)/.ptxdist-defaultenv"
+	@ln -s "$(call ptx/in-platformconfigdir, barebox-mx6-defaultenv)" \
+		"$(BAREBOX_MX6_DIR)/.ptxdist-defaultenv"
+	@$(call world/prepare, BAREBOX_MX6)
+	@$(call touch)
 
 # ----------------------------------------------------------------------------
 # Install
-- 
2.19.0


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

* [DistroKit] [PATCH 3/6] platform-v7a: barebox-rpi2: add layer support
  2018-10-26 11:52 [DistroKit] [PATCH 0/6] platform-v7a: basic layer support Michael Olbrich
  2018-10-26 11:52 ` [DistroKit] [PATCH 1/6] platform-v7a: barebox-am335x: add " Michael Olbrich
  2018-10-26 11:52 ` [DistroKit] [PATCH 2/6] platform-v7a: barebox-mx6: " Michael Olbrich
@ 2018-10-26 11:52 ` Michael Olbrich
  2018-10-26 11:52 ` [DistroKit] [PATCH 4/6] platform-v7a: image-rpi2: " Michael Olbrich
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Michael Olbrich @ 2018-10-26 11:52 UTC (permalink / raw)
  To: distrokit; +Cc: Michael Olbrich

Remove all references to PTXDIST_PLATFORMCONFIGDIR to do this.

Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
---
 configs/platform-v7a/barebox-rpi2.config     | 2 +-
 configs/platform-v7a/rules/barebox-rpi2.make | 8 +++++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/configs/platform-v7a/barebox-rpi2.config b/configs/platform-v7a/barebox-rpi2.config
index 6e673bd81d26..74c52e9fb2c8 100644
--- a/configs/platform-v7a/barebox-rpi2.config
+++ b/configs/platform-v7a/barebox-rpi2.config
@@ -174,7 +174,7 @@ CONFIG_DEFAULT_ENVIRONMENT=y
 CONFIG_DEFAULT_COMPRESSION_NONE=y
 CONFIG_DEFAULT_ENVIRONMENT_GENERIC_NEW=y
 CONFIG_DEFAULT_ENVIRONMENT_GENERIC_NEW_MENU=y
-CONFIG_DEFAULT_ENVIRONMENT_PATH="arch/arm/boards/raspberry-pi/env ${PTXDIST_PLATFORMCONFIGDIR}/barebox-rpi2-defaultenv"
+CONFIG_DEFAULT_ENVIRONMENT_PATH=".ptxdist-defaultenv"
 CONFIG_BAREBOXENV_TARGET=y
 # CONFIG_BAREBOXCRC32_TARGET is not set
 CONFIG_POLLER=y
diff --git a/configs/platform-v7a/rules/barebox-rpi2.make b/configs/platform-v7a/rules/barebox-rpi2.make
index ba1651140e1a..cf9fc00aa9ef 100644
--- a/configs/platform-v7a/rules/barebox-rpi2.make
+++ b/configs/platform-v7a/rules/barebox-rpi2.make
@@ -21,7 +21,7 @@ BAREBOX_RPI2_MD5	:= 8286a8ea2cdd88104e5c6762d93d81db
 BAREBOX_RPI2		:= barebox-$(BAREBOX_RPI2_VERSION)
 BAREBOX_RPI2_SUFFIX	:= tar.bz2
 BAREBOX_RPI2_DIR	:= $(BUILDDIR)/barebox-rpi2-$(BAREBOX_RPI2_VERSION)
-BAREBOX_RPI2_CONFIG	:= $(PTXDIST_PLATFORMCONFIGDIR)/barebox-rpi2.config
+BAREBOX_RPI2_CONFIG	:= $(call ptx/in-platformconfigdir, barebox-rpi2.config)
 BAREBOX_RPI2_LICENSE	:= GPL-2.0
 BAREBOX_RPI2_URL	:= $(call barebox-url, BAREBOX_RPI2)
 BAREBOX_RPI2_SOURCE	:= $(SRCDIR)/$(BAREBOX_RPI2).$(BAREBOX_RPI2_SUFFIX)
@@ -58,6 +58,12 @@ $(BAREBOX_RPI2_CONFIG):
 endif
 
 $(STATEDIR)/barebox-rpi2.prepare: $(BAREBOX_RPI2_CONFIG)
+	@$(call targetinfo)
+	@rm -f "$(BAREBOX_RPI2_DIR)/.ptxdist-defaultenv"
+	@ln -s "$(call ptx/in-platformconfigdir, barebox-rpi2-defaultenv)" \
+		"$(BAREBOX_RPI2_DIR)/.ptxdist-defaultenv"
+	@$(call world/prepare, BAREBOX_RPI2)
+	@$(call touch)
 
 # ----------------------------------------------------------------------------
 # Install
-- 
2.19.0


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

* [DistroKit] [PATCH 4/6] platform-v7a: image-rpi2: add layer support
  2018-10-26 11:52 [DistroKit] [PATCH 0/6] platform-v7a: basic layer support Michael Olbrich
                   ` (2 preceding siblings ...)
  2018-10-26 11:52 ` [DistroKit] [PATCH 3/6] platform-v7a: barebox-rpi2: " Michael Olbrich
@ 2018-10-26 11:52 ` Michael Olbrich
  2018-10-26 11:52 ` [DistroKit] [PATCH 5/6] platform-v7a: barebox-vexpress: " Michael Olbrich
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Michael Olbrich @ 2018-10-26 11:52 UTC (permalink / raw)
  To: distrokit; +Cc: Michael Olbrich

Remove all references to PTXDIST_PLATFORMCONFIGDIR to do this.

Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
---
 configs/platform-v7a/rules/image-rpi2.make | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/configs/platform-v7a/rules/image-rpi2.make b/configs/platform-v7a/rules/image-rpi2.make
index 43d2e3436d47..6ca4827a7db3 100644
--- a/configs/platform-v7a/rules/image-rpi2.make
+++ b/configs/platform-v7a/rules/image-rpi2.make
@@ -21,11 +21,12 @@ IMAGE_RPI2_DIR	:= $(BUILDDIR)/$(IMAGE_RPI2)
 IMAGE_RPI2_IMAGE	:= $(IMAGEDIR)/rpi2.hdimg
 IMAGE_RPI2_FILES	:= $(IMAGEDIR)/root.tgz
 IMAGE_RPI2_CONFIG	:= rpi2.config
-IMAGE_RPI2_DATA    := \
-        $(wildcard $(PTXDIST_PLATFORMCONFIGDIR)/rpi-firmware/*.bin) \
-        $(wildcard $(PTXDIST_PLATFORMCONFIGDIR)/rpi-firmware/*.elf) \
-        $(wildcard $(PTXDIST_PLATFORMCONFIGDIR)/rpi-firmware/*.dat) \
-        $(wildcard $(PTXDIST_PLATFORMCONFIGDIR)/rpi-firmware/config.txt)
+IMAGE_RPI2_DATA_DIR	:= $(call ptx/in-platformconfigdir, rpi-firmware)
+IMAGE_RPI2_DATA		:= \
+	$(wildcard $(IMAGE_RPI2_DATA_DIR)/*.bin) \
+	$(wildcard $(IMAGE_RPI2_DATA_DIR)/*.elf) \
+	$(wildcard $(IMAGE_RPI2_DATA_DIR)/*.dat) \
+	$(wildcard $(IMAGE_RPI2_DATA_DIR)/config.txt)
 
 # ----------------------------------------------------------------------------
 # Image
@@ -41,7 +42,7 @@ IMAGE_RPI2_ENV := \
 $(IMAGE_RPI2_IMAGE):
 	@$(call targetinfo)
 	@GPU_MEM=$(PTXCONF_IMAGE_RPI2_GPU_MEM) \
-		ptxd_replace_magic "$(PTXDIST_PLATFORMCONFIGDIR)/rpi-firmware/config.txt" > \
+		ptxd_replace_magic "$(IMAGE_RPI2_DATA_DIR)/config.txt" > \
 		"$(PTXDIST_TEMPDIR)/config.txt"
 	@$(call image/genimage, IMAGE_RPI2)
 	@$(call finish)
-- 
2.19.0


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

* [DistroKit] [PATCH 5/6] platform-v7a: barebox-vexpress: add layer support
  2018-10-26 11:52 [DistroKit] [PATCH 0/6] platform-v7a: basic layer support Michael Olbrich
                   ` (3 preceding siblings ...)
  2018-10-26 11:52 ` [DistroKit] [PATCH 4/6] platform-v7a: image-rpi2: " Michael Olbrich
@ 2018-10-26 11:52 ` Michael Olbrich
  2018-10-26 11:52 ` [DistroKit] [PATCH 6/6] platform-v7a: barebox-am335x-mlo: " Michael Olbrich
  2018-10-26 11:59 ` [DistroKit] [PATCH 0/6] platform-v7a: basic " Robert Schwebel
  6 siblings, 0 replies; 8+ messages in thread
From: Michael Olbrich @ 2018-10-26 11:52 UTC (permalink / raw)
  To: distrokit; +Cc: Michael Olbrich

Remove all references to PTXDIST_PLATFORMCONFIGDIR to do this.

Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
---
 configs/platform-v7a/barebox-vexpress.config     | 2 +-
 configs/platform-v7a/rules/barebox-vexpress.make | 8 +++++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/configs/platform-v7a/barebox-vexpress.config b/configs/platform-v7a/barebox-vexpress.config
index 46174c27fee5..826d22241c0d 100644
--- a/configs/platform-v7a/barebox-vexpress.config
+++ b/configs/platform-v7a/barebox-vexpress.config
@@ -163,7 +163,7 @@ CONFIG_ENV_HANDLING=y
 CONFIG_DEFAULT_ENVIRONMENT=y
 CONFIG_DEFAULT_COMPRESSION_NONE=y
 CONFIG_DEFAULT_ENVIRONMENT_GENERIC_NEW=y
-CONFIG_DEFAULT_ENVIRONMENT_PATH="${PTXDIST_PLATFORMCONFIGDIR}/barebox-vexpress-defaultenv"
+CONFIG_DEFAULT_ENVIRONMENT_PATH=".ptxdist-defaultenv"
 # CONFIG_BAREBOXENV_TARGET is not set
 # CONFIG_BAREBOXCRC32_TARGET is not set
 CONFIG_POLLER=y
diff --git a/configs/platform-v7a/rules/barebox-vexpress.make b/configs/platform-v7a/rules/barebox-vexpress.make
index 8dea4daa552f..0266cbe29a77 100644
--- a/configs/platform-v7a/rules/barebox-vexpress.make
+++ b/configs/platform-v7a/rules/barebox-vexpress.make
@@ -21,7 +21,7 @@ BAREBOX_VEXPRESS_MD5		:= 8286a8ea2cdd88104e5c6762d93d81db
 BAREBOX_VEXPRESS		:= barebox-$(BAREBOX_VEXPRESS_VERSION)
 BAREBOX_VEXPRESS_SUFFIX		:= tar.bz2
 BAREBOX_VEXPRESS_DIR		:= $(BUILDDIR)/barebox-vexpress-$(BAREBOX_VEXPRESS_VERSION)
-BAREBOX_VEXPRESS_CONFIG		:= $(PTXDIST_PLATFORMCONFIGDIR)/barebox-vexpress.config
+BAREBOX_VEXPRESS_CONFIG		:= $(call ptx/in-platformconfigdir, barebox-vexpress.config)
 BAREBOX_VEXPRESS_LICENSE	:= GPL-2.0
 BAREBOX_VEXPRESS_URL		:= $(call barebox-url, BAREBOX_VEXPRESS)
 BAREBOX_VEXPRESS_SOURCE		:= $(SRCDIR)/$(BAREBOX_VEXPRESS).$(BAREBOX_VEXPRESS_SUFFIX)
@@ -58,6 +58,12 @@ $(BAREBOX_VEXPRESS_CONFIG):
 endif
 
 $(STATEDIR)/barebox-vexpress.prepare: $(BAREBOX_VEXPRESS_CONFIG)
+	@$(call targetinfo)
+	@rm -f "$(BAREBOX_VEXPRESS_DIR)/.ptxdist-defaultenv"
+	@ln -s "$(call ptx/in-platformconfigdir, barebox-vexpress-defaultenv)" \
+		"$(BAREBOX_VEXPRESS_DIR)/.ptxdist-defaultenv"
+	@$(call world/prepare, BAREBOX_VEXPRESS)
+	@$(call touch)
 
 # ----------------------------------------------------------------------------
 # Install
-- 
2.19.0


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

* [DistroKit] [PATCH 6/6] platform-v7a: barebox-am335x-mlo: add layer support
  2018-10-26 11:52 [DistroKit] [PATCH 0/6] platform-v7a: basic layer support Michael Olbrich
                   ` (4 preceding siblings ...)
  2018-10-26 11:52 ` [DistroKit] [PATCH 5/6] platform-v7a: barebox-vexpress: " Michael Olbrich
@ 2018-10-26 11:52 ` Michael Olbrich
  2018-10-26 11:59 ` [DistroKit] [PATCH 0/6] platform-v7a: basic " Robert Schwebel
  6 siblings, 0 replies; 8+ messages in thread
From: Michael Olbrich @ 2018-10-26 11:52 UTC (permalink / raw)
  To: distrokit; +Cc: Michael Olbrich

Remove all references to PTXDIST_PLATFORMCONFIGDIR to do this.

Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
---
 configs/platform-v7a/rules/barebox-am335x-mlo.make | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/platform-v7a/rules/barebox-am335x-mlo.make b/configs/platform-v7a/rules/barebox-am335x-mlo.make
index 9bfb623a64af..e71d05713c48 100644
--- a/configs/platform-v7a/rules/barebox-am335x-mlo.make
+++ b/configs/platform-v7a/rules/barebox-am335x-mlo.make
@@ -21,7 +21,7 @@ BAREBOX_AM335X_MLO_MD5		:= 8286a8ea2cdd88104e5c6762d93d81db
 BAREBOX_AM335X_MLO		:= barebox-$(BAREBOX_AM335X_MLO_VERSION)
 BAREBOX_AM335X_MLO_SUFFIX	:= tar.bz2
 BAREBOX_AM335X_MLO_DIR		:= $(BUILDDIR)/barebox-am335x-mlo-$(BAREBOX_AM335X_MLO_VERSION)
-BAREBOX_AM335X_MLO_CONFIG	:= $(PTXDIST_PLATFORMCONFIGDIR)/barebox-am335x-mlo.config
+BAREBOX_AM335X_MLO_CONFIG	:= $(call ptx/in-platformconfigdir, barebox-am335x-mlo.config)
 BAREBOX_AM335X_MLO_LICENSE	:= GPL-2.0
 BAREBOX_AM335X_MLO_URL		:= $(call barebox-url, BAREBOX_AM335X_MLO)
 BAREBOX_AM335X_MLO_SOURCE	:= $(SRCDIR)/$(BAREBOX_AM335X_MLO).$(BAREBOX_AM335X_MLO_SUFFIX)
-- 
2.19.0


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

* Re: [DistroKit] [PATCH 0/6] platform-v7a: basic layer support
  2018-10-26 11:52 [DistroKit] [PATCH 0/6] platform-v7a: basic layer support Michael Olbrich
                   ` (5 preceding siblings ...)
  2018-10-26 11:52 ` [DistroKit] [PATCH 6/6] platform-v7a: barebox-am335x-mlo: " Michael Olbrich
@ 2018-10-26 11:59 ` Robert Schwebel
  6 siblings, 0 replies; 8+ messages in thread
From: Robert Schwebel @ 2018-10-26 11:59 UTC (permalink / raw)
  To: Michael Olbrich; +Cc: distrokit

On Fri, Oct 26, 2018 at 01:52:09PM +0200, Michael Olbrich wrote:
> This series of patches makes the Distrokit BSP layer aware. This is
> necessary to stack another layer on top of existing BSP.
> 
> This basically means replacing all occurrences of PTXDIST_PLATFORMCONFIGDIR
> with the appropriate macro to find the files or directories in other
> layers.

Series applied, thanks.

rsc
-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Industrial Linux Solutions                 | https://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

end of thread, other threads:[~2018-10-26 11:59 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-26 11:52 [DistroKit] [PATCH 0/6] platform-v7a: basic layer support Michael Olbrich
2018-10-26 11:52 ` [DistroKit] [PATCH 1/6] platform-v7a: barebox-am335x: add " Michael Olbrich
2018-10-26 11:52 ` [DistroKit] [PATCH 2/6] platform-v7a: barebox-mx6: " Michael Olbrich
2018-10-26 11:52 ` [DistroKit] [PATCH 3/6] platform-v7a: barebox-rpi2: " Michael Olbrich
2018-10-26 11:52 ` [DistroKit] [PATCH 4/6] platform-v7a: image-rpi2: " Michael Olbrich
2018-10-26 11:52 ` [DistroKit] [PATCH 5/6] platform-v7a: barebox-vexpress: " Michael Olbrich
2018-10-26 11:52 ` [DistroKit] [PATCH 6/6] platform-v7a: barebox-am335x-mlo: " Michael Olbrich
2018-10-26 11:59 ` [DistroKit] [PATCH 0/6] platform-v7a: basic " Robert Schwebel

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