Jeremy Huntwork | 15a2ee7 | 2008-10-29 14:20:13 -0700 | [diff] [blame] | 1 | #!/usr/bin/perl -w |
Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 2 | # |
| 3 | # headers_install prepare the listed header files for use in |
| 4 | # user space and copy the files to their destination. |
| 5 | # |
Sam Ravnborg | db1bec4 | 2008-06-16 21:29:38 +0200 | [diff] [blame] | 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 |
Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 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 | |
| 19 | use strict; |
Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 20 | |
Sam Ravnborg | db1bec4 | 2008-06-16 21:29:38 +0200 | [diff] [blame] | 21 | my ($readdir, $installdir, $arch, @files) = @ARGV; |
Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 22 | |
Arnd Bergmann | c01226c | 2009-09-21 16:37:12 +0200 | [diff] [blame] | 23 | my $unifdef = "scripts/unifdef -U__KERNEL__ -D__EXPORTED_HEADERS__"; |
Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 24 | |
| 25 | foreach my $file (@files) { |
Jeremy Huntwork | 15a2ee7 | 2008-10-29 14:20:13 -0700 | [diff] [blame] | 26 | local *INFILE; |
| 27 | local *OUTFILE; |
Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 28 | my $tmpfile = "$installdir/$file.tmp"; |
Jeremy Huntwork | 15a2ee7 | 2008-10-29 14:20:13 -0700 | [diff] [blame] | 29 | open(INFILE, "<$readdir/$file") |
Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 30 | or die "$readdir/$file: $!\n"; |
Jeremy Huntwork | 15a2ee7 | 2008-10-29 14:20:13 -0700 | [diff] [blame] | 31 | open(OUTFILE, ">$tmpfile") or die "$tmpfile: $!\n"; |
| 32 | while (my $line = <INFILE>) { |
Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 33 | $line =~ s/([\s(])__user\s/$1/g; |
| 34 | $line =~ s/([\s(])__force\s/$1/g; |
| 35 | $line =~ s/([\s(])__iomem\s/$1/g; |
| 36 | $line =~ s/\s__attribute_const__\s/ /g; |
| 37 | $line =~ s/\s__attribute_const__$//g; |
| 38 | $line =~ s/^#include <linux\/compiler.h>//; |
Mike Frysinger | 4307184 | 2008-12-27 03:23:15 -0500 | [diff] [blame] | 39 | $line =~ s/(^|\s)(inline)\b/$1__$2__/g; |
| 40 | $line =~ s/(^|\s)(asm)\b(\s|[(]|$)/$1__$2__$3/g; |
| 41 | $line =~ s/(^|\s|[(])(volatile)\b(\s|[(]|$)/$1__$2__$3/g; |
Jeremy Huntwork | 15a2ee7 | 2008-10-29 14:20:13 -0700 | [diff] [blame] | 42 | printf OUTFILE "%s", $line; |
Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 43 | } |
Jeremy Huntwork | 15a2ee7 | 2008-10-29 14:20:13 -0700 | [diff] [blame] | 44 | close OUTFILE; |
| 45 | close INFILE; |
Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 46 | system $unifdef . " $tmpfile > $installdir/$file"; |
| 47 | unlink $tmpfile; |
| 48 | } |
| 49 | exit 0; |