Files
poky/meta/files/ext-sdk-prepare.sh
Richard Purdie 0269219fbe populate_sdk_ext: Use new --setscene-only option to bitbake instead of workarounds
Rather than horrible workarounds, use the new --setscene-only option
of bitbake to pre-populate the SDK structures.

(From OE-Core rev: 38237b7ac53c416f85c4a70a61acafc3404c8b5f)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2016-01-11 23:26:28 +00:00

9 lines
150 B
Bash

#!/bin/sh
# Prepare the build system within the extensible SDK
target_sdk_dir="$1"
sdk_targets="$2"
bitbake $sdk_targets --setscene-only || exit 1