summaryrefslogtreecommitdiffstats
path: root/arch/blackfin/lib
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2009-12-15 09:11:09 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2009-12-15 10:18:30 +0100
commita3ffa97f40dc81f2d6b07ee964f2340fe0c1ba97 (patch)
tree7a9076c1a20df00baeadca9a07d4c1f5cd0611e2 /arch/blackfin/lib
parentcaa5cec7b1c93d660aa89d24eb160ab18e4eb628 (diff)
downloadbarebox-a3ffa97f40dc81f2d6b07ee964f2340fe0c1ba97.tar.gz
barebox-a3ffa97f40dc81f2d6b07ee964f2340fe0c1ba97.tar.xz
rename U-Boot-v2 project to barebox
This has been done with the following script: find -path ./.git -prune -o -type f -print0 | xargs -0 -r sed -i \ -e 's/u2boot/barebox/g' \ -e 's/U2Boot/barebox/g' \ -e 's/U-boot V2/barebox/g' \ -e 's/u-boot v2/barebox/g' \ -e 's/U-Boot V2/barebox/g' \ -e 's/U-Boot-v2/barebox/g' \ -e 's/U_BOOT/BAREBOX/g' \ -e 's/UBOOT/BAREBOX/g' \ -e 's/uboot/barebox/g' \ -e 's/u-boot/barebox/g' \ -e 's/u_boot/barebox/g' \ -e 's/U-Boot/barebox/g' \ -e 's/U-boot/barebox/g' \ -e 's/U-BOOT/barebox/g' find -path ./.git -prune -o \( -name "*u-boot*" -o -name "*uboot*" -o -name "*u_boot*" \) -print0 | \ xargs -0 -r rename 's/u[-_]?boot/barebox/' It needs some manual fixup following in the next patch Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/blackfin/lib')
-rw-r--r--arch/blackfin/lib/bf533_string.c2
-rw-r--r--arch/blackfin/lib/blackfin_linux.c2
-rw-r--r--arch/blackfin/lib/board.c2
-rw-r--r--arch/blackfin/lib/cpu.c6
-rw-r--r--arch/blackfin/lib/interrupt.S2
-rw-r--r--arch/blackfin/lib/muldi3.c2
-rw-r--r--arch/blackfin/lib/traps.c2
7 files changed, 9 insertions, 9 deletions
diff --git a/arch/blackfin/lib/bf533_string.c b/arch/blackfin/lib/bf533_string.c
index c8b1a3a983..752055696d 100644
--- a/arch/blackfin/lib/bf533_string.c
+++ b/arch/blackfin/lib/bf533_string.c
@@ -1,5 +1,5 @@
/*
- * U-boot - bf533_string.c Contains library routines.
+ * barebox - bf533_string.c Contains library routines.
*
* Copyright (c) 2005 blackfin.uclinux.org
*
diff --git a/arch/blackfin/lib/blackfin_linux.c b/arch/blackfin/lib/blackfin_linux.c
index fdd0091e95..ce5f3a54c2 100644
--- a/arch/blackfin/lib/blackfin_linux.c
+++ b/arch/blackfin/lib/blackfin_linux.c
@@ -1,5 +1,5 @@
/*
- * U-boot - blackfin_linux.c
+ * barebox - blackfin_linux.c
*
* Copyright (c) 2005 blackfin.uclinux.org
*
diff --git a/arch/blackfin/lib/board.c b/arch/blackfin/lib/board.c
index f8451cdbf8..9853ed2ce1 100644
--- a/arch/blackfin/lib/board.c
+++ b/arch/blackfin/lib/board.c
@@ -1,5 +1,5 @@
/*
- * U-boot - board.c First C file to be called contains init routines
+ * barebox - board.c First C file to be called contains init routines
*
* Copyright (c) 2005 blackfin.uclinux.org
*
diff --git a/arch/blackfin/lib/cpu.c b/arch/blackfin/lib/cpu.c
index 41a6ad4334..e81fa9a6d0 100644
--- a/arch/blackfin/lib/cpu.c
+++ b/arch/blackfin/lib/cpu.c
@@ -1,5 +1,5 @@
/*
- * U-boot - cpu.c CPU specific functions
+ * barebox - cpu.c CPU specific functions
*
* Copyright (c) 2005 blackfin.uclinux.org
*
@@ -71,9 +71,9 @@ void icache_enable(void)
I0 = (unsigned int *)ICPLB_ADDR0;
I1 = (unsigned int *)ICPLB_DATA0;
- /* We only setup instruction caching for U-Boot itself.
+ /* We only setup instruction caching for barebox itself.
* This has the nice side effect that we trigger an
- * exception when U-Boot goes crazy.
+ * exception when barebox goes crazy.
*/
*I0++ = TEXT_BASE & ~((1 << 20) - 1);
*I1++ = PAGE_SIZE_1MB | CPLB_L1_CHBL | CPLB_USER_RD | CPLB_VALID | CPLB_LOCK;
diff --git a/arch/blackfin/lib/interrupt.S b/arch/blackfin/lib/interrupt.S
index 820a33cc7d..82ea53d2dd 100644
--- a/arch/blackfin/lib/interrupt.S
+++ b/arch/blackfin/lib/interrupt.S
@@ -1,5 +1,5 @@
/*
- * U-boot - interrupt.S Processing of interrupts and exception handling
+ * barebox - interrupt.S Processing of interrupts and exception handling
*
* Copyright (c) 2005 blackfin.uclinux.org
*
diff --git a/arch/blackfin/lib/muldi3.c b/arch/blackfin/lib/muldi3.c
index 3924fd9d23..594878c190 100644
--- a/arch/blackfin/lib/muldi3.c
+++ b/arch/blackfin/lib/muldi3.c
@@ -1,5 +1,5 @@
/*
- * U-boot - muldi3.c contains routines for mult and div
+ * barebox - muldi3.c contains routines for mult and div
*
* Copyright (c) 2005 blackfin.uclinux.org
*
diff --git a/arch/blackfin/lib/traps.c b/arch/blackfin/lib/traps.c
index fcda7861a3..ce479b9d1b 100644
--- a/arch/blackfin/lib/traps.c
+++ b/arch/blackfin/lib/traps.c
@@ -1,5 +1,5 @@
/*
- * U-boot - traps.c Routines related to interrupts and exceptions
+ * barebox - traps.c Routines related to interrupts and exceptions
*
* Copyright (c) 2005 blackfin.uclinux.org
*