Wolfgang Spraul wrote: > Wow this is all excellent work, thanks a lot! How come you always > fix the stuff that is most pressing for regular users? :-)
Oh, you can't imagine what a few ten-thousand times power-cycling does to your motivation for making the boot a little faster ;-) > Yes, the BOOTP delay is still there I think, >From how I so far understand how things work, it shouldn't be necessary to require BOOTP to complete before bringing up FN. I hear that there's a TFTP boot mode that may depend on it, but that seems to be a fairly developer-centric feature that could probably be made configurable. > and I hear you on parser optimizations... There are basically two places where I expect a potential for optimization: the identifier lookup and identification of the various tokens. Identifier lookups use a linear list, so the run-time per compilation is O(n^2). Both use strcmp quite extensively, which can't be good. But I don't know yet just how bad it is. - Werner _______________________________________________ http://lists.milkymist.org/listinfo.cgi/devel-milkymist.org IRC: #milkymist@Freenode
