SOURCES: kernel-xen-module-build.pl (NEW), kernel-xen-config.h (NE...

adamg adamg at pld-linux.org
Thu Dec 27 11:23:25 CET 2007


Author: adamg                        Date: Thu Dec 27 10:23:25 2007 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- new

---- Files affected:
SOURCES:
   kernel-xen-module-build.pl (NONE -> 1.1)  (NEW), kernel-xen-config.h (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/kernel-xen-module-build.pl
diff -u /dev/null SOURCES/kernel-xen-module-build.pl:1.1
--- /dev/null	Thu Dec 27 11:23:25 2007
+++ SOURCES/kernel-xen-module-build.pl	Thu Dec 27 11:23:20 2007
@@ -0,0 +1,38 @@
+#!/usr/bin/perl
+#
+use strict;
+use warnings;
+use File::Find qw(find);
+
+my $rpmdir = shift @ARGV or die;
+my $fileoutdir = shift @ARGV or die;
+my @tosort;
+
+find(\&wanted, ".");
+
+sub wanted {
+	return unless -f;
+	return unless /^Kconfig/ or /^Makefile/;
+	#return if /\.orig$/;
+	return if $File::Find::name =~ /(Documentation|scripts)/;
+	(my $file = $File::Find::name) =~ s#^\./##;
+	$file =~ m#^(.*)/#;
+	my $dir = $1 || "";
+	my $subdir = "";
+	foreach my $sub ( split( '/', $dir )) {
+		$subdir .= "/" . $sub;
+		push @tosort, "\%dir $rpmdir$subdir\n";
+	}
+	push @tosort, "$rpmdir/$file\n";
+}
+
+my $last = "";
+my @toprint = grep {if ($_ ne $last) { $last = $_; 1} else {0}} sort @tosort;
+
+open F_OUT, "> $fileoutdir/aux_files" or die "Can't create aux_files: $!\n";
+print F_OUT @toprint;
+close F_OUT and print "aux_files created\n";
+
+open F_OUT, "> $fileoutdir/aux_files_exc" or die "Can't create aux_files_exc: $!\n";
+print F_OUT map {"\%exclude $_"} @toprint;
+close F_OUT and print "aux_files_exc created\n";

================================================================
Index: SOURCES/kernel-xen-config.h
diff -u /dev/null SOURCES/kernel-xen-config.h:1.1
--- /dev/null	Thu Dec 27 11:23:25 2007
+++ SOURCES/kernel-xen-config.h	Thu Dec 27 11:23:20 2007
@@ -0,0 +1,6 @@
+#ifndef _LINUX_CONFIG_H
+#define _LINUX_CONFIG_H
+
+#include <linux/autoconf.h>
+
+#endif
================================================================


More information about the pld-cvs-commit mailing list