kernel-doc (2875f78708219feadf0956dcf9e936ec25fb7a8b) | kernel-doc (dd803b04b0a0af16e43c2af1a3e67d7ce8e1f899) |
---|---|
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 format selection modifier (affects only ReST output): 87 88 -sphinx-version Use the ReST C domain dialect compatible with an 89 specific Sphinx Version. 90 If not specified, kernel-doc will auto-detect using 91 the sphinx-build version found on PATH. 92 | |
93Output selection (mutually exclusive): 94 -export Only output documentation for symbols that have been 95 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() 96 in any input FILE or -export-file FILE. 97 -internal Only output documentation for symbols that have NOT been 98 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() 99 in any input FILE or -export-file FILE. 100 -function NAME Only output documentation for the given function(s) --- 2477 unchanged lines hidden (view full) --- 2578Output reStructuredText format. This is the default. 2579 2580=item -none 2581 2582Do not output documentation, only warnings. 2583 2584=back 2585 | 86Output selection (mutually exclusive): 87 -export Only output documentation for symbols that have been 88 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() 89 in any input FILE or -export-file FILE. 90 -internal Only output documentation for symbols that have NOT been 91 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() 92 in any input FILE or -export-file FILE. 93 -function NAME Only output documentation for the given function(s) --- 2477 unchanged lines hidden (view full) --- 2571Output reStructuredText format. This is the default. 2572 2573=item -none 2574 2575Do not output documentation, only warnings. 2576 2577=back 2578 |
2579=head2 Output format modifiers 2580 2581=head3 reStructuredText only 2582 2583=over 8 2584 2585=item -sphinx-version VERSION 2586 2587Use the ReST C domain dialect compatible with a specific Sphinx Version. 2588 2589If not specified, kernel-doc will auto-detect using the sphinx-build version 2590found on PATH. 2591 2592=back 2593 |
|
2586=cut | 2594=cut |