Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7deb55f5 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

kbuild: export_report: read modules.order instead of .tmp_versions/*.mod



Towards the goal of removing MODVERDIR aka .tmp_versions, read out
modules.order to get the list of modules to be processed. This is
simpler than parsing *.mod files in .tmp_versions.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent ff9b45c5
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -52,13 +52,12 @@ sub usage {

sub collectcfiles {
    my @file;
    while (<.tmp_versions/*.mod>) {
	open my $fh, '<', $_ or die "cannot open $_: $!\n";
	push (@file,
	      grep s/\.ko/.mod.c/,	# change the suffix
	      grep m/.+\.ko/,		# find the .ko path
	      <$fh>);			# lines in opened file
    open my $fh, '< modules.order' or die "cannot open modules.order: $!\n";
    while (<$fh>) {
	s/\.ko$/.mod.c/;
	push (@file, $_)
    }
    close($fh);
    chomp @file;
    return @file;
}