linux-hwe-5.19: enable udeb for linux-hwe-5.19

This commit is contained in:
Luis Guzmán 2023-06-16 01:40:08 +00:00
parent a01dd44cba
commit 1f230cf4a5
328 changed files with 2110 additions and 4 deletions

View file

@ -0,0 +1,26 @@
#!/usr/bin/perl
#
# kernel-wedge-arch.pl -- select only specifiers for the supplied arch.
#
use strict;
require Dpkg::Control;
require Dpkg::Deps;
my $fh = \*STDIN;
my @entries;
my $wanted = $ARGV[0];
my $entry;
while (!eof($fh)) {
$entry = Dpkg::Control->new();
$entry->parse($fh, '???');
if ($entry->{'Architecture'} eq $wanted) {
print("\n" . $entry);
}
}
close($fh);