headers_install.pl 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #!/usr/bin/perl -w
  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. # installdir: dir to install the files to
  8. # arch: current architecture
  9. # arch is used to force a reinstallation when the arch
  10. # changes because kbuild then detect a command line change.
  11. # files: list of files to check
  12. #
  13. # Step in preparation for users space:
  14. # 1) Drop all use of compiler.h definitions
  15. # 2) Drop include of compiler.h
  16. # 3) Drop all sections defined out by __KERNEL__ (using unifdef)
  17. use strict;
  18. my ($installdir, $arch, @files) = @ARGV;
  19. my $unifdef = "scripts/unifdef -U__KERNEL__ -D__EXPORTED_HEADERS__";
  20. foreach my $filename (@files) {
  21. my $file = $filename;
  22. $file =~ s!^.*/!!;
  23. my $tmpfile = "$installdir/$file.tmp";
  24. open(my $in, '<', $filename)
  25. or die "$filename: $!\n";
  26. open(my $out, '>', $tmpfile)
  27. or die "$tmpfile: $!\n";
  28. while (my $line = <$in>) {
  29. $line =~ s/([\s(])__user\s/$1/g;
  30. $line =~ s/([\s(])__force\s/$1/g;
  31. $line =~ s/([\s(])__iomem\s/$1/g;
  32. $line =~ s/\s__attribute_const__\s/ /g;
  33. $line =~ s/\s__attribute_const__$//g;
  34. $line =~ s/\b__packed\b/__attribute__((packed))/g;
  35. $line =~ s/^#include <linux\/compiler.h>//;
  36. $line =~ s/(^|\s)(inline)\b/$1__$2__/g;
  37. $line =~ s/(^|\s)(asm)\b(\s|[(]|$)/$1__$2__$3/g;
  38. $line =~ s/(^|\s|[(])(volatile)\b(\s|[(]|$)/$1__$2__$3/g;
  39. $line =~ s/#ifndef _UAPI/#ifndef /;
  40. $line =~ s/#define _UAPI/#define /;
  41. $line =~ s!#endif /[*] _UAPI!#endif /* !;
  42. printf {$out} "%s", $line;
  43. }
  44. close $out;
  45. close $in;
  46. system $unifdef . " $tmpfile > $installdir/$file";
  47. # unifdef will exit 0 on success, and will exit 1 when the
  48. # file was processed successfully but no changes were made,
  49. # so abort only when it's higher than that.
  50. my $e = $? >> 8;
  51. if ($e > 1) {
  52. die "$tmpfile: $!\n";
  53. }
  54. unlink $tmpfile;
  55. }
  56. exit 0;