From a3ffa97f40dc81f2d6b07ee964f2340fe0c1ba97 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 15 Dec 2009 09:11:09 +0100 Subject: 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 --- arch/m68k/mach-mcfv4e/include/mach/clocks.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/mach/debug_ll.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/mach/hardware.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/mach/mcf54xx-regs.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/dma_utils.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/fec.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/fecbd.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_dma.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_progCheck.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_tasksInit.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/net/eth.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/net/nbuf.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/net/net.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/net/queue.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/processor.h | 8 ++++---- arch/m68k/mach-mcfv4e/include/proc/ptrace.h | 8 ++++---- arch/m68k/mach-mcfv4e/mcdapi/Makefile | 8 ++++---- arch/m68k/mach-mcfv4e/mcf_clocksource.c | 8 ++++---- arch/m68k/mach-mcfv4e/mcf_reset_cpu.c | 8 ++++---- arch/m68k/mach-mcfv4e/multichannel_dma.c | 2 +- arch/m68k/mach-mcfv4e/net/Makefile | 8 ++++---- arch/m68k/mach-mcfv4e/net/nbuf.c | 8 ++++---- arch/m68k/mach-mcfv4e/net/net.c | 8 ++++---- arch/m68k/mach-mcfv4e/net/queue.c | 10 +++++----- 24 files changed, 94 insertions(+), 94 deletions(-) (limited to 'arch/m68k/mach-mcfv4e') diff --git a/arch/m68k/mach-mcfv4e/include/mach/clocks.h b/arch/m68k/mach-mcfv4e/include/mach/clocks.h index 50124b1948..daedb7aebe 100644 --- a/arch/m68k/mach-mcfv4e/include/mach/clocks.h +++ b/arch/m68k/mach-mcfv4e/include/mach/clocks.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/mach/debug_ll.h b/arch/m68k/mach-mcfv4e/include/mach/debug_ll.h index 064961d925..c58be70334 100644 --- a/arch/m68k/mach-mcfv4e/include/mach/debug_ll.h +++ b/arch/m68k/mach-mcfv4e/include/mach/debug_ll.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/mach/hardware.h b/arch/m68k/mach-mcfv4e/include/mach/hardware.h index 46dc08897f..118afa63ab 100644 --- a/arch/m68k/mach-mcfv4e/include/mach/hardware.h +++ b/arch/m68k/mach-mcfv4e/include/mach/hardware.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/mach/mcf54xx-regs.h b/arch/m68k/mach-mcfv4e/include/mach/mcf54xx-regs.h index e1b17d55e4..8dd5ed2c15 100644 --- a/arch/m68k/mach-mcfv4e/include/mach/mcf54xx-regs.h +++ b/arch/m68k/mach-mcfv4e/include/mach/mcf54xx-regs.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/dma_utils.h b/arch/m68k/mach-mcfv4e/include/proc/dma_utils.h index 4ebdd558c1..1cb27822ba 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/dma_utils.h +++ b/arch/m68k/mach-mcfv4e/include/proc/dma_utils.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/fec.h b/arch/m68k/mach-mcfv4e/include/proc/fec.h index 4c94774381..16bfaa6ded 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/fec.h +++ b/arch/m68k/mach-mcfv4e/include/proc/fec.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/fecbd.h b/arch/m68k/mach-mcfv4e/include/proc/fecbd.h index 92195490c8..d7551c6587 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/fecbd.h +++ b/arch/m68k/mach-mcfv4e/include/proc/fecbd.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_dma.h b/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_dma.h index 09adf8272a..ad7f1393c1 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_dma.h +++ b/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_dma.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_progCheck.h b/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_progCheck.h index f90600c7cd..a536f147c1 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_progCheck.h +++ b/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_progCheck.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_tasksInit.h b/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_tasksInit.h index bc6ec91f98..6b19d0262b 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_tasksInit.h +++ b/arch/m68k/mach-mcfv4e/include/proc/mcdapi/MCD_tasksInit.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/net/eth.h b/arch/m68k/mach-mcfv4e/include/proc/net/eth.h index 5240c0c945..e86d0646c4 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/net/eth.h +++ b/arch/m68k/mach-mcfv4e/include/proc/net/eth.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/net/nbuf.h b/arch/m68k/mach-mcfv4e/include/proc/net/nbuf.h index bc3a7a6924..8b6a89c27d 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/net/nbuf.h +++ b/arch/m68k/mach-mcfv4e/include/proc/net/nbuf.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/net/net.h b/arch/m68k/mach-mcfv4e/include/proc/net/net.h index a2ccd76510..d6877596b6 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/net/net.h +++ b/arch/m68k/mach-mcfv4e/include/proc/net/net.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/net/queue.h b/arch/m68k/mach-mcfv4e/include/proc/net/queue.h index c9da1c83a5..d5c13f8a50 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/net/queue.h +++ b/arch/m68k/mach-mcfv4e/include/proc/net/queue.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/processor.h b/arch/m68k/mach-mcfv4e/include/proc/processor.h index f49b65d97b..4f196bda9b 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/processor.h +++ b/arch/m68k/mach-mcfv4e/include/proc/processor.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/include/proc/ptrace.h b/arch/m68k/mach-mcfv4e/include/proc/ptrace.h index dd124291d6..5e120596d2 100644 --- a/arch/m68k/mach-mcfv4e/include/proc/ptrace.h +++ b/arch/m68k/mach-mcfv4e/include/proc/ptrace.h @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/mcdapi/Makefile b/arch/m68k/mach-mcfv4e/mcdapi/Makefile index 7e2d5ab466..52ddaf8581 100644 --- a/arch/m68k/mach-mcfv4e/mcdapi/Makefile +++ b/arch/m68k/mach-mcfv4e/mcdapi/Makefile @@ -2,20 +2,20 @@ # (C) Copyright 2007 Carsten Schlote # See file CREDITS for list of people who contributed to this project. # -# This file is part of U-Boot V2. +# This file is part of barebox. # -# U-Boot V2 is free software: you can redistribute it and/or modify +# barebox 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, either version 3 of the License, or # (at your option) any later version. # -# U-Boot V2 is distributed in the hope that it will be useful, +# barebox is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with U-Boot V2. If not, see . +# along with barebox. If not, see . # # diff --git a/arch/m68k/mach-mcfv4e/mcf_clocksource.c b/arch/m68k/mach-mcfv4e/mcf_clocksource.c index 926a592158..8fb2fba2ec 100644 --- a/arch/m68k/mach-mcfv4e/mcf_clocksource.c +++ b/arch/m68k/mach-mcfv4e/mcf_clocksource.c @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/mcf_reset_cpu.c b/arch/m68k/mach-mcfv4e/mcf_reset_cpu.c index dc04a270d1..c7b77abcf5 100644 --- a/arch/m68k/mach-mcfv4e/mcf_reset_cpu.c +++ b/arch/m68k/mach-mcfv4e/mcf_reset_cpu.c @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/multichannel_dma.c b/arch/m68k/mach-mcfv4e/multichannel_dma.c index 494fc68bde..acc104e4af 100644 --- a/arch/m68k/mach-mcfv4e/multichannel_dma.c +++ b/arch/m68k/mach-mcfv4e/multichannel_dma.c @@ -1,5 +1,5 @@ /* - * U-Boot Header File + * barebox Header File * * Generic Clocksource for V4E * diff --git a/arch/m68k/mach-mcfv4e/net/Makefile b/arch/m68k/mach-mcfv4e/net/Makefile index 45badfaaac..78c528f259 100644 --- a/arch/m68k/mach-mcfv4e/net/Makefile +++ b/arch/m68k/mach-mcfv4e/net/Makefile @@ -2,20 +2,20 @@ # (C) Copyright 2007 Carsten Schlote # See file CREDITS for list of people who contributed to this project. # -# This file is part of U-Boot V2. +# This file is part of barebox. # -# U-Boot V2 is free software: you can redistribute it and/or modify +# barebox 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, either version 3 of the License, or # (at your option) any later version. # -# U-Boot V2 is distributed in the hope that it will be useful, +# barebox is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with U-Boot V2. If not, see . +# along with barebox. If not, see . # # diff --git a/arch/m68k/mach-mcfv4e/net/nbuf.c b/arch/m68k/mach-mcfv4e/net/nbuf.c index 5dc6027e0e..234e75821a 100644 --- a/arch/m68k/mach-mcfv4e/net/nbuf.c +++ b/arch/m68k/mach-mcfv4e/net/nbuf.c @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/net/net.c b/arch/m68k/mach-mcfv4e/net/net.c index 1bc089bdd3..febabfeda0 100644 --- a/arch/m68k/mach-mcfv4e/net/net.c +++ b/arch/m68k/mach-mcfv4e/net/net.c @@ -2,20 +2,20 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file diff --git a/arch/m68k/mach-mcfv4e/net/queue.c b/arch/m68k/mach-mcfv4e/net/queue.c index e573fcfd58..9f779474ea 100644 --- a/arch/m68k/mach-mcfv4e/net/queue.c +++ b/arch/m68k/mach-mcfv4e/net/queue.c @@ -2,27 +2,27 @@ * Copyright (c) 2008 Carsten Schlote * See file CREDITS for list of people who contributed to this project. * - * This file is part of U-Boot V2. + * This file is part of barebox. * - * U-Boot V2 is free software: you can redistribute it and/or modify + * barebox 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, either version 3 of the License, or * (at your option) any later version. * - * U-Boot V2 is distributed in the hope that it will be useful, + * barebox is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with U-Boot V2. If not, see . + * along with barebox. If not, see . */ /** @file * Implements a first in, first out linked list * * @note Simple selfcontaining basic code - * @todo Replace by u-boot standard list functions + * @todo Replace by barebox standard list functions */ #include #include -- cgit v1.2.3