mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
0269219fbe
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>
9 lines
150 B
Bash
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
|