summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2012-10-19 12:42:39 -0700
committerChris Johns <chrisj@rtems.org>2012-10-19 12:42:39 -0700
commit25c377296b77c489f33ebf6ea6b7e869281fadbf (patch)
tree464747d1d20452992370b1ddfae9665e201aa8b1 /wscript
parentc54ea723eefee5582e423933ae6f758d11ae7b1f (diff)
Add back the libx.a file to the root file system.
Diffstat (limited to 'wscript')
-rw-r--r--wscript9
1 files changed, 8 insertions, 1 deletions
diff --git a/wscript b/wscript
index 4359216..b7f07f5 100644
--- a/wscript
+++ b/wscript
@@ -60,11 +60,18 @@ def build(bld):
defines = bld.defines,
source = ['bspinit.c'])
+ bld(target = 'x',
+ features = 'c cstlib',
+ includes = bld.includes,
+ defines = bld.defines,
+ source = ['xa.c',
+ 'x-long-name-to-create-gnu-extension-in-archive.c'])
+
#
# Create the root file system.
#
bld(target = 'fs-root.tar',
- source = ['shell-init'],
+ source = ['shell-init', 'libx.a'],
rule = 'tar cf - ${SRC} > ${TGT}')
bld.objects(name = 'rootfs',
target = 'fs-root-tarfile.o',