diff mbox series

Revert "files/ext-sdk-prepare: Ensure all dependencies extract correctly"

Message ID 20260828105406.960288-1-richard.purdie@linuxfoundation.org
State Accepted, archived
Commit 09df3e534c4f38a033c514d7567006ed35cc34df
Headers show
Series Revert "files/ext-sdk-prepare: Ensure all dependencies extract correctly" | expand

Commit Message

Richard Purdie Aug. 28, 2026, 10:54 a.m. UTC
This reverts commit f8336d39ddec1600b231a8117441e3927e661087.

This breaks SDK_EXT_TYPE = "minimal" with SDK_INCLUDE_TOOLCHAIN = "1" since
the toolchain extraction doesn't work well with --runall do_build. We don't
want toolchain build components.

Revert and we'll have to find a better way to fix the other issues.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/files/ext-sdk-prepare.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/files/ext-sdk-prepare.py b/meta/files/ext-sdk-prepare.py
index ed03b77ae62..89b04030899 100644
--- a/meta/files/ext-sdk-prepare.py
+++ b/meta/files/ext-sdk-prepare.py
@@ -69,7 +69,7 @@  def main():
     with open(logfile, 'a') as logf:
         logf.write('Preparing SDK for %s...\n' % ', '.join(sdk_targets))
 
-        ret = run_command_interruptible('BB_SETSCENE_ENFORCE=1 bitbake --quiet --runall do_build %s' % ' '.join(sdk_targets))
+        ret = run_command_interruptible('BB_SETSCENE_ENFORCE=1 bitbake --quiet %s' % ' '.join(sdk_targets))
         if not ret:
             ret = run_command_interruptible('bitbake --quiet build-sysroots -c build_native_sysroot && bitbake --quiet build-sysroots -c build_target_sysroot')
         lastlog = get_last_consolelog()