From 527c61356cca836e7274b713ca9ba48e636c86b2 Mon Sep 17 00:00:00 2001 From: Uwe Kleine-König Date: Thu, 5 Mar 2020 20:41:14 +0100 Subject: scripts/p-all: automatically build all available platforms MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Instead of hardcoding the available platforms build for all actually existing platformconfigs. Effectively this adds mips. Signed-off-by: Uwe Kleine-König --- scripts/p-all | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/p-all b/scripts/p-all index bdef601..bb95ed2 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 -- cgit v1.2.3