From 581eb9d469d7d7b48476c51a5e86bf1791ca8226 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Bl=C3=A4se?= Date: Sat, 23 Nov 2019 16:04:59 +0100 Subject: [PATCH] buildscript: Remove prepare from buildall command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The builds for all BSPs have been merged into a single OpenWRT buildroot. A prepare between builds cleans everything that has already been built, including host tools. Building for multiple targets therefore takes quite a bit longer than it has to. This removes the prepare command between builds in the buildall command. It now behaves exactly like multiple conscutive "selectbsp, build" commands, which speeds up the build for multiple devices a lot. This now means, that prepare has to be executed before buildall can be used, just like with the 'build' command. Signed-off-by: Fabian Bläse --- buildscript | 1 - 1 file changed, 1 deletion(-) diff --git a/buildscript b/buildscript index 4c54aec4..5f0aa763 100755 --- a/buildscript +++ b/buildscript @@ -382,7 +382,6 @@ setBSP() buildall() { for bsp in $(/bin/ls bsp/*.bsp); do setBSP "$bsp" - prepare build "$1" done }