blob: 7d2b4146e02ff1a58c3c1e53f996902a0620901f [file] [log] [blame]
Jeremy Huntwork15a2ee72008-10-29 14:20:13 -07001#!/usr/bin/perl -w
Sam Ravnborg77124012008-06-15 21:41:09 +02002#
3# headers_install prepare the listed header files for use in
4# user space and copy the files to their destination.
5#
Sam Ravnborgdb1bec42008-06-16 21:29:38 +02006# 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 Ravnborg77124012008-06-15 21:41:09 +020013#
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
19use strict;
Sam Ravnborg77124012008-06-15 21:41:09 +020020
Sam Ravnborgdb1bec42008-06-16 21:29:38 +020021my ($readdir, $installdir, $arch, @files) = @ARGV;
Sam Ravnborg77124012008-06-15 21:41:09 +020022
23my $unifdef = "scripts/unifdef -U__KERNEL__";
24
25foreach my $file (@files) {
Jeremy Huntwork15a2ee72008-10-29 14:20:13 -070026 local *INFILE;
27 local *OUTFILE;
Sam Ravnborg77124012008-06-15 21:41:09 +020028 my $tmpfile = "$installdir/$file.tmp";
Jeremy Huntwork15a2ee72008-10-29 14:20:13 -070029 open(INFILE, "<$readdir/$file")
Sam Ravnborg77124012008-06-15 21:41:09 +020030 or die "$readdir/$file: $!\n";
Jeremy Huntwork15a2ee72008-10-29 14:20:13 -070031 open(OUTFILE, ">$tmpfile") or die "$tmpfile: $!\n";
32 while (my $line = <INFILE>) {
Sam Ravnborg77124012008-06-15 21:41:09 +020033 $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>//;
Jeremy Huntwork15a2ee72008-10-29 14:20:13 -070039 printf OUTFILE "%s", $line;
Sam Ravnborg77124012008-06-15 21:41:09 +020040 }
Jeremy Huntwork15a2ee72008-10-29 14:20:13 -070041 close OUTFILE;
42 close INFILE;
Sam Ravnborg77124012008-06-15 21:41:09 +020043 system $unifdef . " $tmpfile > $installdir/$file";
44 unlink $tmpfile;
45}
46exit 0;