diff --git a/core/include/msg.h b/core/include/msg.h index fe9792caf6..8a58bb26a9 100644 --- a/core/include/msg.h +++ b/core/include/msg.h @@ -1,5 +1,5 @@ /** - * There are two ways to use the IPC Messaging system of µkleos. The default is synchronous + * There are two ways to use the IPC Messaging system of RIOT. The default is synchronous * messaging. In this manner, messages are either dropped when the receiver is not waiting and the * message was sent non-blocking, or will be delivered immediately when the receiver calls * msg_receive(msg_t* m). To use asynchronous messaging any thread can create its own queue by diff --git a/core/kernel_init.c b/core/kernel_init.c index 6af76399cf..3124ce65f5 100644 --- a/core/kernel_init.c +++ b/core/kernel_init.c @@ -68,7 +68,7 @@ static char idle_stack[KERNEL_CONF_STACKSIZE_IDLE]; void kernel_init(void) { dINT(); - printf("kernel_init(): This is ukleos!\n"); + printf("kernel_init(): This is RIOT!\n"); sched_init(); diff --git a/core/sched.c b/core/sched.c index fd905db895..120e818156 100644 --- a/core/sched.c +++ b/core/sched.c @@ -1,5 +1,5 @@ /** - * The µkleos scheduler implementation + * The RIOT scheduler implementation * * Copyright (C) 2010 Freie Universität Berlin * diff --git a/cpu/arm_common/bootloader.c b/cpu/arm_common/bootloader.c index f68a75e07b..ae3b72b57c 100644 --- a/cpu/arm_common/bootloader.c +++ b/cpu/arm_common/bootloader.c @@ -4,14 +4,14 @@ Copyright 2008-2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/arm_common/include/arm_common.h b/cpu/arm_common/include/arm_common.h index b4fa499492..0e40e7e632 100644 --- a/cpu/arm_common/include/arm_common.h +++ b/cpu/arm_common/include/arm_common.h @@ -4,14 +4,14 @@ Copyright 2008-2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/arm_common/syscalls.c b/cpu/arm_common/syscalls.c index 14dcda90a1..fa79909da4 100644 --- a/cpu/arm_common/syscalls.c +++ b/cpu/arm_common/syscalls.c @@ -4,14 +4,14 @@ Copyright 2008, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/cc430/cc430-gpioint.c b/cpu/cc430/cc430-gpioint.c index 56cdbf1511..6775b81f9e 100644 --- a/cpu/cc430/cc430-gpioint.c +++ b/cpu/cc430/cc430-gpioint.c @@ -4,14 +4,14 @@ Copyright 2010, Freie Universität Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of µkleos. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/cc430/cc430-rtc.c b/cpu/cc430/cc430-rtc.c index 8d2b43fcb7..f37de37328 100644 --- a/cpu/cc430/cc430-rtc.c +++ b/cpu/cc430/cc430-rtc.c @@ -4,14 +4,14 @@ Copyright 2010, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of µkleos. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/cc430/include/cc430-rtc.h b/cpu/cc430/include/cc430-rtc.h index 15e27bdb40..b3b7d5596c 100644 --- a/cpu/cc430/include/cc430-rtc.h +++ b/cpu/cc430/include/cc430-rtc.h @@ -4,14 +4,14 @@ Copyright 2010, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of µkleos. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. @@ -38,7 +38,7 @@ and the mailinglist (subscription via web site) * @file cc430-rtc.h * @brief CC430 Real Time Clock * - * @author Freie Universität Berlin, Computer Systems & Telematics, µkleos + * @author Freie Universität Berlin, Computer Systems & Telematics, RIOT * @version $Revision $ */ diff --git a/cpu/lpc214x/include/cpu.h b/cpu/lpc214x/include/cpu.h index e439e61fd1..0a8dcdad47 100644 --- a/cpu/lpc214x/include/cpu.h +++ b/cpu/lpc214x/include/cpu.h @@ -4,14 +4,14 @@ Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/lpc2387/cpu.c b/cpu/lpc2387/cpu.c index c68bb6d6b9..07ed4856c6 100644 --- a/cpu/lpc2387/cpu.c +++ b/cpu/lpc2387/cpu.c @@ -4,14 +4,14 @@ Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/lpc2387/gpioint/lpc2387-gpioint.c b/cpu/lpc2387/gpioint/lpc2387-gpioint.c index 4941727454..12cf07d27b 100644 --- a/cpu/lpc2387/gpioint/lpc2387-gpioint.c +++ b/cpu/lpc2387/gpioint/lpc2387-gpioint.c @@ -4,14 +4,14 @@ Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/lpc2387/include/cpu-conf.h b/cpu/lpc2387/include/cpu-conf.h index 9e6a2dde94..fb4706efb4 100644 --- a/cpu/lpc2387/include/cpu-conf.h +++ b/cpu/lpc2387/include/cpu-conf.h @@ -4,14 +4,14 @@ Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/lpc2387/include/cpu.h b/cpu/lpc2387/include/cpu.h index 70e2bc7e30..659ba8c84c 100644 --- a/cpu/lpc2387/include/cpu.h +++ b/cpu/lpc2387/include/cpu.h @@ -4,14 +4,14 @@ Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/lpc2387/include/lpc2387-adc.h b/cpu/lpc2387/include/lpc2387-adc.h index 9f832a5ae6..a861638a13 100644 --- a/cpu/lpc2387/include/lpc2387-adc.h +++ b/cpu/lpc2387/include/lpc2387-adc.h @@ -4,14 +4,14 @@ Copyright 2008, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/lpc2387/include/lpc2387-rtc.h b/cpu/lpc2387/include/lpc2387-rtc.h index 080a330cfc..f37425949d 100644 --- a/cpu/lpc2387/include/lpc2387-rtc.h +++ b/cpu/lpc2387/include/lpc2387-rtc.h @@ -4,14 +4,14 @@ Copyright 2008, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/lpc2387/linkerscript.x b/cpu/lpc2387/linkerscript.x index efa60aaa29..79ca56a93b 100644 --- a/cpu/lpc2387/linkerscript.x +++ b/cpu/lpc2387/linkerscript.x @@ -4,14 +4,14 @@ Copyright 2008-2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/lpc2387/lpc2387-adc.c b/cpu/lpc2387/lpc2387-adc.c index f3348a3d18..5d75c3fd33 100644 --- a/cpu/lpc2387/lpc2387-adc.c +++ b/cpu/lpc2387/lpc2387-adc.c @@ -4,14 +4,14 @@ Copyright 2008, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/lpc2387/lpc2387-lpm.c b/cpu/lpc2387/lpc2387-lpm.c index e14cd9a30d..141a2ffe25 100644 --- a/cpu/lpc2387/lpc2387-lpm.c +++ b/cpu/lpc2387/lpc2387-lpm.c @@ -4,14 +4,14 @@ Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/lpc2387/rtc/lpc2387-rtc.c b/cpu/lpc2387/rtc/lpc2387-rtc.c index 4642042a6b..5ff30bd274 100644 --- a/cpu/lpc2387/rtc/lpc2387-rtc.c +++ b/cpu/lpc2387/rtc/lpc2387-rtc.c @@ -4,14 +4,14 @@ Copyright 2008-2010, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/msp430-common/cpu.c b/cpu/msp430-common/cpu.c index a297ec08d4..c7288cb94a 100644 --- a/cpu/msp430-common/cpu.c +++ b/cpu/msp430-common/cpu.c @@ -4,14 +4,14 @@ Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/msp430-common/hwtimer_cpu.c b/cpu/msp430-common/hwtimer_cpu.c index 0427e32a3f..41024ac341 100644 --- a/cpu/msp430-common/hwtimer_cpu.c +++ b/cpu/msp430-common/hwtimer_cpu.c @@ -4,14 +4,14 @@ Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/msp430-common/include/cpu-conf.h b/cpu/msp430-common/include/cpu-conf.h index a79e422f54..a7cca6aa22 100644 --- a/cpu/msp430-common/include/cpu-conf.h +++ b/cpu/msp430-common/include/cpu-conf.h @@ -4,14 +4,14 @@ Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/msp430-common/include/cpu.h b/cpu/msp430-common/include/cpu.h index 99d49f1131..a3e0a1df8c 100644 --- a/cpu/msp430-common/include/cpu.h +++ b/cpu/msp430-common/include/cpu.h @@ -4,14 +4,14 @@ Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/msp430-common/include/hwtimer_cpu.h b/cpu/msp430-common/include/hwtimer_cpu.h index 3151539218..a60012b02e 100644 --- a/cpu/msp430-common/include/hwtimer_cpu.h +++ b/cpu/msp430-common/include/hwtimer_cpu.h @@ -4,14 +4,14 @@ Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved. These sources were developed at the Freie Universitaet Berlin, Computer Systems and Telematics group (http://cst.mi.fu-berlin.de). ------------------------------------------------------------------------------- -This file is part of FeuerWare. +This file is part of RIOT. This program 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. -FeuerWare is distributed in the hope that it will be useful, but WITHOUT +RIOT 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. diff --git a/cpu/msp430-common/startup.c b/cpu/msp430-common/startup.c index 230a0fd800..bad3bb95cc 100644 --- a/cpu/msp430-common/startup.c +++ b/cpu/msp430-common/startup.c @@ -9,7 +9,7 @@ __attribute__ ((constructor)) static void startup(void) { board_init(); - puts("ukleos MSP430 hardware initialization complete.\n"); + puts("RIOT MSP430 hardware initialization complete.\n"); kernel_init(); } diff --git a/dist/tools/testsuite/generate_html.sh b/dist/tools/testsuite/generate_html.sh index 2d4b475f74..8944bf8f5c 100755 --- a/dist/tools/testsuite/generate_html.sh +++ b/dist/tools/testsuite/generate_html.sh @@ -6,7 +6,7 @@ HTMLDIR=${TOOLROOT}/tools/testsuite/html test -f ~/.buildbot && . ~/.buildbot -OUTFILE=${HTMLFILE:-${HOME}/firekernel.html} +OUTFILE=${HTMLFILE:-${HOME}/riot.html} LOGDIR=${BUILDLOGS:-${HOME}/buildlogs} { diff --git a/dist/tools/testsuite/svn_test_revision.sh b/dist/tools/testsuite/svn_test_revision.sh deleted file mode 100755 index 239ab4b199..0000000000 --- a/dist/tools/testsuite/svn_test_revision.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash - -. ~/.buildbot - -REPO=${REPO:-https://svn.mi.fu-berlin.de/msb/FeuerWare/trunk} -LOGDIR=${LOGDIR:-${HOME}/buildlogs} - -REVISION=${1:-HEAD} - -LOGBASE="`date +%F-%Hh-%Mm-%Ss`-r${REVISION}-test.log" - -LOGFILE="${LOGDIR}/${LOGBASE}" -TMPDIR=`mktemp -d /dev/shm/svn_test_repo.XXXXXXXXXX` - -TOOLROOT=${TOOLROOT:-.} - -if [ ! -d ${TMPDIR} ]; then exit 1; fi - -touch ${LOGFILE}.lock - -{ - echo "${0} runnning checkout/build/test cycle." - echo "Repo: ${REPO}" - echo "Revision: ${REVISION}" - echo "Temporary directory: ${TMPDIR}..." - echo "Logfilename: ${LOGBASE}" - - cd ${TMPDIR} && - - echo "Checking out..." && - svn co -q -r ${REVISION} ${REPO} && - echo "Done." && - - cd ${TMPDIR}/trunk/board/msba2/tools && make && - cd ${TMPDIR}/trunk && - bash ${TOOLROOT}/tools/testsuite/run_tests.sh - - echo - echo "Test run completed." -} 2>&1 | tee ${LOGFILE} - -rm -f ${LOGFILE}.lock -rm -f ${LOGFILE}.parsed - -rm -rf ${TMPDIR} - diff --git a/doc/doxygen/riot.doxyfile b/doc/doxygen/riot.doxyfile index 490fd04f21..a46ed20a2b 100644 --- a/doc/doxygen/riot.doxyfile +++ b/doc/doxygen/riot.doxyfile @@ -4,7 +4,7 @@ # Project related configuration options #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 -PROJECT_NAME = µkleos +PROJECT_NAME = RIOT PROJECT_NUMBER = OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO @@ -123,8 +123,8 @@ IGNORE_PREFIX = GENERATE_HTML = YES HTML_OUTPUT = html HTML_FILE_EXTENSION = .html -HTML_HEADER = src/ukleos-header.html -HTML_FOOTER = src/ukleos-footer.html +HTML_HEADER = src/riot-header.html +HTML_FOOTER = src/riot-footer.html HTML_STYLESHEET = HTML_ALIGN_MEMBERS = YES HTML_DYNAMIC_SECTIONS = YES diff --git a/doc/doxygen/src/ukleos-footer.html b/doc/doxygen/src/riot-footer.html similarity index 100% rename from doc/doxygen/src/ukleos-footer.html rename to doc/doxygen/src/riot-footer.html diff --git a/doc/doxygen/src/ukleos-header.html b/doc/doxygen/src/riot-header.html similarity index 82% rename from doc/doxygen/src/ukleos-header.html rename to doc/doxygen/src/riot-header.html index 0f98f639d4..f54fa45185 100644 --- a/doc/doxygen/src/ukleos-header.html +++ b/doc/doxygen/src/riot-header.html @@ -4,7 +4,7 @@