mirror of https://github.com/xemu-project/xemu.git
Move block drivers into their own directory
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
5efa9d5a8b
commit
019d6b8ff0
14
Makefile
14
Makefile
|
@ -64,18 +64,18 @@ recurse-all: $(SUBDIR_RULES)
|
||||||
# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
|
# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
|
||||||
|
|
||||||
BLOCK_OBJS=cutils.o cache-utils.o qemu-malloc.o module.o
|
BLOCK_OBJS=cutils.o cache-utils.o qemu-malloc.o module.o
|
||||||
BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
|
BLOCK_OBJS+=block/cow.o block/qcow.o aes.o block/vmdk.o block/cloop.o
|
||||||
BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
|
BLOCK_OBJS+=block/dmg.o block/bochs.o block/vpc.o block/vvfat.o
|
||||||
BLOCK_OBJS+=block-qcow2.o block-parallels.o block-nbd.o
|
BLOCK_OBJS+=block/qcow2.o block/parallels.o block/nbd.o
|
||||||
BLOCK_OBJS+=nbd.o block.o aio.o
|
BLOCK_OBJS+=nbd.o block.o aio.o
|
||||||
|
|
||||||
ifdef CONFIG_WIN32
|
ifdef CONFIG_WIN32
|
||||||
BLOCK_OBJS += block-raw-win32.o
|
BLOCK_OBJS += block/raw-win32.o
|
||||||
else
|
else
|
||||||
ifdef CONFIG_AIO
|
ifdef CONFIG_AIO
|
||||||
BLOCK_OBJS += posix-aio-compat.o
|
BLOCK_OBJS += posix-aio-compat.o
|
||||||
endif
|
endif
|
||||||
BLOCK_OBJS += block-raw-posix.o
|
BLOCK_OBJS += block/raw-posix.o
|
||||||
endif
|
endif
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
|
@ -234,7 +234,7 @@ clean:
|
||||||
# avoid old build problems by removing potentially incorrect old files
|
# avoid old build problems by removing potentially incorrect old files
|
||||||
rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
|
rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
|
||||||
rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
|
rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
|
||||||
rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
|
rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d
|
||||||
$(MAKE) -C tests clean
|
$(MAKE) -C tests clean
|
||||||
for d in $(TARGET_DIRS); do \
|
for d in $(TARGET_DIRS); do \
|
||||||
$(MAKE) -C $$d $@ || exit 1 ; \
|
$(MAKE) -C $$d $@ || exit 1 ; \
|
||||||
|
@ -408,4 +408,4 @@ tarbin:
|
||||||
$(mandir)/man8/qemu-nbd.8
|
$(mandir)/man8/qemu-nbd.8
|
||||||
|
|
||||||
# Include automatically generated dependency files
|
# Include automatically generated dependency files
|
||||||
-include $(wildcard *.d audio/*.d slirp/*.d)
|
-include $(wildcard *.d audio/*.d slirp/*.d block/*.d)
|
||||||
|
|
|
@ -388,6 +388,7 @@ static void bdrv_raw_init(void)
|
||||||
{
|
{
|
||||||
bdrv_register(&bdrv_raw);
|
bdrv_register(&bdrv_raw);
|
||||||
bdrv_register(&bdrv_host_device);
|
bdrv_register(&bdrv_host_device);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
block_init(bdrv_raw_init);
|
block_init(bdrv_raw_init);
|
|
@ -2029,7 +2029,7 @@ done # for target in $targets
|
||||||
|
|
||||||
# build tree in object directory if source path is different from current one
|
# build tree in object directory if source path is different from current one
|
||||||
if test "$source_path_used" = "yes" ; then
|
if test "$source_path_used" = "yes" ; then
|
||||||
DIRS="tests tests/cris slirp audio"
|
DIRS="tests tests/cris slirp audio block"
|
||||||
FILES="Makefile tests/Makefile"
|
FILES="Makefile tests/Makefile"
|
||||||
FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
|
FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
|
||||||
FILES="$FILES tests/test-mmap.c"
|
FILES="$FILES tests/test-mmap.c"
|
||||||
|
|
Loading…
Reference in New Issue