mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
Use BOARD_INSUFFICIENT_RAM
in examples and tests
This commit is contained in:
parent
4198b7518c
commit
49778752b3
@ -27,17 +27,12 @@ export RIOTBASE ?= $(CURDIR)/../..
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
export QUIET ?= 1
|
||||
|
||||
BOARD_BLACKLIST := arduino-due chronos mbed_lpc1768 msb-430 msb-430h pttu \
|
||||
redbee-econotag telosb udoo wsn430-v1_3b wsn430-v1_4 z1
|
||||
# chronos: not enough RAM
|
||||
BOARD_INSUFFICIENT_RAM := chronos msb-430h telosb wsn430-v1_3b wsn430-v1_4
|
||||
BOARD_BLACKLIST := arduino-due mbed_lpc1768 msb-430 pttu redbee-econotag udoo z1
|
||||
# mbed_lpc1768: see https://github.com/RIOT-OS/RIOT/issues/675
|
||||
# msb-430: see https://github.com/RIOT-OS/RIOT/issues/658
|
||||
# msb-430h: not enough RAM
|
||||
# pttu: see https://github.com/RIOT-OS/RIOT/issues/659
|
||||
# redbee-econotag: see https://github.com/RIOT-OS/RIOT/issues/676
|
||||
# telosb: not enough RAM
|
||||
# wsn430-v1_3b: not enough RAM
|
||||
# wsn430-v1_4: not enough RAM
|
||||
# z1: lacks RTC features
|
||||
|
||||
# Modules to include:
|
||||
|
@ -27,17 +27,12 @@ export RIOTBASE ?= $(CURDIR)/../..
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
export QUIET ?= 1
|
||||
|
||||
BOARD_BLACKLIST := arduino-due chronos mbed_lpc1768 msb-430 msb-430h \
|
||||
pttu redbee-econotag telosb udoo wsn430-v1_3b wsn430-v1_4 z1
|
||||
# chronos: not enough RAM
|
||||
BOARD_INSUFFICIENT_RAM := chronos msb-430h telosb wsn430-v1_3b wsn430-v1_4
|
||||
BOARD_BLACKLIST := arduino-due mbed_lpc1768 msb-430 pttu redbee-econotag udoo z1
|
||||
# mbed_lpc1768: see https://github.com/RIOT-OS/RIOT/issues/675
|
||||
# msb-430: see https://github.com/RIOT-OS/RIOT/issues/658
|
||||
# msb-430h: not enough RAM
|
||||
# pttu: see https://github.com/RIOT-OS/RIOT/issues/659
|
||||
# redbee-econotag: see https://github.com/RIOT-OS/RIOT/issues/676
|
||||
# telosb: not enough RAM
|
||||
# wsn430-v1_3b: not enough RAM
|
||||
# wsn430-v1_4: not enough RAM
|
||||
# z1: lacks RTC features
|
||||
|
||||
# Modules to include:
|
||||
|
@ -34,18 +34,11 @@ ifeq ($(shell $(CC) -Wno-cpp -E - 2>/dev/null >/dev/null dev/null ; echo $$?),0)
|
||||
endif
|
||||
endif
|
||||
|
||||
BOARD_BLACKLIST := arduino-due chronos mbed_lpc1768 msb-430 msb-430h \
|
||||
pttu redbee-econotag telosb udoo wsn430-v1_3b wsn430-v1_4 z1
|
||||
# chronos: not enough RAM
|
||||
BOARD_INSUFFICIENT_RAM := chronos msb-430h redbee-econotag telosb wsn430-v1_3b wsn430-v1_4 z1
|
||||
BOARD_BLACKLIST := arduino-due mbed_lpc1768 msb-430 pttu udoo
|
||||
# mbed_lpc1768: see https://github.com/RIOT-OS/RIOT/issues/675
|
||||
# msb-430: see https://github.com/RIOT-OS/RIOT/issues/658
|
||||
# msb-430h: not enough RAM
|
||||
# pttu: see https://github.com/RIOT-OS/RIOT/issues/659
|
||||
# redbee-econotag: not enough RAM
|
||||
# telosb: not enough RAM
|
||||
# wsn430-v1_3b: not enough RAM
|
||||
# wsn430-v1_4: not enough RAM
|
||||
# z1: not enough RAM
|
||||
|
||||
# Modules to include:
|
||||
|
||||
|
@ -1,17 +1,8 @@
|
||||
export PROJECT = test_bloom
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_BLACKLIST := chronos mbed_lpc1768 msb-430 msb-430h redbee-econotag \
|
||||
telosb wsn430-v1_3b wsn430-v1_4 z1
|
||||
# chronos: not enough RAM
|
||||
# mbed_lpc1768: not enough RAM
|
||||
# msb-430: not enough RAM
|
||||
# msb-430h: not enough RAM
|
||||
# redbee-econotag: not enough RAM
|
||||
# telosb: not enough RAM
|
||||
# wsn430-v1_3b: not enough RAM
|
||||
# wsn430-v1_4: not enough RAM
|
||||
# z1: not enough RAM
|
||||
BOARD_INSUFFICIENT_RAM := chronos mbed_lpc1768 msb-430 msb-430h redbee-econotag \
|
||||
telosb wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
USEMODULE += hashes
|
||||
USEMODULE += bloom
|
||||
|
@ -1,17 +1,10 @@
|
||||
export PROJECT = test_pnet
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_BLACKLIST := arduino-due chronos mbed_lpc1768 msb-430 msb-430h \
|
||||
redbee-econotag telosb udoo wsn430-v1_3b wsn430-v1_4 z1
|
||||
# chronos: not enough RAM
|
||||
BOARD_INSUFFICIENT_RAM := chronos msb-430h redbee-econotag telosb wsn430-v1_3b wsn430-v1_4 z1
|
||||
BOARD_BLACKLIST := arduino-due mbed_lpc1768 msb-430 udoo
|
||||
# mbed_lpc1768: see https://github.com/RIOT-OS/RIOT/issues/675
|
||||
# msb-430: see https://github.com/RIOT-OS/RIOT/issues/658
|
||||
# msb-430h: not enough RAM
|
||||
# redbee-econotag: not enough RAM
|
||||
# telosb: not enough RAM
|
||||
# wsn430-v1_3b: not enough RAM
|
||||
# wsn430-v1_4: not enough RAM
|
||||
# z1: not enough RAM
|
||||
|
||||
USEMODULE += posix
|
||||
USEMODULE += pnet
|
||||
|
@ -1,10 +1,7 @@
|
||||
export PROJECT = test_posix_semaphore
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_BLACKLIST := mbed_lpc1768 redbee-econotag chronos
|
||||
# mbed_lpc1768: not enough RAM
|
||||
# redbee-econotag: not enough RAM
|
||||
# chronos: not enough RAM
|
||||
BOARD_INSUFFICIENT_RAM := mbed_lpc1768 redbee-econotag chronos
|
||||
|
||||
USEMODULE += posix
|
||||
|
||||
|
@ -9,10 +9,6 @@ DISABLE_MODULE += auto_init
|
||||
|
||||
CFLAGS += -DNATIVE_AUTO_EXIT
|
||||
|
||||
# these boards provide too little RAM for the example to run
|
||||
BOARD_BLACKLIST += chronos
|
||||
BOARD_BLACKLIST += mbed_lpc1768
|
||||
BOARD_BLACKLIST += msb-430
|
||||
BOARD_BLACKLIST += msb-430h
|
||||
BOARD_INSUFFICIENT_RAM += chronos mbed_lpc1768 msb-430 msb-430h
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -1,12 +1,7 @@
|
||||
export PROJECT = test_thread_cooperation
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_BLACKLIST := chronos msb-430 msb-430h mbed_lpc1768 redbee-econotag
|
||||
# chronos: not enough RAM
|
||||
# mbed_lpc1768: not enough RAM
|
||||
# msb-430: not enough RAM
|
||||
# msb-430h: not enough RAM
|
||||
# redbee-econotag: not enough RAM
|
||||
BOARD_INSUFFICIENT_RAM := chronos msb-430 msb-430h mbed_lpc1768 redbee-econotag
|
||||
|
||||
DISABLE_MODULE += auto_init
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user