From 2004fb2881516521b38b6b10734a430a5afc6701 Mon Sep 17 00:00:00 2001
From: Alexandre Abadie <alexandre.abadie@inria.fr>
Date: Tue, 27 Feb 2018 14:30:11 +0100
Subject: [PATCH] boards/nucleo-f103rb: rename to marketing name

---
 boards/{nucleo-f103 => nucleo-f103rb}/Makefile              | 0
 boards/{nucleo-f103 => nucleo-f103rb}/Makefile.dep          | 0
 boards/{nucleo-f103 => nucleo-f103rb}/Makefile.features     | 0
 boards/{nucleo-f103 => nucleo-f103rb}/Makefile.include      | 0
 boards/{nucleo-f103 => nucleo-f103rb}/include/periph_conf.h | 6 +++---
 examples/dtls-echo/Makefile                                 | 2 +-
 examples/gnrc_border_router/Makefile                        | 2 +-
 examples/gnrc_networking/Makefile                           | 2 +-
 examples/gnrc_tftp/Makefile                                 | 2 +-
 examples/javascript/Makefile                                | 2 +-
 tests/gnrc_ipv6_ext/Makefile                                | 2 +-
 tests/gnrc_netif/Makefile                                   | 2 +-
 tests/gnrc_sixlowpan/Makefile                               | 2 +-
 tests/gnrc_udp/Makefile                                     | 2 +-
 tests/mpu_stack_guard/Makefile                              | 2 +-
 tests/pkg_cmsis-dsp/Makefile                                | 4 ++--
 tests/pkg_fatfs/Makefile                                    | 2 +-
 tests/pkg_fatfs_vfs/Makefile                                | 2 +-
 tests/unittests/Makefile                                    | 4 ++--
 19 files changed, 19 insertions(+), 19 deletions(-)
 rename boards/{nucleo-f103 => nucleo-f103rb}/Makefile (100%)
 rename boards/{nucleo-f103 => nucleo-f103rb}/Makefile.dep (100%)
 rename boards/{nucleo-f103 => nucleo-f103rb}/Makefile.features (100%)
 rename boards/{nucleo-f103 => nucleo-f103rb}/Makefile.include (100%)
 rename boards/{nucleo-f103 => nucleo-f103rb}/include/periph_conf.h (98%)

diff --git a/boards/nucleo-f103/Makefile b/boards/nucleo-f103rb/Makefile
similarity index 100%
rename from boards/nucleo-f103/Makefile
rename to boards/nucleo-f103rb/Makefile
diff --git a/boards/nucleo-f103/Makefile.dep b/boards/nucleo-f103rb/Makefile.dep
similarity index 100%
rename from boards/nucleo-f103/Makefile.dep
rename to boards/nucleo-f103rb/Makefile.dep
diff --git a/boards/nucleo-f103/Makefile.features b/boards/nucleo-f103rb/Makefile.features
similarity index 100%
rename from boards/nucleo-f103/Makefile.features
rename to boards/nucleo-f103rb/Makefile.features
diff --git a/boards/nucleo-f103/Makefile.include b/boards/nucleo-f103rb/Makefile.include
similarity index 100%
rename from boards/nucleo-f103/Makefile.include
rename to boards/nucleo-f103rb/Makefile.include
diff --git a/boards/nucleo-f103/include/periph_conf.h b/boards/nucleo-f103rb/include/periph_conf.h
similarity index 98%
rename from boards/nucleo-f103/include/periph_conf.h
rename to boards/nucleo-f103rb/include/periph_conf.h
index b074368e37..78b0ea4ac7 100644
--- a/boards/nucleo-f103/include/periph_conf.h
+++ b/boards/nucleo-f103rb/include/periph_conf.h
@@ -7,13 +7,13 @@
  */
 
 /**
- * @defgroup    boards_nucleo-f103 STM32 Nucleo-F103
+ * @defgroup    boards_nucleo-f103rb STM32 Nucleo-F103RB
  * @ingroup     boards_common_nucleo64
- * @brief       Support for the STM32 Nucleo-F103
+ * @brief       Support for the STM32 Nucleo-F103RB
  * @{
  *
  * @file
- * @brief       Peripheral MCU configuration for the nucleo-f103 board
+ * @brief       Peripheral MCU configuration for the nucleo-f103rb board
  *
  * @author      Víctor Ariño <victor.arino@triagnosys.com>
  */
diff --git a/examples/dtls-echo/Makefile b/examples/dtls-echo/Makefile
index ce15c00e96..8b3f82feff 100644
--- a/examples/dtls-echo/Makefile
+++ b/examples/dtls-echo/Makefile
@@ -16,7 +16,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon b-l072z-lrwan1 bluepill calliope-mini
                              cc2650-launchpad cc2650stk maple-mini \
                              microbit nrf51dongle nrf6310 nucleo32-f031 \
                              nucleo32-f042 nucleo32-f303 nucleo32-l031 nucleo-f030r8 \
-                             nucleo-f070rb nucleo-f072rb nucleo-f103 nucleo-f302 nucleo-f334 \
+                             nucleo-f070rb nucleo-f072rb nucleo-f103rb nucleo-f302 nucleo-f334 \
                              nucleo-l053 nucleo-l073 opencm904 \
                              spark-core stm32f0discovery yunjia-nrf51822
 
diff --git a/examples/gnrc_border_router/Makefile b/examples/gnrc_border_router/Makefile
index d55d90baa2..d7f250f34f 100644
--- a/examples/gnrc_border_router/Makefile
+++ b/examples/gnrc_border_router/Makefile
@@ -11,7 +11,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon b-l072z-lrwan1 bluepill calliope-mini
                              cc2650-launchpad cc2650stk maple-mini \
                              microbit msb-430 msb-430h nrf51dongle nrf6310 \
                              nucleo32-f031 nucleo32-f042 nucleo32-f303 nucleo32-l031 \
-                             nucleo-f030r8 nucleo-f070rb nucleo-f072rb nucleo-f103 nucleo-f302 \
+                             nucleo-f030r8 nucleo-f070rb nucleo-f072rb nucleo-f103rb nucleo-f302 \
                              nucleo-f334 nucleo-l053 nucleo-l073 opencm904 \
                              spark-core stm32f0discovery telosb weio wsn430-v1_3b \
                              wsn430-v1_4 yunjia-nrf51822 z1
diff --git a/examples/gnrc_networking/Makefile b/examples/gnrc_networking/Makefile
index 3fea43f10e..bcae12b8d7 100644
--- a/examples/gnrc_networking/Makefile
+++ b/examples/gnrc_networking/Makefile
@@ -9,7 +9,7 @@ RIOTBASE ?= $(CURDIR)/../..
 
 BOARD_INSUFFICIENT_MEMORY := calliope-mini chronos microbit msb-430 msb-430h \
                              nucleo32-f031 nucleo32-f042 nucleo32-f303 nucleo32-l031 \
-                             nucleo-f030r8 nucleo-f070rb nucleo-f072rb nucleo-f103 nucleo-f302 \
+                             nucleo-f030r8 nucleo-f070rb nucleo-f072rb nucleo-f103rb nucleo-f302 \
                              nucleo-f334 nucleo-l053 spark-core stm32f0discovery telosb \
                              wsn430-v1_3b wsn430-v1_4 z1
 
diff --git a/examples/gnrc_tftp/Makefile b/examples/gnrc_tftp/Makefile
index 3aa3ffa5f8..981057f2e2 100644
--- a/examples/gnrc_tftp/Makefile
+++ b/examples/gnrc_tftp/Makefile
@@ -10,7 +10,7 @@ RIOTBASE ?= $(CURDIR)/../..
 BOARD_INSUFFICIENT_MEMORY := airfy-beacon b-l072z-lrwan1 bluepill calliope-mini chronos \
                              microbit msb-430 msb-430h nrf51dongle nrf6310 nucleo32-f031 \
                              nucleo32-f042 nucleo32-f303 nucleo32-l031 nucleo-f030r8 \
-                             nucleo-f070rb nucleo-f072rb nucleo-f103 nucleo-f302 nucleo-f334 \
+                             nucleo-f070rb nucleo-f072rb nucleo-f103rb nucleo-f302 nucleo-f334 \
                              nucleo-l053 spark-core stm32f0discovery \
                              telosb wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
 
diff --git a/examples/javascript/Makefile b/examples/javascript/Makefile
index 8ab65a4388..9a83826d7f 100644
--- a/examples/javascript/Makefile
+++ b/examples/javascript/Makefile
@@ -10,7 +10,7 @@ RIOTBASE ?= $(CURDIR)/../..
 BOARD_INSUFFICIENT_MEMORY := airfy-beacon b-l072z-lrwan1 bluepill calliope-mini \
                              cc2650-launchpad cc2650stk maple-mini \
                              microbit nrf51dongle nrf6310 nucleo-f030r8 nucleo-f070rb \
-                             nucleo-f072rb nucleo-f103 nucleo-f302 nucleo-f334 nucleo-f410 \
+                             nucleo-f072rb nucleo-f103rb nucleo-f302 nucleo-f334 nucleo-f410 \
                              nucleo-l053 nucleo-l073 nucleo32-f031 nucleo32-f042 \
                              nucleo32-f303 nucleo32-l031 opencm904 \
                              spark-core stm32f0discovery yunjia-nrf51822 \
diff --git a/tests/gnrc_ipv6_ext/Makefile b/tests/gnrc_ipv6_ext/Makefile
index da91eeace0..2648694a8f 100644
--- a/tests/gnrc_ipv6_ext/Makefile
+++ b/tests/gnrc_ipv6_ext/Makefile
@@ -3,7 +3,7 @@ include ../Makefile.tests_common
 
 BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos maple-mini msb-430 msb-430h \
                              nrf51dongle nrf6310 nucleo32-f031 nucleo32-f042 \
-                             nucleo32-l031 nucleo-f030r8 nucleo-f103 nucleo-f334 nucleo-l053 \
+                             nucleo32-l031 nucleo-f030r8 nucleo-f103rb nucleo-f334 nucleo-l053 \
                              spark-core stm32f0discovery telosb \
                              wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
 
diff --git a/tests/gnrc_netif/Makefile b/tests/gnrc_netif/Makefile
index 45cb17cd68..ebf82f6a63 100644
--- a/tests/gnrc_netif/Makefile
+++ b/tests/gnrc_netif/Makefile
@@ -3,7 +3,7 @@ include ../Makefile.tests_common
 BOARD_INSUFFICIENT_MEMORY := airfy-beacon b-l072z-lrwan1 bluepill calliope-mini \
                              cc2650-launchpad cc2650stk chronos maple-mini \
                              microbit msb-430 msb-430h nrf51dongle nrf6310 \
-                             nucleo-f030r8 nucleo-f070rb nucleo-f072rb nucleo-f103 \
+                             nucleo-f030r8 nucleo-f070rb nucleo-f072rb nucleo-f103rb \
                              nucleo-f302 nucleo-f334 nucleo-l053 nucleo-l073 \
                              nucleo32-f031 nucleo32-f042 nucleo32-f303 \
                              nucleo32-l031 opencm904 spark-core \
diff --git a/tests/gnrc_sixlowpan/Makefile b/tests/gnrc_sixlowpan/Makefile
index 92e422c695..08f747d79b 100644
--- a/tests/gnrc_sixlowpan/Makefile
+++ b/tests/gnrc_sixlowpan/Makefile
@@ -3,7 +3,7 @@ include ../Makefile.tests_common
 
 BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos maple-mini msb-430 msb-430h \
                              nrf51dongle nrf6310 nucleo32-f031 nucleo32-f042 \
-                             nucleo32-l031 nucleo-f030r8 nucleo-f070rb nucleo-f103 \
+                             nucleo32-l031 nucleo-f030r8 nucleo-f070rb nucleo-f103rb \
                              nucleo-f334 nucleo-l053 spark-core \
                              stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 \
                              yunjia-nrf51822 z1
diff --git a/tests/gnrc_udp/Makefile b/tests/gnrc_udp/Makefile
index ec34ffc80b..a522444da6 100644
--- a/tests/gnrc_udp/Makefile
+++ b/tests/gnrc_udp/Makefile
@@ -2,7 +2,7 @@ include ../Makefile.tests_common
 
 BOARD_INSUFFICIENT_MEMORY := calliope-mini chronos microbit msb-430 msb-430h \
                              nucleo32-f031 nucleo32-f042 nucleo32-f303 nucleo32-l031 \
-                             nucleo-f030r8 nucleo-f070rb nucleo-f072rb nucleo-f103 nucleo-f302 \
+                             nucleo-f030r8 nucleo-f070rb nucleo-f072rb nucleo-f103rb nucleo-f302 \
                              nucleo-f334 nucleo-l053 spark-core stm32f0discovery telosb \
                              wsn430-v1_3b wsn430-v1_4 z1
 
diff --git a/tests/mpu_stack_guard/Makefile b/tests/mpu_stack_guard/Makefile
index 284e64b066..5ae70b45b0 100644
--- a/tests/mpu_stack_guard/Makefile
+++ b/tests/mpu_stack_guard/Makefile
@@ -18,7 +18,7 @@ BOARD_WHITELIST += mbed_lpc1768     # cortex-m3
 BOARD_WHITELIST += msbiot           # cortex-m4f
 BOARD_WHITELIST += mulle            # cortex-m4
 BOARD_WHITELIST += nrf52dk          # cortex-m4f
-BOARD_WHITELIST += nucleo-f103      # cortex-m3
+BOARD_WHITELIST += nucleo-f103rb      # cortex-m3
 BOARD_WHITELIST += nucleo-f207zg    # cortex-m3
 BOARD_WHITELIST += nucleo-f303      # cortex-m4f
 BOARD_WHITELIST += nucleo-f334      # cortex-m4f
diff --git a/tests/pkg_cmsis-dsp/Makefile b/tests/pkg_cmsis-dsp/Makefile
index e89f5362da..e0d4b663c2 100644
--- a/tests/pkg_cmsis-dsp/Makefile
+++ b/tests/pkg_cmsis-dsp/Makefile
@@ -14,8 +14,8 @@ BOARD_WHITELIST := \
   msbiot \
   mulle \
   nucleo-f091rc \
-  nucleo-f103 \
-  nucleo-f103 \
+  nucleo-f103rb \
+  nucleo-f103rb \
   nucleo-f303 \
   nucleo-f334 \
   nucleo-f401 \
diff --git a/tests/pkg_fatfs/Makefile b/tests/pkg_fatfs/Makefile
index 4bb8bb4f16..4039b5878d 100644
--- a/tests/pkg_fatfs/Makefile
+++ b/tests/pkg_fatfs/Makefile
@@ -13,7 +13,7 @@ BOARD_WHITELIST := airfy-beacon arduino-due arduino-duemilanove arduino-mega2560
                    mulle nrf52840dk nrf52dk nrf6310 nucleo-f207zg nucleo144-f303 \
                    nucleo144-f412 nucleo144-f413 nucleo144-f429 nucleo144-f446 \
                    nucleo32-f031 nucleo32-f042 nucleo32-f303 nucleo32-l031 \
-                   nucleo32-l432 nucleo-f072rb nucleo-f091rc nucleo-f103 nucleo-f302 \
+                   nucleo32-l432 nucleo-f072rb nucleo-f091rc nucleo-f103rb nucleo-f302 \
                    nucleo-f303 nucleo-f334 nucleo-f401 nucleo-f410 nucleo-f411 \
                    nucleo-f446 nucleo-l053 nucleo-l073 nucleo-l152 nucleo-l476 \
                    nz32-sc151 openmote-cc2538 pba-d-01-kw2x remote-pa remote-reva \
diff --git a/tests/pkg_fatfs_vfs/Makefile b/tests/pkg_fatfs_vfs/Makefile
index 304090f41c..94b9ea5b7f 100644
--- a/tests/pkg_fatfs_vfs/Makefile
+++ b/tests/pkg_fatfs_vfs/Makefile
@@ -36,7 +36,7 @@ BOARD_WHITELIST := airfy-beacon arduino-due arduino-duemilanove arduino-mega2560
                    mulle nrf52840dk nrf52dk nrf6310 nucleo-f207zg nucleo144-f303 \
                    nucleo144-f412 nucleo144-f413 nucleo144-f429 nucleo144-f446 \
                    nucleo32-f042 nucleo32-f303 nucleo32-l031 \
-                   nucleo32-l432 nucleo-f072rb nucleo-f091rc nucleo-f103 nucleo-f302 \
+                   nucleo32-l432 nucleo-f072rb nucleo-f091rc nucleo-f103rb nucleo-f302 \
                    nucleo-f303 nucleo-f334 nucleo-f401 nucleo-f410 nucleo-f411 \
                    nucleo-f446 nucleo-l053 nucleo-l073 nucleo-l152 nucleo-l476 \
                    nz32-sc151 openmote-cc2538 pba-d-01-kw2x remote-pa remote-reva \
diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile
index 8010242959..73ab3d4fa7 100644
--- a/tests/unittests/Makefile
+++ b/tests/unittests/Makefile
@@ -37,7 +37,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon \
                              nucleo-f070rb \
                              nucleo-f072rb \
                              nucleo-f091rc \
-                             nucleo-f103 \
+                             nucleo-f103rb \
                              nucleo-f302 \
                              nucleo-f334 \
                              nucleo-f410 \
@@ -134,7 +134,7 @@ ARM_CORTEX_M_BOARDS := airfy-beacon \
                        nucleo-f070rb \
                        nucleo-f072rb \
                        nucleo-f091rc \
-                       nucleo-f103 \
+                       nucleo-f103rb \
                        nucleo-f302 \
                        nucleo-f303 \
                        nucleo-f334 \
-- 
GitLab