> Well i have all binaries needed for a root lrp compiled succesfully
against
> uClib 0.9.8 . I did this a while ago to build a uClibc based version, and
i
> can of course provide the source code or the patches . this includes:

Cool!

> gtcommandline ( just a small c hack to get rid of the all seds in the
bootstrap code, 12k but smaller than sed and bb sed ;-)

At the expense of readability, this can probalby be done with simple ash
string manipulation, if the only thing sed's used for is extracting
parameters from the kernel command line...

CMDLINE=`cat /proc/cmdline`

BOOT=${CMDLINE#*boot=}

if [ "$BOOT" != "$CMDLINE" ] ; then
    BOOT=${BOOT%% *}
else
    BOOT=""
fi

Charles Steinkuehler
http://lrp.steinkuehler.net
http://c0wz.steinkuehler.net (lrp.c0wz.com mirror)



_______________________________________________
Leaf-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-devel

Reply via email to