From 07fe9977b6234ede1bd29e10e0323e478860c871 Mon Sep 17 00:00:00 2001 From: Davidlohr Bueso Date: Thu, 12 Jan 2012 15:44:47 +1030 Subject: [PATCH] lguest: move the lguest tool to the tools directory This is a better location instead of having it in Documentation. Signed-off-by: Davidlohr Bueso Signed-off-by: Rusty Russell (fixed compile) --- drivers/lguest/Makefile | 2 +- {Documentation/virtual => tools}/lguest/.gitignore | 0 {Documentation/virtual => tools}/lguest/Makefile | 0 {Documentation/virtual => tools}/lguest/extract | 0 {Documentation/virtual => tools}/lguest/lguest.c | 2 +- {Documentation/virtual => tools}/lguest/lguest.txt | 0 6 files changed, 2 insertions(+), 2 deletions(-) rename {Documentation/virtual => tools}/lguest/.gitignore (100%) rename {Documentation/virtual => tools}/lguest/Makefile (100%) rename {Documentation/virtual => tools}/lguest/extract (100%) rename {Documentation/virtual => tools}/lguest/lguest.c (99%) rename {Documentation/virtual => tools}/lguest/lguest.txt (100%) diff --git a/drivers/lguest/Makefile b/drivers/lguest/Makefile index 8ac947c7e7c7..c4197503900e 100644 --- a/drivers/lguest/Makefile +++ b/drivers/lguest/Makefile @@ -18,7 +18,7 @@ Mastery: PREFIX=M Beer: @for f in Preparation Guest Drivers Launcher Host Switcher Mastery; do echo "{==- $$f -==}"; make -s $$f; done; echo "{==-==}" Preparation Preparation! Guest Drivers Launcher Host Switcher Mastery: - @sh ../../Documentation/virtual/lguest/extract $(PREFIX) `find ../../* -name '*.[chS]' -wholename '*lguest*'` + @sh ../../tools/lguest/extract $(PREFIX) `find ../../* -name '*.[chS]' -wholename '*lguest*'` Puppy: @clear @printf " __ \n (___()'\`;\n /, /\`\n \\\\\\\"--\\\\\\ \n" diff --git a/Documentation/virtual/lguest/.gitignore b/tools/lguest/.gitignore similarity index 100% rename from Documentation/virtual/lguest/.gitignore rename to tools/lguest/.gitignore diff --git a/Documentation/virtual/lguest/Makefile b/tools/lguest/Makefile similarity index 100% rename from Documentation/virtual/lguest/Makefile rename to tools/lguest/Makefile diff --git a/Documentation/virtual/lguest/extract b/tools/lguest/extract similarity index 100% rename from Documentation/virtual/lguest/extract rename to tools/lguest/extract diff --git a/Documentation/virtual/lguest/lguest.c b/tools/lguest/lguest.c similarity index 99% rename from Documentation/virtual/lguest/lguest.c rename to tools/lguest/lguest.c index c095d79cae73..f759f4f097c7 100644 --- a/Documentation/virtual/lguest/lguest.c +++ b/tools/lguest/lguest.c @@ -49,7 +49,7 @@ #include #include #include -#include "../../../include/linux/lguest_launcher.h" +#include "../../include/linux/lguest_launcher.h" /*L:110 * We can ignore the 43 include files we need for this program, but I do want * to draw attention to the use of kernel-style types. diff --git a/Documentation/virtual/lguest/lguest.txt b/tools/lguest/lguest.txt similarity index 100% rename from Documentation/virtual/lguest/lguest.txt rename to tools/lguest/lguest.txt