-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-5.1…
…-pull-request' into staging linux-user pull request 20200605-v2 Implement F_OFD_ fcntl() command, /proc/cpuinfo for hppa Fix socket(), prnctl() error codes, underflow in target_mremap, epoll_create() strace, oldumount for alpha User-mode build dependencies improvement # gpg: Signature made Sat 06 Jun 2020 14:15:36 BST # gpg: using RSA key CD2F75DDC8E3A4DC2E4F5173F30C38BD3F2FBE3C # gpg: issuer "laurent@vivier.eu" # gpg: Good signature from "Laurent Vivier <lvivier@redhat.com>" [full] # gpg: aka "Laurent Vivier <laurent@vivier.eu>" [full] # gpg: aka "Laurent Vivier (Red Hat) <lvivier@redhat.com>" [full] # Primary key fingerprint: CD2F 75DD C8E3 A4DC 2E4F 5173 F30C 38BD 3F2F BE3C * remotes/vivier2/tags/linux-user-for-5.1-pull-request: stubs: Restrict ui/win32-kbd-hook to system-mode hw/core: Restrict CpuClass::get_crash_info() to system-mode target/s390x: Restrict CpuClass::get_crash_info() to system-mode target/i386: Restrict CpuClass::get_crash_info() to system-mode arch_init: Remove unused 'qapi-commands-misc.h' include exec: Assert CPU migration is not used on user-only build target/riscv/cpu: Restrict CPU migration to system-mode stubs/Makefile: Reduce the user-mode object list util/Makefile: Reduce the user-mode object list tests/Makefile: Restrict some softmmu-only tests tests/Makefile: Only display TCG-related tests when TCG is available configure: Avoid building TCG when not needed Makefile: Only build virtiofsd if system-mode is enabled linux-user: implement OFD locks linux-user/mmap.c: fix integer underflow in target_mremap linux-user/strace.list: fix epoll_create{,1} -strace output linux-user: Add support for /proc/cpuinfo on hppa platform linux-user: return target error codes for socket() and prctl() linux-user, alpha: fix oldumount syscall Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
- Loading branch information
Showing
16 changed files
with
143 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,55 @@ | ||
stub-obj-y += arch_type.o | ||
stub-obj-y += bdrv-next-monitor-owned.o | ||
stub-obj-y += blk-commit-all.o | ||
stub-obj-y += blockdev-close-all-bdrv-states.o | ||
stub-obj-y += clock-warp.o | ||
stub-obj-y += cpu-get-clock.o | ||
stub-obj-y += cpu-get-icount.o | ||
stub-obj-y += dump.o | ||
stub-obj-y += error-printf.o | ||
stub-obj-y += fdset.o | ||
stub-obj-y += gdbstub.o | ||
stub-obj-y += get-vm-name.o | ||
stub-obj-y += iothread.o | ||
stub-obj-y += iothread-lock.o | ||
stub-obj-y += is-daemonized.o | ||
stub-obj-$(CONFIG_LINUX_AIO) += linux-aio.o | ||
stub-obj-$(CONFIG_LINUX_IO_URING) += io_uring.o | ||
stub-obj-y += machine-init-done.o | ||
stub-obj-y += migr-blocker.o | ||
stub-obj-y += change-state-handler.o | ||
stub-obj-y += monitor.o | ||
stub-obj-y += monitor-core.o | ||
stub-obj-y += notify-event.o | ||
stub-obj-y += qmp_memory_device.o | ||
stub-obj-y += qtest.o | ||
stub-obj-y += ramfb.o | ||
stub-obj-y += replay.o | ||
stub-obj-y += replay-user.o | ||
stub-obj-y += runstate-check.o | ||
stub-obj-$(CONFIG_SOFTMMU) += semihost.o | ||
stub-obj-y += set-fd-handler.o | ||
stub-obj-y += vmgenid.o | ||
stub-obj-y += sysbus.o | ||
stub-obj-y += tpm.o | ||
stub-obj-y += trace-control.o | ||
stub-obj-y += uuid.o | ||
stub-obj-y += vm-stop.o | ||
stub-obj-y += vmstate.o | ||
stub-obj-y += win32-kbd-hook.o | ||
stub-obj-$(CONFIG_SOFTMMU) += win32-kbd-hook.o | ||
|
||
####################################################################### | ||
# code used by both qemu system emulation and qemu-img | ||
|
||
ifeq ($(call lor,$(CONFIG_SOFTMMU),$(CONFIG_TOOLS)),y) | ||
|
||
stub-obj-y += arch_type.o | ||
stub-obj-y += bdrv-next-monitor-owned.o | ||
stub-obj-y += blockdev-close-all-bdrv-states.o | ||
stub-obj-y += change-state-handler.o | ||
stub-obj-y += clock-warp.o | ||
stub-obj-y += fd-register.o | ||
stub-obj-y += qmp_memory_device.o | ||
stub-obj-y += target-monitor-defs.o | ||
stub-obj-y += fw_cfg.o | ||
stub-obj-y += get-vm-name.o | ||
stub-obj-y += iothread.o | ||
stub-obj-y += machine-init-done.o | ||
stub-obj-y += migr-blocker.o | ||
stub-obj-y += monitor.o | ||
stub-obj-y += pci-host-piix.o | ||
stub-obj-y += ram-block.o | ||
stub-obj-y += replay-user.o | ||
stub-obj-y += target-get-monitor-def.o | ||
stub-obj-y += vmgenid.o | ||
stub-obj-y += target-monitor-defs.o | ||
stub-obj-y += uuid.o | ||
stub-obj-y += vm-stop.o | ||
stub-obj-y += xen-common.o | ||
stub-obj-y += xen-hvm.o | ||
stub-obj-y += pci-host-piix.o | ||
stub-obj-y += ram-block.o | ||
stub-obj-y += ramfb.o | ||
stub-obj-y += fw_cfg.o | ||
stub-obj-$(CONFIG_SOFTMMU) += semihost.o | ||
|
||
endif # CONFIG_SOFTMMU || CONFIG_TOOLS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.