]> git.pld-linux.org Git - packages/kernel.git/commitdiff
- up to 3.17.3 auto/th/kernel-3.17.3-1
authorJan Rękorajski <baggins@pld-linux.org>
Sat, 15 Nov 2014 17:35:10 +0000 (18:35 +0100)
committerJan Rękorajski <baggins@pld-linux.org>
Sat, 15 Nov 2014 17:35:10 +0000 (18:35 +0100)
- removed patches applied upstream

kernel-fbcon-margins.patch [deleted file]
kernel-small_fixes.patch
kernel.spec

diff --git a/kernel-fbcon-margins.patch b/kernel-fbcon-margins.patch
deleted file mode 100644 (file)
index fd77379..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-This fixes "margin colour" (colour used to clear margins - e.g. a half of line
-at the bottom of 100x37 console on 800x600 framebuffer).
-
-I don't know what was the intention behind using attr_bgcol_ec() here, but it
-caused using of background colour of last erase character to clear margins -
-which definitely isn't what we want...
-This patch changes margin colour to black (or colour 0 in palette modes).
-
-       -- Jakub Bogusz <qboosh@pld-linux.org>
-
---- linux-2.6.9/drivers/video/console/bitblit.c.orig   2004-10-20 18:13:32.000000000 +0200
-+++ linux-2.6.9/drivers/video/console/bitblit.c        2004-10-20 18:22:35.153056112 +0200
-@@ -206,7 +206,6 @@
- static void bit_clear_margins(struct vc_data *vc, struct fb_info *info,
-                             int bottom_only)
- {
--      int bgshift = (vc->vc_hi_font_mask) ? 13 : 12;
-       unsigned int cw = vc->vc_font.width;
-       unsigned int ch = vc->vc_font.height;
-       unsigned int rw = info->var.xres - (vc->vc_cols*cw);
-@@ -215,7 +214,7 @@
-       unsigned int bs = info->var.yres - bh;
-       struct fb_fillrect region;
--      region.color = attr_bgcol_ec(bgshift, vc, info);
-+      region.color = 0;
-       region.rop = ROP_COPY;
-       if (rw && !bottom_only) {
index 561fe81d0a38159e4cbd2b0730454f5144661cf9..d4b603499b05f64e51b96e527678c26a94700ef8 100644 (file)
                                exit
                        fi
                done
---- a/arch/x86/kernel/acpi/boot.c
-+++ b/arch/x86/kernel/acpi/boot.c
-@@ -604,14 +604,18 @@ void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
- int acpi_gsi_to_irq(u32 gsi, unsigned int *irqp)
- {
--      int irq = mp_map_gsi_to_irq(gsi, IOAPIC_MAP_ALLOC | IOAPIC_MAP_CHECK);
-+      int irq;
--      if (irq >= 0) {
-+      if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
-+              *irqp = gsi;
-+      } else {
-+              irq = mp_map_gsi_to_irq(gsi,
-+                                      IOAPIC_MAP_ALLOC | IOAPIC_MAP_CHECK);
-+              if (irq < 0)
-+                      return -1;
-               *irqp = irq;
--              return 0;
-       }
--
--      return -1;
-+      return 0;
- }
- EXPORT_SYMBOL_GPL(acpi_gsi_to_irq);
--- 
index eaf4c5f20be0cad00379c236befbe7a8940f5021..0ab3fee23c1c943f791cdcf0183fec6a375d2d27 100644 (file)
@@ -68,9 +68,9 @@
 %define                have_pcmcia     0
 %endif
 
-%define                rel             2
+%define                rel             1
 %define                basever         3.17
-%define                postver         .2
+%define                postver         .3
 
 # define this to '-%{basever}' for longterm branch
 %define                versuffix       %{nil}
@@ -116,7 +116,7 @@ Source0:    http://www.kernel.org/pub/linux/kernel/v3.x/linux-%{basever}.tar.xz
 # Source0-md5: fb30d0f29214d75cddd2faa94f73d5cf
 %if "%{postver}" != ".0"
 Patch0:                http://www.kernel.org/pub/linux/kernel/v3.x/patch-%{version}.xz
-# Patch0-md5:  d694b8625f834791f5e02d7c9add1406
+# Patch0-md5:  13f495e3ce72ed6ccefb38591587a6ef
 %endif
 Source1:       kernel.sysconfig
 
@@ -145,7 +145,6 @@ Source58:   kernel-inittmpfs.config
 
 # http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.4-2.6.25-rc6.patch
 Patch3:                kernel-fbcondecor.patch
-Patch4:                kernel-fbcon-margins.patch
 Patch6:                linux-wistron-nx.patch
 
 # netfilter related stuff mostly based on patch-o-matic-ng
@@ -659,7 +658,6 @@ cd linux-%{basever}
 %if %{with fbcondecor}
 %patch3 -p1
 %endif
-%patch4 -p1
 %patch6 -p1
 
 ## netfilter
This page took 0.077773 seconds and 4 git commands to generate.