build in f12
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Tue, 15 Dec 2009 09:17:26 +0000 (09:17 +0000)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Tue, 15 Dec 2009 09:17:26 +0000 (09:17 +0000)
kernel-2.6.spec
linux-2.6-050-getline.patch [new file with mode: 0644]

index 179578a..3e716ae 100644 (file)
@@ -139,6 +139,7 @@ Source30: %{pldistro}-%{kversion}-i686-xenU.config
 %if "0%{patchlevel}"
 Patch000: ftp://ftp.kernel.org/pub/linux/kernel/v2.6/patch-%{rpmversion}.bz2
 %endif
+Patch050: linux-2.6-050-getline.patch
 
 # Linux-VServer
 Patch200: patch-%{rpmversion}-vs%{vsversion}.diff
@@ -332,8 +333,9 @@ KERNEL_PREVIOUS=vanilla
 %ApplyPatch 0
 %endif
 
-# NetNS patch for VINI
+%ApplyPatch 050
 
+# vserver patch
 %ApplyPatch 200
 
 %ApplyPatch 250
diff --git a/linux-2.6-050-getline.patch b/linux-2.6-050-getline.patch
new file mode 100644 (file)
index 0000000..4833301
--- /dev/null
@@ -0,0 +1,31 @@
+diff --git a/scripts/unifdef.c b/scripts/unifdef.c
+index 552025e..977e682 100644
+--- a/scripts/unifdef.c
++++ b/scripts/unifdef.c
+@@ -206,7 +206,7 @@  static void             done(void);
+ static void             error(const char *);
+ static int              findsym(const char *);
+ static void             flushline(bool);
+-static Linetype         getline(void);
++static Linetype         parseline(void);
+ static Linetype         ifeval(const char **);
+ static void             ignoreoff(void);
+ static void             ignoreon(void);
+@@ -512,7 +512,7 @@  process(void)
+       for (;;) {
+               linenum++;
+-              lineval = getline();
++              lineval = parseline();
+               trans_table[ifstate[depth]][lineval]();
+               debug("process %s -> %s depth %d",
+                   linetype_name[lineval],
+@@ -526,7 +526,7 @@  process(void)
+  * help from skipcomment().
+  */
+ static Linetype
+-getline(void)
++parseline(void)
+ {
+       const char *cp;
+       int cursym;