From 2bc5586ff9943e7b145c57b47a48c17b6eeface9 Mon Sep 17 00:00:00 2001 From: Dado Sutter Date: Mon, 10 Jan 2011 00:08:13 +0000 Subject: [PATCH] - Removing examples from SConstruct ROMFS tables - Tested only for EK-LM3Sxxxx --- SConstruct | 112 ++++++++++++++++++++++++++++++++++------------------- 1 file changed, 72 insertions(+), 40 deletions(-) diff --git a/SConstruct b/SConstruct index 5f8248a2..c3e5c152 100644 --- a/SConstruct +++ b/SConstruct @@ -111,53 +111,85 @@ cpu_list = sum([board_list[i] for i in board_list],[]) # To include a file in a ROMFS build, include it in a group here (or create one # if you need) and make sure the group is included on your platform's file_list # definition (right after this). -romfs = { 'bisect' : [ 'bisect.lua' ], - 'hangman' : [ 'hangman.lua' ], - 'lhttpd' : [ 'index.pht', 'lhttpd.lua', 'test.lua' ], - 'led' : [ 'led.lua' ], - 'piano' : [ 'piano.lua' ], - 'pwmled' : [ 'pwmled.lua' ], - 'tvbgone' : [ 'tvbgone.lua', 'codes.bin' ], - 'hello' : [ 'hello.lua' ], - 'info' : [ 'info.lua' ], - 'morse' : [ 'morse.lua' ], - 'dualpwm' : [ 'dualpwm.lua' ], - 'adcscope' : [ 'adcscope.lua' ], - 'adcpoll' : [ 'adcpoll.lua' ], - 'life' : [ 'life.lua' ], - 'logo' : ['logo.lua', 'logo.bin' ], - 'pong' : [ 'pong.lua' ], - 'spaceship' : [ 'spaceship.lua' ], - 'tetrives' : [ 'tetrives.lua' ], - 'snake' : [ 'snake.lua' ], - 'dataflash' : [ 'dataflash.lua' ], - 'pachube' : [ 'pachube_demo.lua' ], - 'inttest' : [ 'inttest.lua' ] + +# The following table will be left here just as an example +# eLua examples were removed from the distro since v0.8 +#romfs = { 'bisect' : [ 'bisect.lua' ], +# 'hangman' : [ 'hangman.lua' ], +# 'lhttpd' : [ 'index.pht', 'lhttpd.lua', 'test.lua' ], +# 'led' : [ 'led.lua' ], +# 'piano' : [ 'piano.lua' ], +# 'pwmled' : [ 'pwmled.lua' ], +# 'tvbgone' : [ 'tvbgone.lua', 'codes.bin' ], +# 'hello' : [ 'hello.lua' ], +# 'info' : [ 'info.lua' ], +# 'morse' : [ 'morse.lua' ], +# 'dualpwm' : [ 'dualpwm.lua' ], +# 'adcscope' : [ 'adcscope.lua' ], +# 'adcpoll' : [ 'adcpoll.lua' ], +# 'life' : [ 'life.lua' ], +# 'logo' : ['logo.lua', 'logo.bin' ], +# 'pong' : [ 'pong.lua' ], +# 'spaceship' : [ 'spaceship.lua' ], +# 'tetrives' : [ 'tetrives.lua' ], +# 'snake' : [ 'snake.lua' ], +# 'dataflash' : [ 'dataflash.lua' ], +# 'pachube' : [ 'pachube_demo.lua' ], +# 'inttest' : [ 'inttest.lua' ] +# } + +romfs = { + } # List of board/romfs data combinations -file_list = { 'SAM7-EX256' : [ 'bisect', 'hangman' , 'led', 'piano', 'hello', 'info', 'morse' ], - 'EK-LM3S1968' : [ 'bisect', 'hangman', 'pong', 'led', 'piano', 'pwmled', 'hello', 'info', 'morse', 'adcscope', 'adcpoll', 'logo', 'spaceship', 'tetrives', 'snake' ], - 'EK-LM3S8962' : [ 'lhttpd','bisect', 'led', 'pachube' ], - 'EK-LM3S6965' : [ 'bisect', 'hangman', 'pong', 'led', 'piano', 'pwmled', 'hello', 'info', 'morse', 'adcscope', 'adcpoll', 'logo', 'tetrives' ], - 'EK-LM3S9B92' : [ 'bisect', 'hangman', 'led', 'pwmled', 'hello', 'info', 'adcscope','adcpoll', 'life' ], - 'STR9-COMSTICK' : [ 'bisect', 'hangman', 'led', 'hello', 'info' ], - 'STR-E912' : [ 'bisect', 'hangman', 'led', 'hello', 'info', 'piano', 'adcscope' ], - 'PC' : [ 'bisect', 'hello', 'info', 'life', 'hangman' ], - 'SIM' : [ 'bisect', 'hello', 'info', 'life', 'hangman' ], - 'LPC-H2888' : [ 'bisect', 'hangman', 'led', 'hello', 'info' ], - 'MOD711' : [ 'bisect', 'hangman', 'led', 'hello', 'info', 'dualpwm' ], - 'STM3210E-EVAL' : [ 'bisect', 'hello', 'info' ], - 'ATEVK1100' : [ 'bisect', 'hangman', 'led', 'hello', 'info', 'dataflash' ], - 'ATEVK1101' : [ 'bisect', 'led', 'hello', 'info', 'dataflash' ], - 'ET-STM32' : [ 'hello', 'hangman', 'info', 'bisect','adcscope','adcpoll', 'dualpwm', 'pwmled' ], - 'EAGLE-100' : [ 'bisect', 'hangman', 'lhttpd', 'led', 'hello', 'info' ], - 'ELUA-PUC' : [ 'bisect', 'hangman', 'led', 'hello', 'info', 'pwmled', 'adcscope', 'adcpoll', 'inttest' ], - 'MBED' : [ 'bisect', 'hangman', 'hello', 'info', 'led', 'pwmled', 'dualpwm', 'life', 'adcscope', 'adcpoll' ], +# The following table will be left here just as an example +# eLua examples were removed from the distro since v0.8 +#file_list = { 'SAM7-EX256' : [ 'bisect', 'hangman' , 'led', 'piano', 'hello', 'info', 'morse' ], +# 'EK-LM3S1968' : [ 'bisect', 'hangman', 'pong', 'led', 'piano', 'pwmled', 'hello', 'info', 'morse', 'adcscope', 'adcpoll', 'logo', 'spaceship', 'tetrives', 'snake' ], +# 'EK-LM3S8962' : [ 'lhttpd','bisect', 'led', 'pachube' ], +# 'EK-LM3S6965' : [ 'bisect', 'hangman', 'pong', 'led', 'piano', 'pwmled', 'hello', 'info', 'morse', 'adcscope', 'adcpoll', 'logo', 'tetrives' ], +# 'EK-LM3S9B92' : [ 'bisect', 'hangman', 'led', 'pwmled', 'hello', 'info', 'adcscope','adcpoll', 'life' ], +# 'STR9-COMSTICK' : [ 'bisect', 'hangman', 'led', 'hello', 'info' ], +# 'STR-E912' : [ 'bisect', 'hangman', 'led', 'hello', 'info', 'piano', 'adcscope' ], +# 'PC' : [ 'bisect', 'hello', 'info', 'life', 'hangman' ], +# 'SIM' : [ 'bisect', 'hello', 'info', 'life', 'hangman' ], +# 'LPC-H2888' : [ 'bisect', 'hangman', 'led', 'hello', 'info' ], +# 'MOD711' : [ 'bisect', 'hangman', 'led', 'hello', 'info', 'dualpwm' ], +# 'STM3210E-EVAL' : [ 'bisect', 'hello', 'info' ], +# 'ATEVK1100' : [ 'bisect', 'hangman', 'led', 'hello', 'info', 'dataflash' ], +# 'ATEVK1101' : [ 'bisect', 'led', 'hello', 'info', 'dataflash' ], +# 'ET-STM32' : [ 'hello', 'hangman', 'info', 'bisect','adcscope','adcpoll', 'dualpwm', 'pwmled' ], +# 'EAGLE-100' : [ 'bisect', 'hangman', 'lhttpd', 'led', 'hello', 'info' ], +# 'ELUA-PUC' : [ 'bisect', 'hangman', 'led', 'hello', 'info', 'pwmled', 'adcscope', 'adcpoll', 'inttest' ], +# 'MBED' : [ 'bisect', 'hangman', 'hello', 'info', 'led', 'pwmled', 'dualpwm', 'life', 'adcscope', 'adcpoll' ], +# 'MIZAR32' : [ ], +# 'NETDUINO': [ ], +#} + +file_list = { 'SAM7-EX256' : [ ], + 'EK-LM3S1968' : [ ], + 'EK-LM3S8962' : [ ], + 'EK-LM3S6965' : [ ], + 'EK-LM3S9B92' : [ ], + 'STR9-COMSTICK' : [ ], + 'STR-E912' : [ ], + 'PC' : [ ], + 'SIM' : [ ], + 'LPC-H2888' : [ ], + 'MOD711' : [ ], + 'STM3210E-EVAL' : [ ], + 'ATEVK1100' : [ ], + 'ATEVK1101' : [ ], + 'ET-STM32' : [ ], + 'EAGLE-100' : [ ], + 'ELUA-PUC' : [ ], + 'MBED' : [ ], 'MIZAR32' : [ ], 'NETDUINO': [ ], } + comp = Environment( tools = [], OBJSUFFIX = ".o", PROGSUFFIX = ".elf",