@ -1,28 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/08-nomodinst_post_pcmcia.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
--- ./Makefile.orig 2003-01-18 12:05:03.000000000 +0100
|
|||
+++ ./Makefile 2003-01-18 12:05:06.000000000 +0100
|
|||
@@ -418,7 +418,7 @@
|
|||
depmod_opts := -b $(INSTALL_MOD_PATH) -r |
|||
endif |
|||
.PHONY: _modinst_post |
|||
-_modinst_post: _modinst_post_pcmcia
|
|||
+_modinst_post:
|
|||
if [ -r System.map ]; then $(DEPMOD) -ae -F System.map $(depmod_opts) $(KERNELRELEASE); fi |
|||
|
|||
# Backwards compatibilty symlinks for people still using old versions |
@ -1,126 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/12-conf-hacks.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
--- ./scripts/Configure.orig 2003-01-13 23:24:50.000000000 +0100
|
|||
+++ ./scripts/Configure 2003-01-13 23:24:54.000000000 +0100
|
|||
@@ -49,6 +49,8 @@
|
|||
# 24 January 1999, Michael Elizabeth Chastain, <mec@shout.net> |
|||
# - Improve the exit message (Jeff Ronne). |
|||
|
|||
+# 20-06-1999: Added ALL_MODS_HACK and NEVER_ASK_HACK - Clifford
|
|||
+# 01-05-2001: Improved ALL_MODS_HACK - Rene
|
|||
# |
|||
# Make sure we're really running bash. |
|||
# |
|||
@@ -184,6 +186,7 @@
|
|||
;; |
|||
esac |
|||
while :; do |
|||
+ [ -z "$old" -a ".$NEVER_ASK_HACK" = .1 ] && old="$def"
|
|||
readln "$1 ($2) [$defprompt] " "$def" "$old" |
|||
case "$ans" in |
|||
[yY] | [yY]es ) define_bool "$2" "y" |
|||
@@ -216,6 +219,10 @@
|
|||
;; |
|||
esac |
|||
while :; do |
|||
+ if [ ".$ALL_MODS_HACK" = .1 -a ".$def" != .y ] ; then
|
|||
+ old=m ; def=m
|
|||
+ fi
|
|||
+ [ -z "$old" -a ".$NEVER_ASK_HACK" = .1 ] && old="$def"
|
|||
readln "$1 ($2) [$defprompt] " "$def" "$old" |
|||
case "$ans" in |
|||
[yY] | [yY]es ) define_tristate "$2" "y" |
|||
@@ -271,6 +278,10 @@
|
|||
;; |
|||
esac |
|||
while :; do |
|||
+ if [ ".$ALL_MODS_HACK" = .1 ] ; then
|
|||
+ old=m ; def=m
|
|||
+ fi
|
|||
+ [ -z "$old" -a ".$NEVER_ASK_HACK" = .1 ] && old="$def"
|
|||
readln "$ques ($var) [$defprompt] " "$def" "$old" |
|||
case "$ans" in |
|||
[nN] | [nN]o ) define_tristate "$var" "n" |
|||
@@ -359,6 +370,8 @@
|
|||
max=10000000 # !! |
|||
fi |
|||
while :; do |
|||
+ [ -z "$def" -a ".$NEVER_ASK_HACK" = .1 ] && def="0"
|
|||
+ [ -z "$old" -a ".$NEVER_ASK_HACK" = .1 ] && old="$def"
|
|||
readln "$1 ($2) [$def] " "$def" "$old" |
|||
if expr \( \( $ans + 0 \) \>= $min \) \& \( $ans \<= $max \) >/dev/null 2>&1 ; then |
|||
define_int "$2" "$ans" |
|||
@@ -390,6 +403,8 @@
|
|||
def=${old:-$3} |
|||
def=${def#*[x,X]} |
|||
while :; do |
|||
+ [ -z "$def" -a ".$NEVER_ASK_HACK" = .1 ] && def="0"
|
|||
+ [ -z "$old" -a ".$NEVER_ASK_HACK" = .1 ] && old="$def"
|
|||
readln "$1 ($2) [$def] " "$def" "$old" |
|||
ans=${ans#*[x,X]} |
|||
if expr "$ans" : '[0-9a-fA-F][0-9a-fA-F]*$' > /dev/null; then |
|||
@@ -420,6 +435,8 @@
|
|||
function string () { |
|||
old=$(eval echo "\${$2}") |
|||
def=${old:-$3} |
|||
+ [ -z "$def" -a ".$NEVER_ASK_HACK" = .1 ] && def="-"
|
|||
+ [ -z "$old" -a ".$NEVER_ASK_HACK" = .1 ] && old="$def"
|
|||
while :; do |
|||
if [ "$old" = "?" ]; then |
|||
readln "$1 ($2) [$def] " "$def" "" |
|||
@@ -474,6 +491,7 @@
|
|||
val="" |
|||
while [ -z "$val" ]; do |
|||
ambg=n |
|||
+ [ -z "$old" -a ".$NEVER_ASK_HACK" = .1 ] && old="$def"
|
|||
readln "$question ($names) [$def] " "$def" "$old" |
|||
ans=$(echo $ans | tr a-z A-Z) |
|||
set -- $choices |
|||
@@ -534,11 +552,19 @@
|
|||
echo "#define AUTOCONF_INCLUDED" >> $CONFIG_H |
|||
|
|||
DEFAULT="" |
|||
-if [ "$1" = "-d" ] ; then
|
|||
+ALL_MODS_HACK="0"
|
|||
+NEVER_ASK_HACK="0"
|
|||
+
|
|||
+if [ "$1" = "-d" -o "$1" = "-D" -o "$1" = "-m" -o "$1" = "-M" ] ; then
|
|||
+ [ "$1" = "-D" -o "$1" = "-M" ] && NEVER_ASK_HACK="1"
|
|||
+ [ "$1" = "-m" -o "$1" = "-M" ] && ALL_MODS_HACK="1"
|
|||
DEFAULT="-d" |
|||
shift |
|||
fi |
|||
|
|||
+[ $NEVER_ASK_HACK = 1 ] && echo "Debug: NEVER_ASK_HACK active."
|
|||
+[ $ALL_MODS_HACK = 1 ] && echo "Debug: ALL_MODS_HACK active."
|
|||
+
|
|||
CONFIG_IN=./config.in |
|||
if [ "$1" != "" ] ; then |
|||
CONFIG_IN=$1 |
|||
--- ./Makefile.orig 2003-01-13 23:24:57.000000000 +0100
|
|||
+++ ./Makefile 2003-01-13 23:25:56.000000000 +0100
|
|||
@@ -301,6 +301,9 @@
|
|||
oldconfig: symlinks |
|||
$(CONFIG_SHELL) scripts/Configure -d arch/$(ARCH)/config.in |
|||
|
|||
+no2modconfig: symlinks
|
|||
+ $(CONFIG_SHELL) scripts/Configure -m arch/$(ARCH)/config.in
|
|||
+
|
|||
xconfig: symlinks |
|||
$(MAKE) -C scripts kconfig.tk |
|||
wish -f scripts/kconfig.tk |
@ -1,35 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/20-kernel-cc.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
|
|||
This Patch is specific to ROCK Linux and not available as stand-alone patch. |
|||
|
|||
- Clifford Wolf <god@clifford.at> |
|||
|
|||
--- linux/Makefile
|
|||
+++ linux/Makefile
|
|||
@@ -27,7 +27,9 @@
|
|||
|
|||
AS = $(CROSS_COMPILE)as |
|||
LD = $(CROSS_COMPILE)ld |
|||
-CC = $(CROSS_COMPILE)gcc
|
|||
+KCC = $(CROSS_COMPILE)kcc
|
|||
+GCC = $(CROSS_COMPILE)gcc
|
|||
+CC = $(if $(shell sh -c 'type -p $(KCC)'),$(KCC),$(GCC))
|
|||
CPP = $(CC) -E |
|||
AR = $(CROSS_COMPILE)ar |
|||
NM = $(CROSS_COMPILE)nm |
@ -1,87 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/88-multiple-soundcard-fix.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
|
|||
--- linux-2.4.17/drivers/sound/sound_core.c.orig Sun Jan 6 17:31:30 2002
|
|||
+++ linux/drivers/sound/sound_core.c Sun Jan 6 17:39:43 2002
|
|||
@@ -17,7 +17,7 @@
|
|||
* plug into this. The fact they dont all go via OSS doesn't mean |
|||
* they don't have to implement the OSS API. There is a lot of logic |
|||
* to keeping much of the OSS weight out of the code in a compatibility |
|||
- * module, but its up to the driver to rember to load it...
|
|||
+ * module, but it's up to the driver to remember to load it...
|
|||
* |
|||
* The code provides a set of functions for registration of devices |
|||
* by type. This is done rather than providing a single call so that |
|||
@@ -173,10 +173,10 @@
|
|||
return r; |
|||
} |
|||
|
|||
- if (r == low)
|
|||
+ if ( r < SOUND_STEP )
|
|||
sprintf (name_buf, "%s", name); |
|||
else |
|||
- sprintf (name_buf, "%s%d", name, (r - low) / SOUND_STEP);
|
|||
+ sprintf (name_buf, "%s%d", name, (r / SOUND_STEP));
|
|||
s->de = devfs_register (devfs_handle, name_buf, |
|||
DEVFS_FL_NONE, SOUND_MAJOR, s->unit_minor, |
|||
S_IFCHR | mode, fops, NULL); |
|||
@@ -231,17 +231,20 @@
|
|||
|
|||
int register_sound_special(struct file_operations *fops, int unit) |
|||
{ |
|||
- char *name;
|
|||
+ const int chain = (unit & 0x0F);
|
|||
+ int max_unit = chain + 128;
|
|||
+ const char *name;
|
|||
|
|||
- switch (unit) {
|
|||
+ switch (chain) {
|
|||
case 0: |
|||
name = "mixer"; |
|||
break; |
|||
case 1: |
|||
name = "sequencer"; |
|||
+ max_unit = unit + 1;
|
|||
break; |
|||
case 2: |
|||
- name = "midi00";
|
|||
+ name = "midi";
|
|||
break; |
|||
case 3: |
|||
name = "dsp"; |
|||
@@ -260,6 +263,7 @@
|
|||
break; |
|||
case 8: |
|||
name = "sequencer2"; |
|||
+ max_unit = unit + 1;
|
|||
break; |
|||
case 9: |
|||
name = "dmmidi"; |
|||
@@ -280,10 +284,10 @@
|
|||
name = "admmidi"; |
|||
break; |
|||
default: |
|||
- name = "unknown";
|
|||
+ name = "unknownX";
|
|||
break; |
|||
} |
|||
- return sound_insert_unit(&chains[unit&15], fops, -1, unit, unit+1,
|
|||
+ return sound_insert_unit(&chains[chain], fops, -1, unit, max_unit,
|
|||
name, S_IRUSR | S_IWUSR); |
|||
} |
|||
|
@ -1,28 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/89-mips-abi-defines.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
--- linux/include/linux/elf.h.orig Fri Jan 17 15:33:32 2003
|
|||
+++ linux/include/linux/elf.h Fri Jan 17 15:32:31 2003
|
|||
@@ -38,6 +38,8 @@
|
|||
#define EF_MIPS_PIC 0x00000002 |
|||
#define EF_MIPS_CPIC 0x00000004 |
|||
#define EF_MIPS_ARCH 0xf0000000 |
|||
+#define EF_MIPS_ABI2 0x00000020
|
|||
+#define EF_MIPS_ABI 0x0000f000
|
|||
|
|||
/* These constants define the different elf file types */ |
|||
#define ET_NONE 0 |
@ -1,53 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/99-byteorder-i386.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
|
|||
Fix for useage in user-space applications, e.g. kdemultimedia. |
|||
|
|||
- Rene Rebe <rene@exactcode.de> |
|||
|
|||
--- linux/include/asm-i386/byteorder.h 2003-08-23 22:00:53.000000000 +0200
|
|||
+++ linux/include/asm-i386/byteorder.h 2003-08-23 21:58:06.000000000 +0200
|
|||
@@ -35,8 +35,8 @@
|
|||
} |
|||
|
|||
|
|||
-static inline __u64 ___arch__swab64(__u64 val)
|
|||
+static __inline__ __u64 ___arch__swab64(__u64 val)
|
|||
{ |
|||
union { |
|||
struct { __u32 a,b; } s; |
|||
|
|||
|
|||
--- linux/include/asm-i386/byteorder.h 2003-08-23 22:00:53.000000000 +0200
|
|||
+++ linux/include/asm-i386/byteorder.h 2003-08-23 21:58:06.000000000 +0200
|
|||
@@ -43,13 +43,13 @@
|
|||
} v; |
|||
v.u = val; |
|||
#ifdef CONFIG_X86_BSWAP |
|||
- asm("bswapl %0 ; bswapl %1 ; xchgl %0,%1"
|
|||
+ __asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1"
|
|||
: "=r" (v.s.a), "=r" (v.s.b) |
|||
: "0" (v.s.a), "1" (v.s.b)); |
|||
#else |
|||
v.s.a = ___arch__swab32(v.s.a); |
|||
v.s.b = ___arch__swab32(v.s.b); |
|||
- asm("xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b));
|
|||
+ __asm__("xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b));
|
|||
#endif |
|||
return v.u; |
|||
} |
@ -1,36 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/99-mkdep-arglist-too-long.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
Depending on the working directory where the kernel is build, the file |
|||
list can grow to produce an "argument to long" error on mkdep line. |
|||
This patch only slits the process to have shorter lines. |
|||
|
|||
- Alejandro |
|||
|
|||
--- ./Makefile.orig 2003-09-23 22:19:55.000000000 -0400
|
|||
+++ ./Makefile 2003-09-23 22:28:29.000000000 -0400
|
|||
@@ -518,7 +518,9 @@
|
|||
ifdef CONFIG_MODVERSIONS |
|||
$(MAKE) update-modverfile |
|||
endif |
|||
- scripts/mkdep -- `find $(FINDHPATH) \( -name SCCS -o -name .svn \) -prune -o -follow -name \*.h ! -name modversions.h -print` > .hdepend
|
|||
+ for x in $(FINDHPATH); do \
|
|||
+ scripts/mkdep -- `find $$x \( -name SCCS -o -name .svn \) -prune -o -follow -name \*.h ! -name modversions.h -print` >> .hdepend ; \
|
|||
+ done
|
|||
scripts/mkdep -- init/*.c > .depend |
|||
|
|||
ifdef CONFIG_MODVERSIONS |
@ -1,28 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/arch-ppc-agp.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
--- linux-2.4.21/drivers/char/agp/agpgart_be.c.orig 2003-06-13 16:51:32.000000000 +0200
|
|||
+++ linux-2.4.21/drivers/char/agp/agpgart_be.c 2003-08-26 03:20:43.000000000 +0200
|
|||
@@ -71,7 +71,7 @@
|
|||
{ |
|||
#if defined(__i386__) || defined(__x86_64__) |
|||
asm volatile ("wbinvd":::"memory"); |
|||
-#elif defined(__alpha__) || defined(__ia64__) || defined(__sparc__)
|
|||
+#elif defined(__alpha__) || defined(__ia64__) || defined(__sparc__) || defined(__powerpc__)
|
|||
/* ??? I wonder if we'll really need to flush caches, or if the |
|||
core logic can manage to keep the system coherent. The ARM |
|||
speaks only of using `cflush' to get things in memory in |
@ -1,32 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/arch-ppc-config.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
--- linux-2.4.22/arch/ppc/config.in 2003-08-25 13:44:40.000000000 +0200
|
|||
+++ linux-2.4.22-fixed/arch/ppc/config.in 2003-09-16 23:42:48.000000000 +0200
|
|||
@@ -222,8 +222,10 @@
|
|||
|
|||
source drivers/parport/Config.in |
|||
|
|||
-tristate 'Generic /dev/rtc emulation' CONFIG_GEN_RTC
|
|||
-if [ "$CONFIG_GEN_RTC" = "n" -a "$CONFIG_APUS" != "y" ]; then
|
|||
+if [ "$CONFIG_PPC_RTC" != "y" ]; then
|
|||
+ tristate 'Generic /dev/rtc emulation' CONFIG_GEN_RTC
|
|||
+fi
|
|||
+if [ "$CONFIG_GEN_RTC" != "y" -a "$CONFIG_APUS" != "y" ]; then
|
|||
tristate 'Support for /dev/rtc' CONFIG_PPC_RTC |
|||
fi |
|||
|
@ -1,28 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/arch-ppc-horizon-name-clash.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
--- ./drivers/atm/horizon.c.orig 2003-09-04 20:22:19.000000000 +0200
|
|||
+++ ./drivers/atm/horizon.c 2003-09-04 20:24:36.000000000 +0200
|
|||
@@ -481,7 +481,7 @@
|
|||
return; |
|||
} |
|||
|
|||
-static inline void dump_regs (hrz_dev * dev) {
|
|||
+static inline void dump_horizon_regs (hrz_dev * dev) {
|
|||
#ifdef DEBUG_HORIZON |
|||
PRINTD (DBG_REGS, "CONTROL 0: %#x", rd_regl (dev, CONTROL_0_REG)); |
|||
PRINTD (DBG_REGS, "RX CONFIG: %#x", rd_regw (dev, RX_CONFIG_OFF)); |
@ -1,32 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/arch-ppc-mac-nvram.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
Erhm - on PPlus I do not want the non-compileable in this config |
|||
macintosh/nvram driver ... |
|||
|
|||
- Rene Rebe <rene@exactcode.de> |
|||
|
|||
--- linux-2.4.25/drivers/macintosh/Makefile.orig 2002-11-29 00:53:13.000000000 +0100
|
|||
+++ linux-2.4.25/drivers/macintosh/Makefile 2004-04-19 21:51:26.000000000 +0200
|
|||
@@ -28,7 +28,7 @@
|
|||
|
|||
obj-$(CONFIG_PMAC_PBOOK) += mediabay.o |
|||
obj-$(CONFIG_MAC_SERIAL) += macserial.o |
|||
-ifneq ($(CONFIG_MAC),y)
|
|||
+ifeq ($(CONFIG_PMAC),y)
|
|||
obj-$(CONFIG_NVRAM) += nvram.o |
|||
endif |
|||
obj-$(CONFIG_MAC_HID) += mac_hid.o |
@ -1,57 +0,0 @@ |
|||
/* |
|||
* Manualy created by Clifford to keep common things alive ... |
|||
* |
|||
* --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
* This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
* |
|||
* Filename: package/.../linux24/autoconf.h |
|||
* Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
* Copyright (C) 1998 - 2003 Clifford Wolf |
|||
* |
|||
* More information can be found in the files COPYING and README. |
|||
* |
|||
* This program is free software; you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation; version 2 of the License. A copy of the |
|||
* GNU General Public License can be found in the file COPYING. |
|||
* --- SDE-COPYRIGHT-NOTE-END --- |
|||
* |
|||
*/ |
|||
|
|||
/* |
|||
* Code maturity level options |
|||
*/ |
|||
#define CONFIG_EXPERIMENTAL 0 |
|||
|
|||
/* |
|||
* Loadable module support |
|||
*/ |
|||
#define CONFIG_MODULES 1 |
|||
#undef CONFIG_MODVERSIONS 1 |
|||
#define CONFIG_KMOD 1 |
|||
|
|||
/* |
|||
* General setup |
|||
*/ |
|||
#define CONFIG_NET 1 |
|||
#define CONFIG_SYSVIPC 1 |
|||
#define CONFIG_BINFMT_ELF 1 |
|||
|
|||
/* |
|||
* Networking options |
|||
*/ |
|||
#define CONFIG_UNIX 1 |
|||
#define CONFIG_INET 1 |
|||
|
|||
/* |
|||
* Network device support |
|||
*/ |
|||
#define CONFIG_NETDEVICES 1 |
|||
#define CONFIG_DUMMY 1 |
|||
|
|||
/* |
|||
* Filesystems |
|||
*/ |
|||
#define CONFIG_QUOTA 1 |
|||
#define CONFIG_EXT2_FS 1 |
|||
#define CONFIG_PROC_FS 1 |
@ -1,18 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/disable-broken.lst |
|||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This program is free software; you can redistribute it and/or modify |
|||
# it under the terms of the GNU General Public License as published by |
|||
# the Free Software Foundation; version 2 of the License. A copy of the |
|||
# GNU General Public License can be found in the file COPYING. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
CONFIG_IP_NF_COMPAT_IPCHAINS 2004-09-22 2.4.x # obsolete |
|||
CONFIG_IP_NF_COMPAT_IPFWADM 2004-09-22 2.4.x # obsolete |
|||
CONFIG_DEVFS 2005-06-19 2.4.x # obsolete in T2 2.2 |
|||
|
@ -1,39 +0,0 @@ |
|||
|
|||
[TIMESTAMP] 1118280727 Wed Jun 8 21:32:07 2005 |
|||
[CONFIG-ID] 2.1.0-rc1-x86-pentium4-generic |
|||
[BUILDTIME] 150791 (5) |
|||
[SIZE] 36.32 MB, 1435 files |
|||
|
|||
[DEP] 00-dirtree |
|||
[DEP] alsa-lib |
|||
[DEP] autoconf |
|||
[DEP] automake |
|||
[DEP] bash |
|||
[DEP] binutils |
|||
[DEP] bzip2 |
|||
[DEP] coreutils |
|||
[DEP] diffutils |
|||
[DEP] e2fsprogs |
|||
[DEP] findutils |
|||
[DEP] gawk |
|||
[DEP] gcc |
|||
[DEP] glibc |
|||
[DEP] grep |
|||
[DEP] gzip |
|||
[DEP] libdnet |
|||
[DEP] libusb |
|||
[DEP] linux-header |
|||
[DEP] m4 |
|||
[DEP] make |
|||
[DEP] mktemp |
|||
[DEP] module-init-tools |
|||
[DEP] modutils |
|||
[DEP] net-tools |
|||
[DEP] patch |
|||
[DEP] perl |
|||
[DEP] sed |
|||
[DEP] sysfiles |
|||
[DEP] tar |
|||
[DEP] texinfo |
|||
[DEP] util-linux |
|||
[DEP] xorg |
@ -1,19 +0,0 @@ |
|||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# Filename: package/.../linux24/linux24.conf |
|||
# Copyright (C) 2007 The OpenSDE Project |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This program is free software; you can redistribute it and/or modify |
|||
# it under the terms of the GNU General Public License as published by |
|||
# the Free Software Foundation; version 2 of the License. A copy of the |
|||
# GNU General Public License can be found in the file COPYING. |
|||
# --- SDE-COPYRIGHT-NOTE-END --- |
|||
#FIXME make option in Linux kernel settings menu |
|||
# to apply swsusp2 |
|||
# FIXME supporte software-suspend-2 |
|||
. $base/package/*/linux/linux.conf |
|||
|
@ -1,38 +0,0 @@ |
|||
|
|||
[COPY] --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|||
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
[COPY] |
|||
[COPY] Filename: package/.../linux24/linux24.desc |
|||
[COPY] Copyright (C) 2006 The OpenSDE Project |
|||
[COPY] Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
[COPY] Copyright (C) 1998 - 2003 Clifford Wolf |
|||
[COPY] |
|||
[COPY] More information can be found in the files COPYING and README. |
|||
[COPY] |
|||
[COPY] This program is free software; you can redistribute it and/or modify |
|||
[COPY] it under the terms of the GNU General Public License as published by |
|||
[COPY] the Free Software Foundation; version 2 of the License. A copy of the |
|||
[COPY] GNU General Public License can be found in the file COPYING. |
|||
[COPY] --- SDE-COPYRIGHT-NOTE-END --- |
|||
|
|||
[I] The Linux kernel precompiled kernel binary image and modules |
|||
|
|||
[T] This package contains a precompiled kernel image and the modules. |
|||
|
|||
[U] http://www.kernel.org/ |
|||
|
|||
[A] Linus Torvalds <torvalds@transmeta.com> |
|||
[M] The OpenSDE Community <list@opensde.org> |
|||
|
|||
[C] base/kernel |
|||
[F] DIETLIBC KERNEL |
|||
|
|||
[E] group kernel-bin |
|||
|
|||
[L] GPL |
|||
[S] Stable |
|||
[V] 2.4.33.3 |
|||
[P] O -?---5---9 102.061 |
|||
|
|||
[D] 1886799399 linux-2.4.33.tar.bz2 ftp://ftp.kernel.org/pub/linux/kernel/v2.4/ |
|||
[D] 3557076765 patch-2.4.33.3.bz2 ftp://ftp.kernel.org/pub/linux/kernel/v2.4/ |