Godfried Duodu wrote:
1. When I attempt to load a package using the command " lrpkg -i package", I get the error message `archive "packgage" not found', even though the package is on the boot device.
The package has to be in the current directory when running lrpkg -i.
2.Dropbear does not load even though it is listed in LRP in leaf.cfg. The same applies to sshd.
You probably have a mistake in how you're assigning the LRP variable in leaf.cfg. Without seeing your file, it's hard to say exactly what the problem is.
3.What is the best method to load extra packages? Is it by adding another LRP line or extending beyond col. 80 in the
existing line?
This is a matter of personal preference...the linuxrc script will be happy with any valid shell code that does what you want. Note that with double quotes you can include newlines in the LRP= setting, which will simply be treated as whitespace so you could use something like:
LRP="$KCMD_LRP
pkg1
pkg2
pkg3
pkg4
pkg5"or multiple LRP= lines (remember to include the previous contents of $LRP on each subsequent line!):
LRP="$KCMD_LRP pkg1 pkg2" LRP="$LRP pkg3 pkg4 pkg5"
-- Charles Steinkuehler [EMAIL PROTECTED]
------------------------------------------------------- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Workshop 8.1 today. http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click ------------------------------------------------------------------------ leaf-user mailing list: [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/leaf-user SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html
