buildscript: Remove prepare from buildall command

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 <fabian@blaese.de>
This commit is contained in:
Fabian Bläse 2019-11-23 16:04:59 +01:00
parent d968665704
commit 581eb9d469
1 changed files with 0 additions and 1 deletions

View File

@ -382,7 +382,6 @@ setBSP()
buildall() {
for bsp in $(/bin/ls bsp/*.bsp); do
setBSP "$bsp"
prepare
build "$1"
done
}