mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
update to linux 2.6.29, evdev 2.2.1
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Linux kernel version: 2.6.29-rc8
|
||||
# Linux kernel version: 2.6.29
|
||||
#
|
||||
# CONFIG_64BIT is not set
|
||||
CONFIG_X86_32=y
|
||||
@@ -510,6 +510,7 @@ CONFIG_NL80211=y
|
||||
CONFIG_WIRELESS_EXT=y
|
||||
CONFIG_WIRELESS_EXT_SYSFS=y
|
||||
CONFIG_LIB80211=m
|
||||
# CONFIG_LIB80211_DEBUG is not set
|
||||
CONFIG_MAC80211=m
|
||||
|
||||
#
|
||||
@@ -735,6 +736,7 @@ CONFIG_MII=m
|
||||
# CONFIG_SUNGEM is not set
|
||||
# CONFIG_CASSINI is not set
|
||||
# CONFIG_NET_VENDOR_3COM is not set
|
||||
# CONFIG_DNET is not set
|
||||
# CONFIG_NET_TULIP is not set
|
||||
# CONFIG_HP100 is not set
|
||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||
@@ -1314,11 +1316,6 @@ CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
|
||||
CONFIG_FONT_8x8=y
|
||||
CONFIG_FONT_8x16=y
|
||||
# CONFIG_LOGO is not set
|
||||
|
||||
#
|
||||
# Bootsplash configuration
|
||||
#
|
||||
# CONFIG_BOOTSPLASH is not set
|
||||
CONFIG_SOUND=m
|
||||
CONFIG_SOUND_OSS_CORE=y
|
||||
CONFIG_SND=m
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,21 +0,0 @@
|
||||
* allow bootsplash to work on non-vesa fb drivers
|
||||
but check we have valid vc pointer.
|
||||
|
||||
Index: linux-2.6.16/drivers/video/bootsplash/bootsplash.c
|
||||
===================================================================
|
||||
--- linux-2.6.16.orig/drivers/video/bootsplash/bootsplash.c 2006-03-20 18:43:54.000000000 +0100
|
||||
+++ linux-2.6.16/drivers/video/bootsplash/bootsplash.c 2006-03-20 18:46:53.000000000 +0100
|
||||
@@ -548,11 +548,11 @@
|
||||
printk(KERN_INFO " found, but has oversized text area!\n");
|
||||
return -1;
|
||||
}
|
||||
-/* if (!vc_cons[unit].d || info->fbops != &vesafb_ops) {
|
||||
+ if (!vc_cons[unit].d) {
|
||||
splash_free(vc, info);
|
||||
printk(KERN_INFO " found, but framebuffer can't handle it!\n");
|
||||
return -1;
|
||||
- } */
|
||||
+ }
|
||||
printk(KERN_INFO "...found (%dx%d, %d bytes, v%d).\n", width, height, splash_size, version);
|
||||
if (version == 1) {
|
||||
printk(KERN_WARNING "bootsplash: Using deprecated v1 header. Updating your splash utility recommended.\n");
|
||||
@@ -1,16 +0,0 @@
|
||||
* fix gcc4 compliation - "error: invalid lvalue in increment"
|
||||
|
||||
Index: linux-2.6.16/drivers/video/bootsplash/bootsplash.c
|
||||
===================================================================
|
||||
--- linux-2.6.16.orig/drivers/video/bootsplash/bootsplash.c 2006-03-20 18:46:53.000000000 +0100
|
||||
+++ linux-2.6.16/drivers/video/bootsplash/bootsplash.c 2006-03-20 18:46:57.000000000 +0100
|
||||
@@ -268,7 +268,8 @@
|
||||
i = ((CLAMP(r + add*2+1) & 0xf8) << 8) |
|
||||
((CLAMP(g + add ) & 0xfc) << 3) |
|
||||
((CLAMP(b + add*2+1) ) >> 3);
|
||||
- *((unsigned short *)picp)++ = i;
|
||||
+ *((unsigned short *)picp) = i;
|
||||
+ picp = (unsigned char *)((unsigned short *)picp + 1);
|
||||
add ^= 3;
|
||||
break;
|
||||
case 24:
|
||||
@@ -1 +1 @@
|
||||
http://eu.kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.29-rc8.tar.bz2
|
||||
http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.29.tar.bz2
|
||||
@@ -1 +1 @@
|
||||
http://xorg.freedesktop.org/releases/individual/driver/xf86-input-evdev-2.1.99.1.tar.bz2
|
||||
http://xorg.freedesktop.org/archive/individual/driver/xf86-input-evdev-2.2.1.tar.bz2
|
||||
|
||||
Reference in New Issue
Block a user