Skip to content

Commit 7a56ca2

Browse files
maurermcgrof
authored andcommitted
scripts: Remove export_report.pl
This script has been broken for 5 years with no user complaints. It first had its .mod.c parser broken in commit a3d0cb0 ("modpost: use __section in the output to *.mod.c"). Later, it had its object file enumeration broken in commit f65a486 ("kbuild: change module.order to list *.o instead of *.ko"). Both of these changes sat for years with no reports. Rather than reviving this script as we make further changes to `.mod.c`, this patch gets rid of it because it is clearly unused. Signed-off-by: Matthew Maurer <[email protected]> Acked-by: Masahiro Yamada <[email protected]> Signed-off-by: Luis Chamberlain <[email protected]>
1 parent af08475 commit 7a56ca2

File tree

2 files changed

+1
-191
lines changed

2 files changed

+1
-191
lines changed

Makefile

+1-5
Original file line numberDiff line numberDiff line change
@@ -1602,7 +1602,6 @@ help:
16021602
@echo ' with a stack size larger than MINSTACKSIZE (default: 100)'
16031603
@echo ' versioncheck - Sanity check on version.h usage'
16041604
@echo ' includecheck - Check for duplicate included header files'
1605-
@echo ' export_report - List the usages of all exported symbols'
16061605
@echo ' headerdep - Detect inclusion cycles in headers'
16071606
@echo ' coccicheck - Check with Coccinelle'
16081607
@echo ' clang-analyzer - Check with clang static analyzer'
@@ -2015,7 +2014,7 @@ endif
20152014
# Scripts to check various things for consistency
20162015
# ---------------------------------------------------------------------------
20172016

2018-
PHONY += includecheck versioncheck coccicheck export_report
2017+
PHONY += includecheck versioncheck coccicheck
20192018

20202019
includecheck:
20212020
find $(srctree)/* $(RCS_FIND_IGNORE) \
@@ -2030,9 +2029,6 @@ versioncheck:
20302029
coccicheck:
20312030
$(Q)$(BASH) $(srctree)/scripts/$@
20322031

2033-
export_report:
2034-
$(PERL) $(srctree)/scripts/export_report.pl
2035-
20362032
PHONY += checkstack kernelrelease kernelversion image_name
20372033

20382034
# UML needs a little special treatment here. It wants to use the host

scripts/export_report.pl

-186
This file was deleted.

0 commit comments

Comments
 (0)