Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update iso images year 2025 #2131

Merged
merged 14 commits into from
Jan 24, 2025
Prev Previous commit
Next Next commit
wip: UEFIs for some
issue #2129
frankiejol committed Jan 16, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 910ee92cfda621f2132348f52c714e89aecd1786
4 changes: 3 additions & 1 deletion lib/Ravada.pm
Original file line number Diff line number Diff line change
@@ -509,6 +509,7 @@ sub _update_isos {
,file_re => 'linuxmint-22.*-mate-64bit.iso'
,sha256_url => '$url/sha256sum.txt'
,min_disk_size => '15'
,options => { machine => 'pc-q35', bios => 'UEFI' }
}

,alpine381_64 => {
@@ -607,6 +608,7 @@ sub _update_isos {
,sha256_url => '$url/../SHA256SUMS'
,url => 'https://ftp.lysator.liu.se/ubuntu-dvd/xubuntu/releases/24.04.*/release/'
,file_re => 'xubuntu.*desktop.*.iso'
,options => { machine => 'pc-q35', bios => 'UEFI' }
}
,xubuntu_bionic => {
name => 'Xubuntu Bionic Beaver 32 bits'
@@ -778,7 +780,7 @@ sub _update_isos {
,xml => 'jessie-amd64.xml'
,xml_volume => 'jessie-volume.xml'
,min_disk_size => '10'
,options => { machine => 'pc-q35', bios => 'UEFI' }
,options => { machine => 'pc-q35'}
}
,devuan_daedalus_i386=> {
name =>'Devuan 12 Daedalus 32 bits'
2 changes: 1 addition & 1 deletion lib/Ravada/VM/KVM.pm
Original file line number Diff line number Diff line change
@@ -1417,7 +1417,7 @@ sub _iso_name($self, $iso, $req=undef, $verbose=1) {
$verified++;
}
return if $test;
die "WARNING: $device signature not verified ".Dumper($iso) if !$verified;
warn "WARNING: $device signature not verified ".Dumper($iso) if !$verified;

$req->status("done","File $iso->{filename} downloaded") if $req;
$downloaded = 1;