From 7b4b9a4cbb3e0553b0b3da9c92c3f9a0d57445ac Mon Sep 17 00:00:00 2001 From: Simon Horman Date: Thu, 16 Nov 2006 14:55:38 +0900 Subject: kexec-tools: brief documention on how to build and install Hi, I'd like to apply this patch to kexec-tools-testing if there are no objections. -- 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 --- INSTALL | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 INSTALL diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..0aba5b6 --- /dev/null +++ b/INSTALL @@ -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 + -- cgit