From c9304ab73b89d27a0cdad841a7929ffbf76b692b Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Wed, 30 Oct 2019 14:27:02 +0100 Subject: [PATCH] examples/javascript: update board blacklist Remove 8 bit and 16 bit based boards because they are automatically excluded by the 32 bit architecture requirement of the jerryscript package --- examples/javascript/Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/examples/javascript/Makefile b/examples/javascript/Makefile index 51722d348b..8858693e1f 100644 --- a/examples/javascript/Makefile +++ b/examples/javascript/Makefile @@ -7,11 +7,10 @@ BOARD ?= native # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. -BOARD_BLACKLIST := arduino-duemilanove arduino-leonardo arduino-mega2560 \ - arduino-nano arduino-uno atmega328p chronos \ - msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ - wsn430-v1_4 z1 pic32-wifire pic32-clicker \ - mega-xplained microduino-corerf +BOARD_BLACKLIST += \ + pic32-wifire \ + pic32-clicker \ + # # Comment this out to disable code in RIOT that does safety checking # which is not needed in a production environment but helps in the