From cefe2a6698b5daa1fc7df766cfdab864f6a4386b Mon Sep 17 00:00:00 2001 From: Paul Rathgeb Date: Thu, 1 Oct 2015 20:11:48 +0200 Subject: [PATCH] make: Blacklisted the board 'weio' for some test due to insufficient RAM/ROM Blacklisted LPC11Uxx.h for doxygen --- doc/doxygen/riot.doxyfile | 1 + examples/gnrc_border_router/Makefile | 2 +- examples/gnrc_networking/Makefile | 2 +- examples/posix_sockets/Makefile | 4 ++-- examples/riot_and_cpp/Makefile | 2 +- tests/coap/Makefile | 2 +- tests/conn_ip/Makefile | 2 +- tests/driver_xbee/Makefile | 2 +- tests/posix_semaphore/Makefile | 2 +- tests/pthread_rwlock/Makefile | 2 +- tests/slip/Makefile | 2 +- tests/thread_cooperation/Makefile | 2 +- tests/unittests/Makefile | 2 +- tests/vtimer_msg_diff/Makefile | 3 ++- 14 files changed, 16 insertions(+), 14 deletions(-) diff --git a/doc/doxygen/riot.doxyfile b/doc/doxygen/riot.doxyfile index 432da9515b..06c7162175 100644 --- a/doc/doxygen/riot.doxyfile +++ b/doc/doxygen/riot.doxyfile @@ -824,6 +824,7 @@ EXCLUDE_PATTERNS = */board/*/tools/* \ */drivers/nrf24l01p/include/nrf24l01p_settings.h \ */cpu/nrf51/include/nrf51*.h \ */cpu/lpc1768/include/LPC17xx.h \ + */cpu/lpc11u34/include/LPC11Uxx.h \ */boards/*/include/periph_conf.h \ */cpu/x86/include/x86_pci.h \ */cpu/stm32l1/include/stm32l1xx.h \ diff --git a/examples/gnrc_border_router/Makefile b/examples/gnrc_border_router/Makefile index c0331642f2..51b9606725 100644 --- a/examples/gnrc_border_router/Makefile +++ b/examples/gnrc_border_router/Makefile @@ -8,7 +8,7 @@ BOARD ?= samr21-xpro RIOTBASE ?= $(CURDIR)/../.. BOARD_INSUFFICIENT_MEMORY := airfy-beacon nrf51dongle nrf6310 pca10000 pca10005 nucleo-f334 \ - spark-core stm32f0discovery yunjia-nrf51822 + spark-core stm32f0discovery weio yunjia-nrf51822 ifeq (,$(SLIP_UART)) # set default (last available UART) diff --git a/examples/gnrc_networking/Makefile b/examples/gnrc_networking/Makefile index f91d1f3dec..30bb5eeb27 100644 --- a/examples/gnrc_networking/Makefile +++ b/examples/gnrc_networking/Makefile @@ -9,7 +9,7 @@ RIOTBASE ?= $(CURDIR)/../.. BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos msb-430 msb-430h nrf51dongle \ nrf6310 nucleo-f334 pca10000 pca10005 spark-core \ - stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 \ + stm32f0discovery telosb weio wsn430-v1_3b wsn430-v1_4 \ yunjia-nrf51822 z1 # Include packages that pull up and auto-init the link layer. diff --git a/examples/posix_sockets/Makefile b/examples/posix_sockets/Makefile index 4b0946a527..c58f418949 100644 --- a/examples/posix_sockets/Makefile +++ b/examples/posix_sockets/Makefile @@ -8,8 +8,8 @@ BOARD ?= native RIOTBASE ?= $(CURDIR)/../.. BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos msb-430 msb-430h nrf51dongle nrf6310 \ - nucleo-f334 pca10000 pca10005 stm32f0discovery telosb wsn430-v1_3b \ - wsn430-v1_4 yunjia-nrf51822 z1 + nucleo-f334 pca10000 pca10005 stm32f0discovery telosb weio \ + wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1 # Include packages that pull up and auto-init the link layer. # NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present diff --git a/examples/riot_and_cpp/Makefile b/examples/riot_and_cpp/Makefile index 21971f9e7f..1f12b0beb4 100644 --- a/examples/riot_and_cpp/Makefile +++ b/examples/riot_and_cpp/Makefile @@ -6,7 +6,7 @@ BOARD ?= native # stm32f0discovery objects are too big with ARM Embedded Toolchain v4.9.3 20141119 # (used currently by travis) -BOARD_INSUFFICIENT_MEMORY=stm32f0discovery +BOARD_INSUFFICIENT_MEMORY=stm32f0discovery weio # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. diff --git a/tests/coap/Makefile b/tests/coap/Makefile index f14b000c7f..932425729a 100644 --- a/tests/coap/Makefile +++ b/tests/coap/Makefile @@ -3,7 +3,7 @@ include ../Makefile.tests_common # msp430 and avr have problems with int width and libcoaps usage of :x notation in structs BOARD_BLACKLIST := arduino-mega2560 chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 -BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h stm32f0discovery telosb \ +BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h stm32f0discovery telosb weio \ wsn430-v1_3b wsn430-v1_4 z1 USEMODULE += gnrc_ipv6 diff --git a/tests/conn_ip/Makefile b/tests/conn_ip/Makefile index 6fb8b8001b..99f35e0145 100644 --- a/tests/conn_ip/Makefile +++ b/tests/conn_ip/Makefile @@ -5,7 +5,7 @@ BOARD ?= native RIOTBASE ?= $(CURDIR)/../.. BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f334 stm32f0discovery telosb \ - wsn430-v1_3b wsn430-v1_4 z1 + weio wsn430-v1_3b wsn430-v1_4 z1 USEMODULE += gnrc_netif_default USEMODULE += auto_init_gnrc_netif diff --git a/tests/driver_xbee/Makefile b/tests/driver_xbee/Makefile index 1167270984..20899ab164 100644 --- a/tests/driver_xbee/Makefile +++ b/tests/driver_xbee/Makefile @@ -3,7 +3,7 @@ include ../Makefile.tests_common FEATURES_REQUIRED = periph_uart periph_gpio -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery +BOARD_INSUFFICIENT_MEMORY := stm32f0discovery weio # Define default pin mappings for some boards: ifneq (,$(filter stm32f0discovery,$(BOARD))) diff --git a/tests/posix_semaphore/Makefile b/tests/posix_semaphore/Makefile index 298e69ddcb..edb55ba23d 100644 --- a/tests/posix_semaphore/Makefile +++ b/tests/posix_semaphore/Makefile @@ -2,7 +2,7 @@ APPLICATION = posix_semaphore include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h mbed_lpc1768 chronos stm32f0discovery \ - pca10000 pca10005 yunjia-nrf51822 nrf6310 spark-core + pca10000 pca10005 weio yunjia-nrf51822 nrf6310 spark-core USEMODULE += posix diff --git a/tests/pthread_rwlock/Makefile b/tests/pthread_rwlock/Makefile index 6004dc0db0..c6111cc138 100644 --- a/tests/pthread_rwlock/Makefile +++ b/tests/pthread_rwlock/Makefile @@ -12,6 +12,6 @@ CFLAGS += -DNATIVE_AUTO_EXIT BOARD_INSUFFICIENT_MEMORY += chronos mbed_lpc1768 msb-430 msb-430h stm32f0discovery \ pca10000 pca10005 yunjia-nrf51822 spark-core nucleo-f334 \ - airfy-beacon nrf51dongle nrf6310 + airfy-beacon nrf51dongle nrf6310 weio include $(RIOTBASE)/Makefile.include diff --git a/tests/slip/Makefile b/tests/slip/Makefile index eb0a18b9aa..3420c5f43f 100644 --- a/tests/slip/Makefile +++ b/tests/slip/Makefile @@ -1,7 +1,7 @@ APPLICATION = driver_slip include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery nucleo-f334 +BOARD_INSUFFICIENT_MEMORY := stm32f0discovery nucleo-f334 weio USEMODULE += auto_init_gnrc_netif USEMODULE += gnrc diff --git a/tests/thread_cooperation/Makefile b/tests/thread_cooperation/Makefile index 57b013fc8c..c1e283f0ff 100644 --- a/tests/thread_cooperation/Makefile +++ b/tests/thread_cooperation/Makefile @@ -4,7 +4,7 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h mbed_lpc1768 \ stm32f0discovery pca10000 pca10005 \ yunjia-nrf51822 spark-core airfy-beacon nucleo-f334 \ - nrf51dongle nrf6310 + nrf51dongle nrf6310 weio DISABLE_MODULE += auto_init diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile index d826fd7c0b..0f71460a1f 100644 --- a/tests/unittests/Makefile +++ b/tests/unittests/Makefile @@ -5,7 +5,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos msb-430 msb-430h pca10000 \ pca10005 spark-core stm32f0discovery \ telosb wsn430-v1_3b wsn430-v1_4 z1 nucleo-f334 \ yunjia-nrf51822 samr21-xpro arduino-mega2560 \ - airfy-beacon nrf51dongle nrf6310 + airfy-beacon nrf51dongle nrf6310 weio USEMODULE += embunit diff --git a/tests/vtimer_msg_diff/Makefile b/tests/vtimer_msg_diff/Makefile index dd43e335bb..b3025c8ffd 100644 --- a/tests/vtimer_msg_diff/Makefile +++ b/tests/vtimer_msg_diff/Makefile @@ -1,7 +1,8 @@ APPLICATION = vtimer_msg_diff include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := mbed_lpc1768 stm32f0discovery nrf6310 pca10000 pca10005 +BOARD_INSUFFICIENT_MEMORY := mbed_lpc1768 stm32f0discovery nrf6310 pca10000 pca10005 \ + weio USEMODULE += vtimer