kernel-doc (f600c77aeaff6e59806d7eef9ac269a7c1a6d817) | kernel-doc (dcd39fa2be95efd5cbce74661151f68510cb67fe) |
---|---|
1#!/usr/bin/env perl 2# SPDX-License-Identifier: GPL-2.0 3 4use warnings; 5use strict; 6 7## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ## 8## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ## --- 9 unchanged lines hidden (view full) --- 18use Pod::Usage qw/pod2usage/; 19 20=head1 NAME 21 22kernel-doc - Print formatted kernel documentation to stdout 23 24=head1 SYNOPSIS 25 | 1#!/usr/bin/env perl 2# SPDX-License-Identifier: GPL-2.0 3 4use warnings; 5use strict; 6 7## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ## 8## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ## --- 9 unchanged lines hidden (view full) --- 18use Pod::Usage qw/pod2usage/; 19 20=head1 NAME 21 22kernel-doc - Print formatted kernel documentation to stdout 23 24=head1 SYNOPSIS 25 |
26 kernel-doc [-h] [-v] [-Werror] [-Wall] [-Wreturn] [-Wshort-description] [-Wcontents-before-sections] | 26 kernel-doc [-h] [-v] [-Werror] [-Wall] [-Wreturn] [-Wshort-desc[ription]] [-Wcontents-before-sections] |
27 [ -man | 28 -rst [-sphinx-version VERSION] [-enable-lineno] | 29 -none 30 ] 31 [ 32 -export | 33 -internal | 34 [-function NAME] ... | --- 288 unchanged lines hidden (view full) --- 323 my $file = shift @ARGV; 324 push(@export_file_list, $file); 325 } elsif ($cmd eq "v") { 326 $verbose = 1; 327 } elsif ($cmd eq "Werror") { 328 $Werror = 1; 329 } elsif ($cmd eq "Wreturn") { 330 $Wreturn = 1; | 27 [ -man | 28 -rst [-sphinx-version VERSION] [-enable-lineno] | 29 -none 30 ] 31 [ 32 -export | 33 -internal | 34 [-function NAME] ... | --- 288 unchanged lines hidden (view full) --- 323 my $file = shift @ARGV; 324 push(@export_file_list, $file); 325 } elsif ($cmd eq "v") { 326 $verbose = 1; 327 } elsif ($cmd eq "Werror") { 328 $Werror = 1; 329 } elsif ($cmd eq "Wreturn") { 330 $Wreturn = 1; |
331 } elsif ($cmd eq "Wshort-desc") { | 331 } elsif ($cmd eq "Wshort-desc" or $cmd eq "Wshort-description") { |
332 $Wshort_desc = 1; 333 } elsif ($cmd eq "Wcontents-before-sections") { 334 $Wcontents_before_sections = 1; 335 } elsif ($cmd eq "Wall") { 336 $Wreturn = 1; 337 $Wshort_desc = 1; 338 $Wcontents_before_sections = 1; 339 } elsif (($cmd eq "h") || ($cmd eq "help")) { --- 2195 unchanged lines hidden --- | 332 $Wshort_desc = 1; 333 } elsif ($cmd eq "Wcontents-before-sections") { 334 $Wcontents_before_sections = 1; 335 } elsif ($cmd eq "Wall") { 336 $Wreturn = 1; 337 $Wshort_desc = 1; 338 $Wcontents_before_sections = 1; 339 } elsif (($cmd eq "h") || ($cmd eq "help")) { --- 2195 unchanged lines hidden --- |