mirror of
https://salsa.debian.org/images-team/debian-cd.git
synced 2024-11-24 15:19:51 -01:00
Remove special handling for palo, silo and yaboot in which_deb
This commit is contained in:
parent
47f7b12a36
commit
96691923d8
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -14,6 +14,7 @@ debian-cd (3.1.21) UNRELEASED; urgency=medium
|
||||
[ John Paul Adrian Glaubitz ]
|
||||
* Add list of packages required for debian-installer on m68k.
|
||||
* Add support for unreleased packages from Debian Ports.
|
||||
* Remove special handling for palo, silo and yaboot in which_deb.
|
||||
|
||||
-- Steve McIntyre <93sam@debian.org> Mon, 19 Jun 2017 13:59:36 +0100
|
||||
|
||||
|
@ -137,20 +137,13 @@ my $bin_deb = "";
|
||||
my $pkgdata = "";
|
||||
my $srcname = "";
|
||||
|
||||
if ($pkg eq "silo") {
|
||||
$pkgdata = grab_bin_info($pth, "sparc64", $pkg);
|
||||
|
||||
} elsif ($pkg eq "syslinux") {
|
||||
if ($pkg eq "syslinux") {
|
||||
first { $pkgdata = grab_bin_info($pth, $_, "syslinux-common") } @ARCHES;
|
||||
if (length($pkgdata) < 3) {
|
||||
first { $pkgdata = grab_bin_info($pth, $_, "syslinux") } @ARCHES;
|
||||
}
|
||||
} elsif ($pkg eq "yaboot") {
|
||||
$pkgdata = grab_bin_info($pth, "powerpc", $pkg);
|
||||
} elsif ($pkg eq "delo") {
|
||||
$pkgdata = grab_bin_info($pth, "mipsel", $pkg);
|
||||
} elsif ($pkg eq "palo") {
|
||||
$pkgdata = grab_bin_info($pth, "hppa", $pkg);
|
||||
} else { # Fallthrough for all other packages
|
||||
first { $pkgdata = grab_bin_info($pth, $_, $pkg) } @ARCHES;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user