* [DistroKit] [PATCH v1] MIPS: ptxdist: version bump 2020.01.0 -> 2020.02.0
@ 2020-02-28 5:11 Oleksij Rempel
2020-02-28 9:24 ` [DistroKit] [PATCH v1 2/1] scripts: p-all: add mips platform Roland Hieber
2020-03-05 16:36 ` [DistroKit] [PATCH v1] MIPS: ptxdist: version bump 2020.01.0 -> 2020.02.0 Robert Schwebel
0 siblings, 2 replies; 6+ messages in thread
From: Oleksij Rempel @ 2020-02-28 5:11 UTC (permalink / raw)
To: distrokit; +Cc: Oleksij Rempel
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
configs/platform-mips/platformconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configs/platform-mips/platformconfig b/configs/platform-mips/platformconfig
index 29e949b..3e1bc3d 100644
--- a/configs/platform-mips/platformconfig
+++ b/configs/platform-mips/platformconfig
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# PTXdist 2020.01.0
+# PTXdist 2020.02.0
#
PTXCONF__platformconfig_MAGIC__=y
@@ -19,7 +19,7 @@ PTXCONF_PLATFORM="mips"
PTXCONF_PLATFORM_VERSION="-${PTXDIST_BSP_AUTOVERSION}"
PTXCONF_RUNTIME=y
PTXCONF_BUILDTIME=y
-PTXCONF_PLATFORMCONFIG_VERSION="2020.01.0"
+PTXCONF_PLATFORMCONFIG_VERSION="2020.02.0"
#
# architecture
--
2.25.0
_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* [DistroKit] [PATCH v1 2/1] scripts: p-all: add mips platform
2020-02-28 5:11 [DistroKit] [PATCH v1] MIPS: ptxdist: version bump 2020.01.0 -> 2020.02.0 Oleksij Rempel
@ 2020-02-28 9:24 ` Roland Hieber
2020-03-02 8:04 ` Uwe Kleine-König
2020-03-05 16:36 ` [DistroKit] [PATCH v1] MIPS: ptxdist: version bump 2020.01.0 -> 2020.02.0 Robert Schwebel
1 sibling, 1 reply; 6+ messages in thread
From: Roland Hieber @ 2020-02-28 9:24 UTC (permalink / raw)
To: distrokit; +Cc: Oleksij Rempel, Roland Hieber
This way it is less likely to get lost when doing a PTXdist migrate for
all platforms.
---
scripts/p-all | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/p-all b/scripts/p-all
index bdef601ad99c..7eb9694e6e6e 100755
--- a/scripts/p-all
+++ b/scripts/p-all
@@ -7,7 +7,7 @@ else
echo Note: using PTXDIST=$PTXDIST
tput sgr 0 # back to normal
fi
-PLATFORMS="v7a v8a rpi"
+PLATFORMS="v7a v8a rpi mips"
for p in $PLATFORMS; do
$PTXDIST --platformconfig=configs/platform-${p}/platformconfig "$@"
done
--
2.25.0
_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [DistroKit] [PATCH v1 2/1] scripts: p-all: add mips platform
2020-02-28 9:24 ` [DistroKit] [PATCH v1 2/1] scripts: p-all: add mips platform Roland Hieber
@ 2020-03-02 8:04 ` Uwe Kleine-König
2020-03-02 9:37 ` Roland Hieber
0 siblings, 1 reply; 6+ messages in thread
From: Uwe Kleine-König @ 2020-03-02 8:04 UTC (permalink / raw)
To: Roland Hieber; +Cc: Oleksij Rempel, distrokit
On Fri, Feb 28, 2020 at 10:24:52AM +0100, Roland Hieber wrote:
> This way it is less likely to get lost when doing a PTXdist migrate for
> all platforms.
> ---
> scripts/p-all | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/p-all b/scripts/p-all
> index bdef601ad99c..7eb9694e6e6e 100755
> --- a/scripts/p-all
> +++ b/scripts/p-all
> @@ -7,7 +7,7 @@ else
> echo Note: using PTXDIST=$PTXDIST
> tput sgr 0 # back to normal
> fi
> -PLATFORMS="v7a v8a rpi"
> +PLATFORMS="v7a v8a rpi mips"
What about making this instead:
diff --git a/scripts/p-all b/scripts/p-all
index bdef601ad99c..bb95ed265e19 100755
--- a/scripts/p-all
+++ b/scripts/p-all
@@ -7,7 +7,7 @@ else
echo Note: using PTXDIST=$PTXDIST
tput sgr 0 # back to normal
fi
-PLATFORMS="v7a v8a rpi"
-for p in $PLATFORMS; do
- $PTXDIST --platformconfig=configs/platform-${p}/platformconfig "$@"
+
+for pcfg in configs/platform-*/platformconfig; do
+ $PTXDIST --platformconfig="$pcfg" "$@"
done
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | https://www.pengutronix.de/ |
_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [DistroKit] [PATCH v1 2/1] scripts: p-all: add mips platform
2020-03-02 8:04 ` Uwe Kleine-König
@ 2020-03-02 9:37 ` Roland Hieber
2020-03-05 16:36 ` Robert Schwebel
0 siblings, 1 reply; 6+ messages in thread
From: Roland Hieber @ 2020-03-02 9:37 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: Oleksij Rempel, distrokit
On Mon, Mar 02, 2020 at 09:04:21AM +0100, Uwe Kleine-König wrote:
> On Fri, Feb 28, 2020 at 10:24:52AM +0100, Roland Hieber wrote:
> > This way it is less likely to get lost when doing a PTXdist migrate for
> > all platforms.
> > ---
> > scripts/p-all | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/scripts/p-all b/scripts/p-all
> > index bdef601ad99c..7eb9694e6e6e 100755
> > --- a/scripts/p-all
> > +++ b/scripts/p-all
> > @@ -7,7 +7,7 @@ else
> > echo Note: using PTXDIST=$PTXDIST
> > tput sgr 0 # back to normal
> > fi
> > -PLATFORMS="v7a v8a rpi"
> > +PLATFORMS="v7a v8a rpi mips"
>
> What about making this instead:
>
> diff --git a/scripts/p-all b/scripts/p-all
> index bdef601ad99c..bb95ed265e19 100755
> --- a/scripts/p-all
> +++ b/scripts/p-all
> @@ -7,7 +7,7 @@ else
> echo Note: using PTXDIST=$PTXDIST
> tput sgr 0 # back to normal
> fi
> -PLATFORMS="v7a v8a rpi"
> -for p in $PLATFORMS; do
> - $PTXDIST --platformconfig=configs/platform-${p}/platformconfig "$@"
> +
> +for pcfg in configs/platform-*/platformconfig; do
> + $PTXDIST --platformconfig="$pcfg" "$@"
> done
LGTM.
- Roland
--
Roland Hieber, Pengutronix e.K. | r.hieber@pengutronix.de |
Steuerwalder Str. 21 | https://www.pengutronix.de/ |
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] 6+ messages in thread
* Re: [DistroKit] [PATCH v1 2/1] scripts: p-all: add mips platform
2020-03-02 9:37 ` Roland Hieber
@ 2020-03-05 16:36 ` Robert Schwebel
0 siblings, 0 replies; 6+ messages in thread
From: Robert Schwebel @ 2020-03-05 16:36 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: Oleksij Rempel, distrokit, Roland Hieber
On Mon, Mar 02, 2020 at 10:37:38AM +0100, Roland Hieber wrote:
> On Mon, Mar 02, 2020 at 09:04:21AM +0100, Uwe Kleine-König wrote:
> > On Fri, Feb 28, 2020 at 10:24:52AM +0100, Roland Hieber wrote:
> > > This way it is less likely to get lost when doing a PTXdist migrate for
> > > all platforms.
> > > ---
> > > scripts/p-all | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/scripts/p-all b/scripts/p-all
> > > index bdef601ad99c..7eb9694e6e6e 100755
> > > --- a/scripts/p-all
> > > +++ b/scripts/p-all
> > > @@ -7,7 +7,7 @@ else
> > > echo Note: using PTXDIST=$PTXDIST
> > > tput sgr 0 # back to normal
> > > fi
> > > -PLATFORMS="v7a v8a rpi"
> > > +PLATFORMS="v7a v8a rpi mips"
> >
> > What about making this instead:
> >
> > diff --git a/scripts/p-all b/scripts/p-all
> > index bdef601ad99c..bb95ed265e19 100755
> > --- a/scripts/p-all
> > +++ b/scripts/p-all
> > @@ -7,7 +7,7 @@ else
> > echo Note: using PTXDIST=$PTXDIST
> > tput sgr 0 # back to normal
> > fi
> > -PLATFORMS="v7a v8a rpi"
> > -for p in $PLATFORMS; do
> > - $PTXDIST --platformconfig=configs/platform-${p}/platformconfig "$@"
> > +
> > +for pcfg in configs/platform-*/platformconfig; do
> > + $PTXDIST --platformconfig="$pcfg" "$@"
> > done
>
> LGTM.
Uwe, could you resend with a proper patch & S-o-b?
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-5555 |
_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [DistroKit] [PATCH v1] MIPS: ptxdist: version bump 2020.01.0 -> 2020.02.0
2020-02-28 5:11 [DistroKit] [PATCH v1] MIPS: ptxdist: version bump 2020.01.0 -> 2020.02.0 Oleksij Rempel
2020-02-28 9:24 ` [DistroKit] [PATCH v1 2/1] scripts: p-all: add mips platform Roland Hieber
@ 2020-03-05 16:36 ` Robert Schwebel
1 sibling, 0 replies; 6+ messages in thread
From: Robert Schwebel @ 2020-03-05 16:36 UTC (permalink / raw)
To: Oleksij Rempel; +Cc: distrokit
On Fri, Feb 28, 2020 at 06:11:20AM +0100, Oleksij Rempel wrote:
> Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
> ---
> configs/platform-mips/platformconfig | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/configs/platform-mips/platformconfig b/configs/platform-mips/platformconfig
> index 29e949b..3e1bc3d 100644
> --- a/configs/platform-mips/platformconfig
> +++ b/configs/platform-mips/platformconfig
> @@ -1,6 +1,6 @@
> #
> # Automatically generated file; DO NOT EDIT.
> -# PTXdist 2020.01.0
> +# PTXdist 2020.02.0
> #
> PTXCONF__platformconfig_MAGIC__=y
>
> @@ -19,7 +19,7 @@ PTXCONF_PLATFORM="mips"
> PTXCONF_PLATFORM_VERSION="-${PTXDIST_BSP_AUTOVERSION}"
> PTXCONF_RUNTIME=y
> PTXCONF_BUILDTIME=y
> -PTXCONF_PLATFORMCONFIG_VERSION="2020.01.0"
> +PTXCONF_PLATFORMCONFIG_VERSION="2020.02.0"
>
> #
> # architecture
> --
> 2.25.0
Applied to next.
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-5555 |
_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-03-05 16:36 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-28 5:11 [DistroKit] [PATCH v1] MIPS: ptxdist: version bump 2020.01.0 -> 2020.02.0 Oleksij Rempel
2020-02-28 9:24 ` [DistroKit] [PATCH v1 2/1] scripts: p-all: add mips platform Roland Hieber
2020-03-02 8:04 ` Uwe Kleine-König
2020-03-02 9:37 ` Roland Hieber
2020-03-05 16:36 ` Robert Schwebel
2020-03-05 16:36 ` [DistroKit] [PATCH v1] MIPS: ptxdist: version bump 2020.01.0 -> 2020.02.0 Robert Schwebel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox