headers_install.pl 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #!/usr/bin/perl
  2. #
  3. # headers_install prepare the listed header files for use in
  4. # user space and copy the files to their destination.
  5. #
  6. # Usage: headers_install.pl readdir installdir arch [files...]
  7. # readdir: dir to open files
  8. # installdir: dir to install the files
  9. # arch: current architecture
  10. # arch is used to force a reinstallation when the arch
  11. # changes because kbuild then detect a command line change.
  12. # files: list of files to check
  13. #
  14. # Step in preparation for users space:
  15. # 1) Drop all use of compiler.h definitions
  16. # 2) Drop include of compiler.h
  17. # 3) Drop all sections defined out by __KERNEL__ (using unifdef)
  18. use strict;
  19. use warnings;
  20. my ($readdir, $installdir, $arch, @files) = @ARGV;
  21. my $unifdef = "scripts/unifdef -U__KERNEL__";
  22. foreach my $file (@files) {
  23. my $tmpfile = "$installdir/$file.tmp";
  24. open(my $infile, '<', "$readdir/$file")
  25. or die "$readdir/$file: $!\n";
  26. open(my $outfile, '>', "$tmpfile") or die "$tmpfile: $!\n";
  27. while (my $line = <$infile>) {
  28. $line =~ s/([\s(])__user\s/$1/g;
  29. $line =~ s/([\s(])__force\s/$1/g;
  30. $line =~ s/([\s(])__iomem\s/$1/g;
  31. $line =~ s/\s__attribute_const__\s/ /g;
  32. $line =~ s/\s__attribute_const__$//g;
  33. $line =~ s/^#include <linux\/compiler.h>//;
  34. printf $outfile "%s", $line;
  35. }
  36. close $outfile;
  37. close $infile;
  38. system $unifdef . " $tmpfile > $installdir/$file";
  39. unlink $tmpfile;
  40. }
  41. exit 0;