Show
Ignore:
Timestamp:
03/27/08 05:03:51 (2 years ago)
Author:
rwhitby
Message:

Updated u-boot patch ready for submission upstream

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/patches/u-boot/0001-ixp-Support-for-NSLU2.patch

    r1048 r1058  
    1 From 73f14aafaba4c2508d67b1196eb618e0d6b9781d Mon Sep 17 00:00:00 2001 
    21From: Rod Whitby <rod@whitby.id.au> 
    3 Date: Sun, 24 Feb 2008 13:26:35 +1030 
    42Subject: [PATCH] ixp: Support for NSLU2 
    53 
     
    2422 create mode 100644 include/configs/nslu2.h 
    2523 
    26 diff --git a/MAINTAINERS b/MAINTAINERS 
    27 index dc13580..891ae00 100644 
    28 --- a/MAINTAINERS 
    29 +++ b/MAINTAINERS 
    30 @@ -564,6 +564,10 @@ Michael Schwingen <michael@schwingen.org> 
     24Index: u-boot/MAINTAINERS 
     25=================================================================== 
     26--- u-boot.orig/MAINTAINERS    2008-03-10 01:50:02.000000000 +1030 
     27+++ u-boot/MAINTAINERS 2008-03-27 15:10:31.000000000 +1030 
     28@@ -564,6 +564,10 @@ 
    3129        actux3                  xscale 
    3230        actux4                  xscale 
     
    3937 # x86 Systems:                                                         # 
    4038 #                                                                      # 
    41 diff --git a/MAKEALL b/MAKEALL 
    42 index 0e1c0cb..2088e78 100755 
    43 --- a/MAKEALL 
    44 +++ b/MAKEALL 
    45 @@ -529,6 +529,7 @@ LIST_ixp="         \ 
     39Index: u-boot/MAKEALL 
     40=================================================================== 
     41--- u-boot.orig/MAKEALL        2008-03-10 01:50:02.000000000 +1030 
     42+++ u-boot/MAKEALL     2008-03-27 15:10:31.000000000 +1030 
     43@@ -529,6 +529,7 @@ 
    4644        actux4          \ 
    4745        ixdp425         \ 
     
    5149        scpu            \ 
    5250 " 
    53 diff --git a/Makefile b/Makefile 
    54 index 2790865..ec3661e 100644 
    55 --- a/Makefile 
    56 +++ b/Makefile 
    57 @@ -2563,6 +2563,9 @@ ixdp425_config   :       unconfig 
     51Index: u-boot/Makefile 
     52=================================================================== 
     53--- u-boot.orig/Makefile       2008-03-10 01:50:02.000000000 +1030 
     54+++ u-boot/Makefile    2008-03-27 15:10:31.000000000 +1030 
     55@@ -2532,6 +2532,9 @@ 
    5856 ixdpg425_config        :       unconfig 
    5957        @$(MKCONFIG) $(@:_config=) arm ixp ixdp425 
     
    6563        @$(MKCONFIG) $(@:_config=) arm pxa lubbock 
    6664  
    67 diff --git a/board/nslu2/Makefile b/board/nslu2/Makefile 
    68 new file mode 100644 
    69 index 0000000..934bc1a 
    70 --- /dev/null 
    71 +++ b/board/nslu2/Makefile 
     65Index: u-boot/board/nslu2/Makefile 
     66=================================================================== 
     67--- /dev/null   1970-01-01 00:00:00.000000000 +0000 
     68+++ u-boot/board/nslu2/Makefile 2008-03-27 15:10:31.000000000 +1030 
    7269@@ -0,0 +1,53 @@ 
    7370+# 
     
    124121+ 
    125122+######################################################################### 
    126 diff --git a/board/nslu2/config.mk b/board/nslu2/config.mk 
    127 new file mode 100644 
    128 index 0000000..6510cc4 
    129 --- /dev/null 
    130 +++ b/board/nslu2/config.mk 
     123Index: u-boot/board/nslu2/config.mk 
     124=================================================================== 
     125--- /dev/null   1970-01-01 00:00:00.000000000 +0000 
     126+++ u-boot/board/nslu2/config.mk        2008-03-27 15:13:55.000000000 +1030 
    131127@@ -0,0 +1 @@ 
    132128+TEXT_BASE = 0x01d00000 
    133 diff --git a/board/nslu2/load_sernum_ethaddr.c b/board/nslu2/load_sernum_ethaddr.c 
    134 new file mode 100644 
    135 index 0000000..5992fa8 
    136 --- /dev/null 
    137 +++ b/board/nslu2/load_sernum_ethaddr.c 
     129Index: u-boot/board/nslu2/load_sernum_ethaddr.c 
     130=================================================================== 
     131--- /dev/null   1970-01-01 00:00:00.000000000 +0000 
     132+++ u-boot/board/nslu2/load_sernum_ethaddr.c    2008-03-27 15:10:31.000000000 +1030 
    138133@@ -0,0 +1,67 @@ 
    139134+/* 
     
    204199+       } 
    205200+} 
    206 diff --git a/board/nslu2/nslu2.c b/board/nslu2/nslu2.c 
    207 new file mode 100644 
    208 index 0000000..ca1a716 
    209 --- /dev/null 
    210 +++ b/board/nslu2/nslu2.c 
     201Index: u-boot/board/nslu2/nslu2.c 
     202=================================================================== 
     203--- /dev/null   1970-01-01 00:00:00.000000000 +0000 
     204+++ u-boot/board/nslu2/nslu2.c  2008-03-27 15:10:31.000000000 +1030 
    211205@@ -0,0 +1,96 @@ 
    212206+/* 
     
    306300+       return (0); 
    307301+} 
    308 diff --git a/board/nslu2/u-boot.lds b/board/nslu2/u-boot.lds 
    309 new file mode 100644 
    310 index 0000000..58393d0 
    311 --- /dev/null 
    312 +++ b/board/nslu2/u-boot.lds 
     302Index: u-boot/board/nslu2/u-boot.lds 
     303=================================================================== 
     304--- /dev/null   1970-01-01 00:00:00.000000000 +0000 
     305+++ u-boot/board/nslu2/u-boot.lds       2008-03-27 15:10:31.000000000 +1030 
    313306@@ -0,0 +1,56 @@ 
    314307+/* 
     
    368361+       _end = .; 
    369362+} 
    370 diff --git a/include/configs/nslu2.h b/include/configs/nslu2.h 
    371 new file mode 100644 
    372 index 0000000..879ca22 
    373 --- /dev/null 
    374 +++ b/include/configs/nslu2.h 
     363Index: u-boot/include/configs/nslu2.h 
     364=================================================================== 
     365--- /dev/null   1970-01-01 00:00:00.000000000 +0000 
     366+++ u-boot/include/configs/nslu2.h      2008-03-27 15:10:32.000000000 +1030 
    375367@@ -0,0 +1,230 @@ 
    376368+/* 
     
    604596+ 
    605597+#endif /* __CONFIG_H */ 
    606 diff --git a/lib_arm/board.c b/lib_arm/board.c 
    607 index 22d573a..a388d5d 100644 
    608 --- a/lib_arm/board.c 
    609 +++ b/lib_arm/board.c 
    610 @@ -396,9 +396,9 @@ void start_armboot (void) 
     598Index: u-boot/lib_arm/board.c 
     599=================================================================== 
     600--- u-boot.orig/lib_arm/board.c        2008-03-10 01:50:02.000000000 +1030 
     601+++ u-boot/lib_arm/board.c     2008-03-27 15:10:31.000000000 +1030 
     602@@ -396,9 +396,9 @@ 
    611603  
    612604        devices_init ();        /* get the devices list going. */ 
     
    620612        jumptable_init (); 
    621613  
    622 --  
    623 1.5.2.5 
    624