2
0
mirror of https://github.com/xcat2/xcat-dep.git synced 2026-09-25 01:04:06 +00:00

fix(genesis): isolate OpenEmbedded tmpdir

This commit is contained in:
Vinícius Ferrão
2026-08-21 10:44:42 -03:00
parent 6e499cd77b
commit e3ff2eb1cf
+7 -2
View File
@@ -84,9 +84,14 @@ die "Output already exists: $output_dir\n" if -e $output_dir || -l $output_dir;
my $work = tempdir('xcat-genesis-release.XXXXXX', TMPDIR => 1, CLEANUP => 1);
my $staging = tempdir('.xcat-genesis-release.XXXXXX', DIR => $output_parent, CLEANUP => 1);
my $oe_work = "$work/openembedded";
my $oe_tmp = "$oe_work/build/tmp";
local $ENV{XCAT_GENESIS_WORK_DIR} = $oe_work;
_run("$xcat_source/xCAT-genesis-builder/oe/build", @requested_architectures);
my $effective_deploy = "$oe_work/build/tmp/deploy";
{
local $ENV{TMPDIR} = $oe_tmp;
make_path($oe_tmp);
_run("$xcat_source/xCAT-genesis-builder/oe/build", @requested_architectures);
}
my $effective_deploy = "$oe_tmp/deploy";
die "Invalid OpenEmbedded deploy directory: $effective_deploy\n"
unless -d $effective_deploy && !-l $effective_deploy;