kernel-doc (9c77f108f43ae08e560f54c817d4aeb4857dc783) | kernel-doc (c15de5a19a2881205f6f893869584c99cbe4fae4) |
---|---|
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> ## --- 69 unchanged lines hidden (view full) --- 78 79# 25/07/2012 - Added support for HTML5 80# -- Dan Luedtke <mail@danrl.de> 81 82sub usage { 83 my $message = <<"EOF"; 84Usage: $0 [OPTION ...] FILE ... 85 | 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> ## --- 69 unchanged lines hidden (view full) --- 78 79# 25/07/2012 - Added support for HTML5 80# -- Dan Luedtke <mail@danrl.de> 81 82sub usage { 83 my $message = <<"EOF"; 84Usage: $0 [OPTION ...] FILE ... 85 |
86Output selection modifiers: 87 -no-doc-sections Do not output DOC: sections. 88 -enable-lineno Enable output of #define LINENO lines. Only works with 89 reStructuredText format. 90 -export-file FILE Specify an additional FILE in which to look for 91 EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL(). To be used with 92 -export or -internal. May be specified multiple times. 93 | |
94Other parameters: 95 -v Verbose output, more warnings and other information. 96 -h Print this help. 97 -Werror Treat warnings as errors. 98 99EOF 100 print $message; 101 exit 1; --- 2500 unchanged lines hidden (view full) --- 2602=item -nosymbol NAME 2603 2604Exclude the specified symbol from the output documentation. 2605 2606May be specified multiple times. 2607 2608=back 2609 | 86Other parameters: 87 -v Verbose output, more warnings and other information. 88 -h Print this help. 89 -Werror Treat warnings as errors. 90 91EOF 92 print $message; 93 exit 1; --- 2500 unchanged lines hidden (view full) --- 2594=item -nosymbol NAME 2595 2596Exclude the specified symbol from the output documentation. 2597 2598May be specified multiple times. 2599 2600=back 2601 |
2602=head2 Output selection modifiers: 2603 2604=over 8 2605 2606=item -no-doc-sections 2607 2608Do not output DOC: sections. 2609 2610=item -export-file FILE 2611 2612Specify an additional FILE in which to look for EXPORT_SYMBOL() and 2613EXPORT_SYMBOL_GPL(). 2614 2615To be used with -export or -internal. 2616 2617May be specified multiple times. 2618 2619=back 2620 2621=head3 reStructuredText only 2622 2623=over 8 2624 2625=item -enable-lineno 2626 2627Enable output of #define LINENO lines. 2628 2629=back 2630 |
|
2610=cut | 2631=cut |