| Message ID | 20260814-mathieu-devtool-v1-1-985e81a17bb3@bootlin.com |
|---|---|
| State | Under Review |
| Headers | show |
| Series | devtool: standard: Fix file copy on finish --force | expand |
diff --git a/scripts/lib/scriptutils.py b/scripts/lib/scriptutils.py index 32e749dbb1a2..b4fb6cc1845f 100644 --- a/scripts/lib/scriptutils.py +++ b/scripts/lib/scriptutils.py @@ -170,7 +170,7 @@ def fetch_url(tinfoil, srcuri, srcrev, destdir, logger, preserve_tmp=False, mirr logger.debug('Generating initial recipe %s for fetching' % fetchrecipe) with open(fetchrecipe, 'w') as f: # We don't want to have to specify LIC_FILES_CHKSUM - f.write('LICENSE = "CLOSED"\n') + f.write('LICENSE = "LicenseRef-Proprietary"\n') # We don't need the cross-compiler f.write('INHIBIT_DEFAULT_DEPS = "1"\n') # We don't have the checksums yet so we can't require them
Switching away of the "CLOSED" license, as devtool users would encounter deprecation warnings on "devtool add" command. Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> --- scripts/lib/scriptutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)