Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
d265609
Documentation
LICENSES
arch
block
certs
crypto
drivers
firmware
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
basic
coccinelle
dtc
gcc-plugins
gdb
genksyms
kconfig
ksymoops
mod
package
selinux
tracing
.gitignore
Kbuild.include
Lindent
Makefile
Makefile.asm-generic
Makefile.build
Makefile.clean
Makefile.dtbinst
Makefile.extrawarn
Makefile.gcc-plugins
Makefile.headersinst
Makefile.host
Makefile.kasan
Makefile.kcov
Makefile.lib
Makefile.modbuiltin
Makefile.modinst
Makefile.modpost
Makefile.modsign
Makefile.ubsan
adjust_autoksyms.sh
asn1_compiler.c
bloat-o-meter
bootgraph.pl
check_00index.sh
check_extable.sh
checkincludes.pl
checkkconfigsymbols.py
checkpatch.pl
checkstack.pl
checksyscalls.sh
checkversion.pl
clang-version.sh
cleanfile
cleanpatch
coccicheck
config
conmakehash.c
const_structs.checkpatch
decode_stacktrace.sh
decodecode
depmod.sh
diffconfig
documentation-file-ref-check
export_report.pl
extract-cert.c
extract-ikconfig
extract-module-sig.pl
extract-sys-certs.pl
extract-vmlinux
extract_xc3028.pl
faddr2line
file-size.sh
find-unused-docs.sh
gcc-goto.sh
gcc-ld
gcc-plugin.sh
gcc-version.sh
gcc-x86_32-has-stack-protector.sh
gcc-x86_64-has-stack-protector.sh
gen_initramfs_list.sh
get_dvb_firmware
get_maintainer.pl
gfp-translate
headerdep.pl
headers.sh
headers_check.pl
headers_install.sh
insert-sys-cert.c
kallsyms.c
kernel-doc
ld-version.sh
leaking_addresses.pl
link-vmlinux.sh
makelst
markup_oops.pl
mkcompile_h
mkmakefile
mksysmap
mkuboot.sh
module-common.lds
namespace.pl
objdiff
parse-maintainers.pl
patch-kernel
pnmtologo.c
profile2linkerlist.pl
prune-kernel
recordmcount.c
recordmcount.h
recordmcount.pl
setlocalversion
show_delta
sign-file.c
sortextable.c
sortextable.h
spdxcheck.py
spelling.txt
sphinx-pre-install
split-man.pl
stackdelta
stackusage
tags.sh
unifdef.c
ver_linux
xen-hypercalls.sh
xz_wrap.sh
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
scripts
/
documentation-file-ref-check
Blame
Blame
Latest commit
History
History
executable file
·
116 lines (90 loc) · 2.38 KB
Breadcrumbs
linux
/
scripts
/
documentation-file-ref-check
Top
File metadata and controls
Code
Blame
executable file
·
116 lines (90 loc) · 2.38 KB
Raw
#!/usr/bin/env perl # SPDX-License-Identifier: GPL-2.0 # # Treewide grep for references to files under Documentation, and report # non-existing files in stderr. use warnings; use strict; use Getopt::Long qw(:config no_auto_abbrev); my $scriptname = $0; $scriptname =~ s,.*/([^/]+/),$1,; # Parse arguments my $help = 0; my $fix = 0; GetOptions( 'fix' => \$fix, 'h|help|usage' => \$help, ); if ($help != 0) { print "$scriptname [--help] [--fix-rst]\n"; exit -1; } # Step 1: find broken references print "Finding broken references. This may take a while... " if ($fix); my %broken_ref; open IN, "git grep 'Documentation/'|" or die "Failed to run git grep"; while (<IN>) { next if (!m/^([^:]+):(.*)/); my $f = $1; my $ln = $2; # Makefiles contain nasty expressions to parse docs next if ($f =~ m/Makefile/); # Skip this script next if ($f eq $scriptname); if ($ln =~ m,\b(\S*)(Documentation/[A-Za-z0-9\_\.\,\~/\*+-]*),) { my $prefix = $1; my $ref = $2; my $base = $2; $ref =~ s/[\,\.]+$//; my $fulref = "$prefix$ref"; $fulref =~ s/^(\<file|ref)://; $fulref =~ s/^[\'\`]+//; $fulref =~ s,^\$\(.*\)/,,; $base =~ s,.*/,,; # Remove URL false-positives next if ($fulref =~ m/^http/); # Check if exists, evaluating wildcards next if (grep -e, glob("$ref $fulref")); if ($fix) { if (!($ref =~ m/(devicetree|scripts|Kconfig|Kbuild)/)) { $broken_ref{$ref}++; } } else { print STDERR "$f: $fulref\n"; } } } exit 0 if (!$fix); # Step 2: Seek for file name alternatives print "Auto-fixing broken references. Please double-check the results\n"; foreach my $ref (keys %broken_ref) { my $new =$ref; # get just the basename $new =~ s,.*/,,; # Seek for the same name on another place, as it may have been moved my $f=""; $f = qx(find . -iname $new) if ($new); # usual reason for breakage: file renamed to .rst if (!$f) { $new =~ s/\.txt$/.rst/; $f=qx(find . -iname $new) if ($new); } my @find = split /\s+/, $f; if (!$f) { print STDERR "ERROR: Didn't find a replacement for $ref\n"; } elsif (scalar(@find) > 1) { print STDERR "WARNING: Won't auto-replace, as found multiple files close to $ref:\n"; foreach my $j (@find) { $j =~ s,^./,,; print STDERR " $j\n"; } } else { $f = $find[0]; $f =~ s,^./,,; print "INFO: Replacing $ref to $f\n"; foreach my $j (qx(git grep -l $ref)) { qx(sed "s\@$ref\@$f\@g" -i $j); } } }
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
You can’t perform that action at this time.