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