Răsfoiți Sursa

meson: convert hw/9pfs, cleanup

hw/Makefile.objs is gone so there is more code that can be removed.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Marc-André Lureau 6 ani în urmă
părinte
comite
b2c00bce54
8 a modificat fișierele cu 25 adăugiri și 44 ștergeri
  1. 0 4
      Makefile
  2. 0 8
      Makefile.objs
  3. 0 15
      Makefile.target
  4. 4 0
      hw/9pfs/Kconfig
  5. 0 9
      hw/9pfs/Makefile.objs
  6. 20 0
      hw/9pfs/meson.build
  7. 0 8
      hw/Makefile.objs
  8. 1 0
      hw/meson.build

+ 0 - 4
Makefile

@@ -178,10 +178,6 @@ ifneq ($(wildcard config-host.mak),)
 include $(SRC_PATH)/Makefile.objs
 include $(SRC_PATH)/Makefile.objs
 endif
 endif
 
 
-dummy := $(call unnest-vars,, \
-                common-obj-y \
-                common-obj-m)
-
 include $(SRC_PATH)/tests/Makefile.include
 include $(SRC_PATH)/tests/Makefile.include
 
 
 all: $(DOCS) $(if $(BUILD_DOCS),sphinxdocs) recurse-all modules
 all: $(DOCS) $(if $(BUILD_DOCS),sphinxdocs) recurse-all modules

+ 0 - 8
Makefile.objs

@@ -61,18 +61,10 @@ common-obj-$(if $(CONFIG_RBD),m) += block-rbd$(DSOSUF)
 common-obj-$(if $(CONFIG_LZFSE),m) += block-dmg-lzfse$(DSOSUF)
 common-obj-$(if $(CONFIG_LZFSE),m) += block-dmg-lzfse$(DSOSUF)
 common-obj-$(if $(and $(CONFIG_BZIP2),$(CONFIG_DMG)),m) += block-dmg-bz2$(DSOSUF)
 common-obj-$(if $(and $(CONFIG_BZIP2),$(CONFIG_DMG)),m) += block-dmg-bz2$(DSOSUF)
 
 
-common-obj-y += hw/
-common-obj-m += hw/
-
 common-obj-y += libqmp.fa
 common-obj-y += libqmp.fa
 
 
 endif # CONFIG_SOFTMMU
 endif # CONFIG_SOFTMMU
 
 
-#######################################################################
-# Target-independent parts used in system and user emulation
-
-common-obj-y += hw/
-
 ######################################################################
 ######################################################################
 # Resource file for Windows executables
 # Resource file for Windows executables
 version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o
 version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o

+ 0 - 15
Makefile.target

@@ -156,7 +156,6 @@ endif #CONFIG_BSD_USER
 ifdef CONFIG_SOFTMMU
 ifdef CONFIG_SOFTMMU
 obj-y += softmmu/
 obj-y += softmmu/
 obj-y += gdbstub.o
 obj-y += gdbstub.o
-obj-y += hw/
 LIBS := $(libs_softmmu) $(LIBS)
 LIBS := $(libs_softmmu) $(LIBS)
 
 
 # Temporary until emulators are linked by Meson
 # Temporary until emulators are linked by Meson
@@ -185,20 +184,6 @@ endif # CONFIG_SOFTMMU
 dummy := $(call unnest-vars,,obj-y)
 dummy := $(call unnest-vars,,obj-y)
 all-obj-y := $(obj-y)
 all-obj-y := $(obj-y)
 
 
-#
-# common-obj-m has some crap here, probably as side effect from
-# unnest-vars recursing into target directories to fill obj-y and not
-# properly handling the -m case.
-#
-# Clear common-obj-m as workaround.  Fixes suspious dependency errors
-# when building devices as modules.  A bit hackish, but should be ok
-# as long as we do not have any target-specific modules.
-#
-# The meson-based build system currently in development doesn't need
-# unnest-vars and will obsolete this workaround.
-#
-common-obj-m :=
-
 include $(SRC_PATH)/Makefile.objs
 include $(SRC_PATH)/Makefile.objs
 dummy := $(call fix-paths,../,, \
 dummy := $(call fix-paths,../,, \
               authz-obj-y \
               authz-obj-y \

+ 4 - 0
hw/9pfs/Kconfig

@@ -2,8 +2,12 @@ config FSDEV_9P
     bool
     bool
     depends on VIRTFS
     depends on VIRTFS
 
 
+config 9PFS
+    bool
+
 config VIRTIO_9P
 config VIRTIO_9P
     bool
     bool
     default y
     default y
     depends on VIRTFS && VIRTIO
     depends on VIRTFS && VIRTIO
     select FSDEV_9P
     select FSDEV_9P
+    select 9PFS

+ 0 - 9
hw/9pfs/Makefile.objs

@@ -1,9 +0,0 @@
-common-obj-y  = 9p.o 9p-util.o
-common-obj-y += 9p-local.o 9p-xattr.o
-common-obj-y += 9p-xattr-user.o 9p-posix-acl.o
-common-obj-y += coth.o cofs.o codir.o cofile.o
-common-obj-y += coxattr.o 9p-synth.o
-common-obj-y += 9p-proxy.o
-
-common-obj-$(CONFIG_XEN) += xen-9p-backend.o
-obj-$(CONFIG_VIRTIO_9P) += virtio-9p-device.o

+ 20 - 0
hw/9pfs/meson.build

@@ -0,0 +1,20 @@
+fs_ss = ss.source_set()
+fs_ss.add(files(
+  '9p-local.c',
+  '9p-posix-acl.c',
+  '9p-proxy.c',
+  '9p-synth.c',
+  '9p-util.c',
+  '9p-xattr-user.c',
+  '9p-xattr.c',
+  '9p.c',
+  'codir.c',
+  'cofile.c',
+  'cofs.c',
+  'coth.c',
+  'coxattr.c',
+))
+fs_ss.add(when: 'CONFIG_XEN', if_true: files('xen-9p-backend.c'))
+softmmu_ss.add_all(when: 'CONFIG_9PFS', if_true: fs_ss)
+
+specific_ss.add(when: 'CONFIG_VIRTIO_9P', if_true: files('virtio-9p-device.c'))

+ 0 - 8
hw/Makefile.objs

@@ -1,8 +0,0 @@
-ifeq ($(CONFIG_SOFTMMU), y)
-devices-dirs-$(call lor,$(CONFIG_VIRTIO_9P),$(call land,$(CONFIG_VIRTFS),$(CONFIG_XEN))) += 9pfs/
-endif
-
-common-obj-y += $(devices-dirs-y)
-common-obj-m += display/
-common-obj-m += usb/
-obj-y += $(devices-dirs-y)

+ 1 - 0
hw/meson.build

@@ -1,3 +1,4 @@
+subdir('9pfs')
 subdir('acpi')
 subdir('acpi')
 subdir('adc')
 subdir('adc')
 subdir('audio')
 subdir('audio')