From c8b2f622978f6fa171face6707c09b1c6d11e477 Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" <berrange@redhat.com> Date: Tue, 15 Sep 2009 17:25:30 +0100 Subject: [PATCH] Move UML driver to src/uml/ * src/uml_conf.c, src/uml_conf.h, src/uml_driver.c, src/uml_driver.h: Move to src/uml/ * daemon/qemud.c, src/Makefile.am: Adjust for changed paths --- daemon/qemud.c | 2 +- src/Makefile.am | 4 ++-- src/{ => uml}/uml_conf.c | 0 src/{ => uml}/uml_conf.h | 0 src/{ => uml}/uml_driver.c | 0 src/{ => uml}/uml_driver.h | 0 6 files changed, 3 insertions(+), 3 deletions(-) rename src/{ => uml}/uml_conf.c (100%) rename src/{ => uml}/uml_conf.h (100%) rename src/{ => uml}/uml_driver.c (100%) rename src/{ => uml}/uml_driver.h (100%) diff --git a/daemon/qemud.c b/daemon/qemud.c index f54c971af2..d14567c929 100644 --- a/daemon/qemud.c +++ b/daemon/qemud.c @@ -75,7 +75,7 @@ #include "lxc/lxc_driver.h" #endif #ifdef WITH_UML -#include "uml_driver.h" +#include "uml/uml_driver.h" #endif #ifdef WITH_ONE #include "opennebula/one_driver.h" diff --git a/src/Makefile.am b/src/Makefile.am index 643a2ff46f..256109eea3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -157,8 +157,8 @@ QEMU_DRIVER_SOURCES = \ cgroup.c cgroup.h UML_DRIVER_SOURCES = \ - uml_conf.c uml_conf.h \ - uml_driver.c uml_driver.h + uml/uml_conf.c uml/uml_conf.h \ + uml/uml_driver.c uml/uml_driver.h ONE_DRIVER_SOURCES = \ ./opennebula/one_conf.c \ diff --git a/src/uml_conf.c b/src/uml/uml_conf.c similarity index 100% rename from src/uml_conf.c rename to src/uml/uml_conf.c diff --git a/src/uml_conf.h b/src/uml/uml_conf.h similarity index 100% rename from src/uml_conf.h rename to src/uml/uml_conf.h diff --git a/src/uml_driver.c b/src/uml/uml_driver.c similarity index 100% rename from src/uml_driver.c rename to src/uml/uml_driver.c diff --git a/src/uml_driver.h b/src/uml/uml_driver.h similarity index 100% rename from src/uml_driver.h rename to src/uml/uml_driver.h