]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
authorKumar Gala <galak@kernel.crashing.org>
Thu, 29 Nov 2007 16:47:44 +0000 (10:47 -0600)
committerKumar Gala <galak@kernel.crashing.org>
Wed, 12 Dec 2007 04:34:20 +0000 (22:34 -0600)
Minor path corrections needed to ensure buildability.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23 files changed:
Makefile
board/freescale/common/cadmus.c [moved from board/cds/common/cadmus.c with 100% similarity]
board/freescale/common/cadmus.h [moved from board/cds/common/cadmus.h with 100% similarity]
board/freescale/common/eeprom.c [moved from board/cds/common/eeprom.c with 100% similarity]
board/freescale/common/eeprom.h [moved from board/cds/common/eeprom.h with 100% similarity]
board/freescale/common/ft_board.c [moved from board/cds/common/ft_board.c with 100% similarity]
board/freescale/common/via.c [moved from board/cds/common/via.c with 100% similarity]
board/freescale/common/via.h [moved from board/cds/common/via.h with 100% similarity]
board/freescale/mpc8541cds/Makefile [moved from board/cds/mpc8541cds/Makefile with 100% similarity]
board/freescale/mpc8541cds/config.mk [moved from board/cds/mpc8541cds/config.mk with 100% similarity]
board/freescale/mpc8541cds/init.S [moved from board/cds/mpc8541cds/init.S with 100% similarity]
board/freescale/mpc8541cds/mpc8541cds.c [moved from board/cds/mpc8541cds/mpc8541cds.c with 100% similarity]
board/freescale/mpc8541cds/u-boot.lds [moved from board/cds/mpc8541cds/u-boot.lds with 97% similarity]
board/freescale/mpc8548cds/Makefile [moved from board/cds/mpc8548cds/Makefile with 100% similarity]
board/freescale/mpc8548cds/config.mk [moved from board/cds/mpc8548cds/config.mk with 100% similarity]
board/freescale/mpc8548cds/init.S [moved from board/cds/mpc8548cds/init.S with 100% similarity]
board/freescale/mpc8548cds/mpc8548cds.c [moved from board/cds/mpc8548cds/mpc8548cds.c with 100% similarity]
board/freescale/mpc8548cds/u-boot.lds [moved from board/cds/mpc8548cds/u-boot.lds with 97% similarity]
board/freescale/mpc8555cds/Makefile [moved from board/cds/mpc8555cds/Makefile with 100% similarity]
board/freescale/mpc8555cds/config.mk [moved from board/cds/mpc8555cds/config.mk with 100% similarity]
board/freescale/mpc8555cds/init.S [moved from board/cds/mpc8555cds/init.S with 100% similarity]
board/freescale/mpc8555cds/mpc8555cds.c [moved from board/cds/mpc8555cds/mpc8555cds.c with 100% similarity]
board/freescale/mpc8555cds/u-boot.lds [moved from board/cds/mpc8555cds/u-boot.lds with 97% similarity]

index f41ec0869b2fcaedc6294f360c64e9b0eae7bd95..bde38ca25d6e927995ae59df34f9678267aab7fb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1945,7 +1945,7 @@ MPC8541CDS_config:        unconfig
                echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
                echo "... legacy" ; \
        fi
-       @$(MKCONFIG) -a MPC8541CDS ppc mpc85xx mpc8541cds cds
+       @$(MKCONFIG) -a MPC8541CDS ppc mpc85xx mpc8541cds freescale
 
 MPC8544DS_config:      unconfig
        @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8544ds freescale
@@ -1958,7 +1958,7 @@ MPC8548CDS_config:        unconfig
                echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
                echo "... legacy" ; \
        fi
-       @$(MKCONFIG) -a MPC8548CDS ppc mpc85xx mpc8548cds cds
+       @$(MKCONFIG) -a MPC8548CDS ppc mpc85xx mpc8548cds freescale
 
 MPC8555CDS_legacy_config \
 MPC8555CDS_config:     unconfig
@@ -1968,7 +1968,7 @@ MPC8555CDS_config:        unconfig
                echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
                echo "... legacy" ; \
        fi
-       @$(MKCONFIG) -a MPC8555CDS ppc mpc85xx mpc8555cds cds
+       @$(MKCONFIG) -a MPC8555CDS ppc mpc85xx mpc8555cds freescale
 
 MPC8568MDS_config:     unconfig
        @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8568mds freescale
similarity index 97%
rename from board/cds/mpc8541cds/u-boot.lds
rename to board/freescale/mpc8541cds/u-boot.lds
index 7a5daefeb752f7b9318444d0125cde0650b41fad..4360d677ecce1b9c0a91372f598e9fdb0c5a95f5 100644 (file)
@@ -34,7 +34,7 @@ SECTIONS
   .bootpg 0xFFFFF000 :
   {
     cpu/mpc85xx/start.o        (.bootpg)
-    board/cds/mpc8541cds/init.o (.bootpg)
+    board/freescale/mpc8541cds/init.o (.bootpg)
   } = 0xffff
 
   /* Read-only sections, merged into text segment: */
@@ -64,7 +64,7 @@ SECTIONS
   .text      :
   {
     cpu/mpc85xx/start.o        (.text)
-    board/cds/mpc8541cds/init.o (.text)
+    board/freescale/mpc8541cds/init.o (.text)
     cpu/mpc85xx/traps.o (.text)
     cpu/mpc85xx/interrupts.o (.text)
     cpu/mpc85xx/cpu_init.o (.text)
similarity index 97%
rename from board/cds/mpc8548cds/u-boot.lds
rename to board/freescale/mpc8548cds/u-boot.lds
index b19c481a96af3e1325b1f2a4d064859ad99d5cf6..ee772d3ae2e935a183a6a5dc87aa9423ff462ec4 100644 (file)
@@ -34,7 +34,7 @@ SECTIONS
   .bootpg 0xFFFFF000 :
   {
     cpu/mpc85xx/start.o        (.bootpg)
-    board/cds/mpc8548cds/init.o (.bootpg)
+    board/freescale/mpc8548cds/init.o (.bootpg)
   } = 0xffff
 
   /* Read-only sections, merged into text segment: */
@@ -64,7 +64,7 @@ SECTIONS
   .text      :
   {
     cpu/mpc85xx/start.o        (.text)
-    board/cds/mpc8548cds/init.o (.text)
+    board/freescale/mpc8548cds/init.o (.text)
     cpu/mpc85xx/traps.o (.text)
     cpu/mpc85xx/interrupts.o (.text)
     cpu/mpc85xx/cpu_init.o (.text)
similarity index 97%
rename from board/cds/mpc8555cds/u-boot.lds
rename to board/freescale/mpc8555cds/u-boot.lds
index de0923a0d8b1e60c9104bf13292c9409a0fc036d..df21ea86e634ba6b77a0b582597102328f9c61e8 100644 (file)
@@ -34,7 +34,7 @@ SECTIONS
   .bootpg 0xFFFFF000 :
   {
     cpu/mpc85xx/start.o        (.bootpg)
-    board/cds/mpc8555cds/init.o (.bootpg)
+    board/freescale/mpc8555cds/init.o (.bootpg)
   } = 0xffff
 
   /* Read-only sections, merged into text segment: */
@@ -64,7 +64,7 @@ SECTIONS
   .text      :
   {
     cpu/mpc85xx/start.o        (.text)
-    board/cds/mpc8555cds/init.o (.text)
+    board/freescale/mpc8555cds/init.o (.text)
     cpu/mpc85xx/traps.o (.text)
     cpu/mpc85xx/interrupts.o (.text)
     cpu/mpc85xx/cpu_init.o (.text)