summaryrefslogtreecommitdiff
path: root/filesystem
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2013-11-25 13:53:31 +1100
committerGedare Bloom <gedare@rtems.org>2013-12-12 14:55:54 -0500
commitbfc576fd24b5adcc0eb4ca2ffcae9cadd9684a79 (patch)
tree5e1a0fb45302b067a485a6445b210ce35ce9dd17 /filesystem
parente38d748d342a3aafd7904299757a87c22e11897d (diff)
Fix rtems.py's filtering of BSPs.
Update the BSP filtering in the RTEMS waf support. Break the flags down even more to allow users to manage what they use in applications. Add rtems-bin2c to the list of checked tools.
Diffstat (limited to 'filesystem')
-rw-r--r--filesystem/fat_ramdisk/wscript7
1 files changed, 3 insertions, 4 deletions
diff --git a/filesystem/fat_ramdisk/wscript b/filesystem/fat_ramdisk/wscript
index 846b4ec..51ff70c 100644
--- a/filesystem/fat_ramdisk/wscript
+++ b/filesystem/fat_ramdisk/wscript
@@ -1,5 +1,5 @@
-# Copyright 2013 Gedare Bloom (gedare@rtems.org)
-#
+# Copyright 2013 Gedare Bloom (gedare@rtems.org)
+#
# This file's license is 2-clause BSD as in this distribution's LICENSE.2 file.
#
@@ -12,7 +12,7 @@ version = "1.0.0"
from waflib.Task import Task
from waflib.TaskGen import extension
class bin2c(Task):
- run_str = 'rtems-bin2c ${SRC} ${TGT[0].abspath()} && ' + \
+ run_str = '${RTEMS_BIN2C} ${SRC} ${TGT[0].abspath()} && ' + \
'touch ${TGT[1].abspath()}'
ext_out = ['.h']
@@ -46,4 +46,3 @@ def build(bld):
defines = bld.defines,
cflags = cflags,
source = 'init.c FilesystemImage')
-