File: dh_di_kernel_install

package info (click to toggle)
dh-di 6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 48 kB
  • ctags: 4
  • sloc: perl: 84; makefile: 17
file content (41 lines) | stat: -rwxr-xr-x 727 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/perl -w

=head1 NAME

dh_di_kernel_install - install kernel udeb files

=cut

use strict;
use Debian::Debhelper::Dh_Lib;

=head1 SYNOPSIS

B<dh_di_kernel_install> [S<B<debhelper options>>]

=head1 DESCRIPTION

dh_di_kernel_install is a debhelper program that runs C<kernel-wedge
install-files> and C<kernel-wedge check> to install files into package build
directories for kernel udebs.

It silently does nothing if the C<kernel-versions> file does not exist.

=cut

exit unless -f "kernel-versions";

doit("kernel-wedge", "install-files");
doit("kernel-wedge", "check");

=head1 SEE ALSO

L<debhelper(7)>, L<kernel-wedge(1)>

This program is a part of dh-di.

=head1 AUTHOR

Colin Watson <cjwatson@debian.org>

=cut