Changeset 450cac9 in freewrt


Ignore:
Timestamp:
Jun 18, 2007, 10:30:59 PM (18 years ago)
Author:
Phil Sutter <n0-1@…>
Children:
89a3c80
Parents:
31739d81
Message:

fix this patch (was generating a .rej file)

git-svn-id: svn://www.freewrt.org/trunk/freewrt@2849 afb5a338-a214-0410-bd46-81f09a774fd1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • target/linux/rb-2.6/patches/101-kgdb.patch

    r31739d81 r450cac9  
    11diff -Naurp linux-2.6.19.1/arch/mips/rb500/Makefile linux-2.6.19.1.patched/arch/mips/rb500/Makefile
    2 --- linux-2.6.19.1/arch/mips/rb500/Makefile     2007-06-13 23:16:58.346168091 +0200
    3 +++ linux-2.6.19.1.patched/arch/mips/rb500/Makefile     2007-06-13 23:28:59.979291619 +0200
     2--- linux-2.6.19.1/arch/mips/rb500/Makefile     2007-06-18 21:38:26.221129033 +0200
     3+++ linux-2.6.19.1.patched/arch/mips/rb500/Makefile     2007-06-18 21:40:35.720508782 +0200
    44@@ -3,3 +3,4 @@
    55 #
    6 
     6 
    77 obj-y   += irq.o time.o setup.o serial.o prom.o misc.o devices.o
    88+obj-$(CONFIG_KGDB) += serial_gdb.o
    99diff -Naurp linux-2.6.19.1/arch/mips/rb500/prom.c linux-2.6.19.1.patched/arch/mips/rb500/prom.c
    10 --- linux-2.6.19.1/arch/mips/rb500/prom.c       2007-06-13 23:16:58.350168319 +0200
    11 +++ linux-2.6.19.1.patched/arch/mips/rb500/prom.c       2007-06-13 23:30:15.435591629 +0200
    12 @@ -1,5 +1,5 @@
    13  /*
    14 -* prom.c
    15 +* prom.c
    16  **********************************************************************
    17  * P . Sadik Oct 10, 2003
    18  *
     10--- linux-2.6.19.1/arch/mips/rb500/prom.c       2007-06-18 21:38:26.225129261 +0200
     11+++ linux-2.6.19.1.patched/arch/mips/rb500/prom.c       2007-06-18 21:40:35.724509010 +0200
    1912@@ -23,6 +23,11 @@
    2013   P.Christeas, 2005-2006
    2114   Port to 2.6, add 2.6 cmdline parsing
    22 
     15 
    2316+**********************************************************************
    2417+
     
    2720+
    2821 */
    29 
     22 
    3023 #include <linux/init.h>
    3124@@ -50,6 +55,9 @@ EXPORT_SYMBOL(gpio_bootup_state);
    3225 char mips_mac_address[18] = "08:00:06:05:40:01";
    3326 EXPORT_SYMBOL(mips_mac_address);
    34 
     27 
    3528+unsigned int console_baud_rate = 9600;
    3629+EXPORT_SYMBOL(console_baud_rate);
     
    4740 #define IGNORE_CMDLINE_MEM 1
    4841 #define DEBUG_DDR
    49 
     42 
    5043@@ -111,7 +121,7 @@ void prom_free_prom_memory(void)
    5144 void __init prom_setup_cmdline(void)
     
    6053        prom_argv = (char **) fw_arg1;
    6154        prom_envp = (char **) fw_arg2;
    62 
     55 
    6356+       cons_baud_str = "9600";
    6457        cp = cmd_line;
     
    9588diff -Naurp linux-2.6.19.1/arch/mips/rb500/serial_gdb.c linux-2.6.19.1.patched/arch/mips/rb500/serial_gdb.c
    9689--- linux-2.6.19.1/arch/mips/rb500/serial_gdb.c 1970-01-01 01:00:00.000000000 +0100
    97 +++ linux-2.6.19.1.patched/arch/mips/rb500/serial_gdb.c 2007-06-13 23:28:59.983291847 +0200
     90+++ linux-2.6.19.1.patched/arch/mips/rb500/serial_gdb.c 2007-06-18 21:40:35.724509010 +0200
    9891@@ -0,0 +1,126 @@
    9992+/*
     
    225218diff -Naurp linux-2.6.19.1/include/asm-mips/rc32434/uart.h linux-2.6.19.1.patched/include/asm-mips/rc32434/uart.h
    226219--- linux-2.6.19.1/include/asm-mips/rc32434/uart.h      1970-01-01 01:00:00.000000000 +0100
    227 +++ linux-2.6.19.1.patched/include/asm-mips/rc32434/uart.h      2007-06-13 23:29:00.091298002 +0200
     220+++ linux-2.6.19.1.patched/include/asm-mips/rc32434/uart.h      2007-06-18 21:40:35.892518585 +0200
    228221@@ -0,0 +1,51 @@
    229222+/*
Note: See TracChangeset for help on using the changeset viewer.