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

---
 boards/{nucleo-f070 => nucleo-f070rb}/Makefile              | 0
 boards/{nucleo-f070 => nucleo-f070rb}/Makefile.dep          | 0
 boards/{nucleo-f070 => nucleo-f070rb}/Makefile.features     | 0
 boards/{nucleo-f070 => nucleo-f070rb}/Makefile.include      | 0
 boards/{nucleo-f070 => nucleo-f070rb}/include/periph_conf.h | 6 +++---
 examples/dtls-echo/Makefile                                 | 2 +-
 examples/emcute_mqttsn/Makefile                             | 2 +-
 examples/gnrc_border_router/Makefile                        | 2 +-
 examples/gnrc_networking/Makefile                           | 2 +-
 examples/gnrc_tftp/Makefile                                 | 2 +-
 examples/javascript/Makefile                                | 2 +-
 examples/posix_sockets/Makefile                             | 2 +-
 tests/conn_can/Makefile                                     | 2 +-
 tests/gnrc_netif/Makefile                                   | 2 +-
 tests/gnrc_sixlowpan/Makefile                               | 2 +-
 tests/gnrc_tcp_client/Makefile                              | 2 +-
 tests/gnrc_tcp_server/Makefile                              | 2 +-
 tests/gnrc_udp/Makefile                                     | 2 +-
 tests/pkg_libcoap/Makefile                                  | 2 +-
 tests/unittests/Makefile                                    | 4 ++--
 20 files changed, 19 insertions(+), 19 deletions(-)
 rename boards/{nucleo-f070 => nucleo-f070rb}/Makefile (100%)
 rename boards/{nucleo-f070 => nucleo-f070rb}/Makefile.dep (100%)
 rename boards/{nucleo-f070 => nucleo-f070rb}/Makefile.features (100%)
 rename boards/{nucleo-f070 => nucleo-f070rb}/Makefile.include (100%)
 rename boards/{nucleo-f070 => nucleo-f070rb}/include/periph_conf.h (97%)

diff --git a/boards/nucleo-f070/Makefile b/boards/nucleo-f070rb/Makefile
similarity index 100%
rename from boards/nucleo-f070/Makefile
rename to boards/nucleo-f070rb/Makefile
diff --git a/boards/nucleo-f070/Makefile.dep b/boards/nucleo-f070rb/Makefile.dep
similarity index 100%
rename from boards/nucleo-f070/Makefile.dep
rename to boards/nucleo-f070rb/Makefile.dep
diff --git a/boards/nucleo-f070/Makefile.features b/boards/nucleo-f070rb/Makefile.features
similarity index 100%
rename from boards/nucleo-f070/Makefile.features
rename to boards/nucleo-f070rb/Makefile.features
diff --git a/boards/nucleo-f070/Makefile.include b/boards/nucleo-f070rb/Makefile.include
similarity index 100%
rename from boards/nucleo-f070/Makefile.include
rename to boards/nucleo-f070rb/Makefile.include
diff --git a/boards/nucleo-f070/include/periph_conf.h b/boards/nucleo-f070rb/include/periph_conf.h
similarity index 97%
rename from boards/nucleo-f070/include/periph_conf.h
rename to boards/nucleo-f070rb/include/periph_conf.h
index 3149dad1bf..7dd6a68504 100644
--- a/boards/nucleo-f070/include/periph_conf.h
+++ b/boards/nucleo-f070rb/include/periph_conf.h
@@ -8,13 +8,13 @@
  */
 
 /**
- * @defgroup    boards_nucleo-f070 STM32 Nucleo-F070
+ * @defgroup    boards_nucleo-f070rb STM32 Nucleo-F070RB
  * @ingroup     boards_common_nucleo64
- * @brief       Support for the STM32 Nucleo-F070
+ * @brief       Support for the STM32 Nucleo-F070RB
  * @{
  *
  * @file
- * @brief       Peripheral MCU configuration for the nucleo-f070 board
+ * @brief       Peripheral MCU configuration for the nucleo-f070rb board
  *
  * @author      Hauke Petersen <hauke.petersen@fu-berlin.de>
  * @author      Alexandre Abadie <alexandre.abadie@inria.fr>
diff --git a/examples/dtls-echo/Makefile b/examples/dtls-echo/Makefile
index c3f5522fc7..e6b987950c 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-f070 nucleo-f072 nucleo-f103 nucleo-f302 nucleo-f334 \
+                             nucleo-f070rb nucleo-f072 nucleo-f103 nucleo-f302 nucleo-f334 \
                              nucleo-l053 nucleo-l073 opencm904 \
                              spark-core stm32f0discovery yunjia-nrf51822
 
diff --git a/examples/emcute_mqttsn/Makefile b/examples/emcute_mqttsn/Makefile
index 0fb24ea8b0..c699d17192 100644
--- a/examples/emcute_mqttsn/Makefile
+++ b/examples/emcute_mqttsn/Makefile
@@ -9,7 +9,7 @@ RIOTBASE ?= $(CURDIR)/../..
 
 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \
                              chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
-                             nucleo32-f303 nucleo32-l031 nucleo-f030r8 nucleo-f070 \
+                             nucleo32-f303 nucleo32-l031 nucleo-f030r8 nucleo-f070rb \
                              nucleo-f072 nucleo-f302 nucleo-f334 nucleo-l053 \
                              stm32f0discovery telosb waspmote-pro wsn430-v1_3b \
                              wsn430-v1_4 z1 mega-xplained
diff --git a/examples/gnrc_border_router/Makefile b/examples/gnrc_border_router/Makefile
index 27555cf14d..5c8dac1953 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-f070 nucleo-f072 nucleo-f103 nucleo-f302 \
+                             nucleo-f030r8 nucleo-f070rb nucleo-f072 nucleo-f103 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 a2c2bb745e..4d03828170 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-f070 nucleo-f072 nucleo-f103 nucleo-f302 \
+                             nucleo-f030r8 nucleo-f070rb nucleo-f072 nucleo-f103 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 060eed987b..324bb36d97 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-f070 nucleo-f072 nucleo-f103 nucleo-f302 nucleo-f334 \
+                             nucleo-f070rb nucleo-f072 nucleo-f103 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 a62c0d92ab..26c018cee6 100644
--- a/examples/javascript/Makefile
+++ b/examples/javascript/Makefile
@@ -9,7 +9,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-f070 \
+                             microbit nrf51dongle nrf6310 nucleo-f030r8 nucleo-f070rb \
                              nucleo-f072 nucleo-f103 nucleo-f302 nucleo-f334 nucleo-f410 \
                              nucleo-l053 nucleo-l073 nucleo32-f031 nucleo32-f042 \
                              nucleo32-f303 nucleo32-l031 opencm904 \
diff --git a/examples/posix_sockets/Makefile b/examples/posix_sockets/Makefile
index 5e1ebb8b83..94e442fc36 100644
--- a/examples/posix_sockets/Makefile
+++ b/examples/posix_sockets/Makefile
@@ -9,7 +9,7 @@ RIOTBASE ?= $(CURDIR)/../..
 
 BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos msb-430 msb-430h nrf51dongle \
                              nrf6310 nucleo32-f031 nucleo32-f042 nucleo32-l031 \
-                             nucleo-f030r8 nucleo-f070 nucleo-f072 nucleo-f334 \
+                             nucleo-f030r8 nucleo-f070rb nucleo-f072 nucleo-f334 \
                              nucleo-l053 stm32f0discovery telosb \
                              wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
 
diff --git a/tests/conn_can/Makefile b/tests/conn_can/Makefile
index 024f12e6b6..e31f1a7e21 100644
--- a/tests/conn_can/Makefile
+++ b/tests/conn_can/Makefile
@@ -1,7 +1,7 @@
 include ../Makefile.tests_common
 
 BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
-                             nucleo32-f303 nucleo32-l031 nucleo-f030r8 nucleo-f070 \
+                             nucleo32-f303 nucleo32-l031 nucleo-f030r8 nucleo-f070rb \
                              nucleo-f072 nucleo-f302 nucleo-f303 nucleo-f334 \
                              nucleo-l053 stm32f0discovery telosb wsn430-v1_3b \
                              wsn430-v1_4 z1
diff --git a/tests/gnrc_netif/Makefile b/tests/gnrc_netif/Makefile
index 166181042f..250e4a6b6c 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-f070 nucleo-f072 nucleo-f103 \
+                             nucleo-f030r8 nucleo-f070rb nucleo-f072 nucleo-f103 \
                              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 a9268016e5..92e422c695 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-f070 nucleo-f103 \
+                             nucleo32-l031 nucleo-f030r8 nucleo-f070rb nucleo-f103 \
                              nucleo-f334 nucleo-l053 spark-core \
                              stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 \
                              yunjia-nrf51822 z1
diff --git a/tests/gnrc_tcp_client/Makefile b/tests/gnrc_tcp_client/Makefile
index a4d7bb96f3..46299158c3 100644
--- a/tests/gnrc_tcp_client/Makefile
+++ b/tests/gnrc_tcp_client/Makefile
@@ -13,7 +13,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \
                              arduino-uno calliope-mini chronos mega-xplained microbit \
                              msb-430 msb-430h nrf51dongle nrf6310 nucleo32-f031 \
                              nucleo32-f042 nucleo32-f303 nucleo32-l031 nucleo-f030r8 \
-                             nucleo-f070 nucleo-f072 nucleo-f302 nucleo-f334 nucleo-l053 \
+                             nucleo-f070rb nucleo-f072 nucleo-f302 nucleo-f334 nucleo-l053 \
                              sb-430 sb-430h stm32f0discovery telosb \
                              wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
 
diff --git a/tests/gnrc_tcp_server/Makefile b/tests/gnrc_tcp_server/Makefile
index 4a077635d6..537ab535f8 100644
--- a/tests/gnrc_tcp_server/Makefile
+++ b/tests/gnrc_tcp_server/Makefile
@@ -13,7 +13,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \
                              arduino-uno calliope-mini chronos mega-xplained \
                              microbit msb-430 msb-430h nrf51dongle nrf6310 nucleo32-f031 \
                              nucleo32-f042 nucleo32-f303 nucleo32-l031 nucleo-f030r8 \
-                             nucleo-f070 nucleo-f072 nucleo-f302 nucleo-f334 nucleo-l053 \
+                             nucleo-f070rb nucleo-f072 nucleo-f302 nucleo-f334 nucleo-l053 \
                              sb-430 sb-430h stm32f0discovery telosb \
                              wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
 
diff --git a/tests/gnrc_udp/Makefile b/tests/gnrc_udp/Makefile
index 57cd19eaaf..eee0c4b720 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-f070 nucleo-f072 nucleo-f103 nucleo-f302 \
+                             nucleo-f030r8 nucleo-f070rb nucleo-f072 nucleo-f103 nucleo-f302 \
                              nucleo-f334 nucleo-l053 spark-core stm32f0discovery telosb \
                              wsn430-v1_3b wsn430-v1_4 z1
 
diff --git a/tests/pkg_libcoap/Makefile b/tests/pkg_libcoap/Makefile
index 9f9b0bf83c..8233df925b 100644
--- a/tests/pkg_libcoap/Makefile
+++ b/tests/pkg_libcoap/Makefile
@@ -5,7 +5,7 @@ BOARD_BLACKLIST := arduino-mega2560 chronos msb-430 msb-430h telosb wsn430-v1_3b
                    wsn430-v1_4 z1 waspmote-pro arduino-uno arduino-duemilanove \
                    jiminy-mega256rfr2 mega-xplained
 BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
-                             nucleo32-l031 nucleo-f030r8 nucleo-f070 nucleo-f334 nucleo-l053 \
+                             nucleo32-l031 nucleo-f030r8 nucleo-f070rb nucleo-f334 nucleo-l053 \
                              stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 \
                              z1
 
diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile
index 7efc565621..f4e0cecb23 100644
--- a/tests/unittests/Makefile
+++ b/tests/unittests/Makefile
@@ -34,7 +34,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon \
                              nucleo32-l031 \
                              nucleo32-l432 \
                              nucleo-f030r8 \
-                             nucleo-f070 \
+                             nucleo-f070rb \
                              nucleo-f072 \
                              nucleo-f091 \
                              nucleo-f103 \
@@ -131,7 +131,7 @@ ARM_CORTEX_M_BOARDS := airfy-beacon \
                        nucleo32-l031 \
                        nucleo32-l432 \
                        nucleo-f030r8 \
-                       nucleo-f070 \
+                       nucleo-f070rb \
                        nucleo-f072 \
                        nucleo-f091 \
                        nucleo-f103 \
-- 
GitLab