On Sat, Apr 10, 2010 at 1:52 PM, Amit Mahajan <amit.maha...@b-labs.co.uk>wrote:
> > > > > > > Building the loader and packing... > > scons: Reading SConscript files ... > > scons: done reading SConscript files. > > scons: Building targets ... > > scons: *** [build/loader/images.o] Source `loader/images.S' not found, > > needed by target `build/loader/images.o'. > > scons: building terminated because of errors. > > Build failed > > This is strange i just did a fresh clone and it works fine for me. > Can you check your cloned repo if it has the following commit: > > 'git show 1a62b92a8d411a29e0e0da97debd231f6483357c' > dra...@marx:~/codezero$ git show 1a62b92a8d411a29e0e0da97debd231f6483357c commit 1a62b92a8d411a29e0e0da97debd231f6483357c Author: Amit Mahajan <amit.maha...@b-labs.co.uk> Date: Wed Mar 31 11:14:46 2010 +0530 Minor bug, introduced in loader while merging, fixed!! diff --git a/loader/SConscript b/loader/SConscript index 38e0ae4..16a5acc 100644 --- a/loader/SConscript +++ b/loader/SConscript @@ -71,9 +71,9 @@ lma_lds = Command(join(BUILDDIR, 'loader/linker.lds'), \ src = Glob('*.[cS]') objs = env.Object(src) -Depends(objs, lma_lds) -Depends(objs, loader_ksyms) -Depends(objs, loader_image_S) +Depends(src, lma_lds) +Depends(src, loader_ksyms) +Depends(src, loader_image_S) Depends(objs, join(BUILDDIR, 'conts/containers.elf')) Depends(objs, join(BUILDDIR, 'kernel.elf')) Return('objs', 'loader_image_S') dra...@marx:~/codezero$
_______________________________________________ codezero-devel mailing list codezero-devel@lists.l4dev.org http://lists.l4dev.org/mailman/listinfo/codezero-devel