On Thu, Nov 16, 2006 at 04:25:20PM +0900, Magnus Damm wrote: > On 11/16/06, Simon Horman <[EMAIL PROTECTED]> wrote: > >Hi, > > > >I'd like to apply this patch to kexec-tools-testing if there are no > >objections. > > Good idea, thanks! I guess we want to omit the autoconf instruction > when we make a release.
Good point. I added a note about that. > And I seem to remember that distclean doesn't > work as expected too, but that's another story. I think it does work in kexec-tools-testing, but its called dist-clean not distclean. And there is maintainer-clean, which is even more thorough. We could add distclean and maintainerclean which call their "-" variants if we want to. On the other hand, the build system is a bit funny, so it is possible the targets aren't working as you suggest. -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ Brief documention on how to build and install kexec-tools. This is in the light of some reacent difficulties in building kexec-tools that were reported on the fastboot mainling list. Signed-Off-By: Simon Horman <[EMAIL PROTECTED]> Index: kexec-tools-unstable/INSTALL =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ kexec-tools-unstable/INSTALL 2006-11-16 17:01:29.000000000 +0900 @@ -0,0 +1,29 @@ +To build kexec-tools + +1. If ./configure deosn't exist, create it + + # autoconf + + If you obtain kexec-tools from a released tarball, you can ommit this + step. If on the other hand you obtain kexec-tools from git or some + other revision control system, then you will probably need to do this. + +2. Run ./configure [--prefix=/usr/local] [options]... + + e.g. + # ./configure --prefix=/usr/local + + For a full list of options run + + # ./configure --help + +3. Run make + + # make + +To install kexec-tools + + After following the above instructions to build-kexec tools, run + + # make install + _______________________________________________ fastboot mailing list [email protected] https://lists.osdl.org/mailman/listinfo/fastboot
