mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-29 05:13:54 -06:00

On Windows 'aux.*' is a reserved name and cannot be used for
filenames; see
aa365247
(v=vs.85).aspx
This prevents cloning the QEMU git repo on Windows:
C:\Java\sources\kvm> git clone https://github.com/qemu/qemu.git
Cloning into 'qemu'...
remote: Counting objects: 279563, done.
remote: Total 279563 (delta 0), reused 0 (delta 0), pack-reused 279563R
Receiving objects: 100% (279563/279563), 122.45 MiB | 3.52 MiB/s, done.
Resolving deltas: 100% (221942/221942), done.
Checking connectivity... done.
error: unable to create file hw/misc/aux.c (No such file or directory)
error: unable to create file include/hw/misc/aux.h (No such file or directory)
Checking out files: 100% (4795/4795), done.
fatal: unable to checkout working tree
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry the checkout with 'git checkout -f HEAD'
(bug https://bugs.launchpad.net/bugs/1595240)
Rename the offending files for the benefit of Windows.
Reported-by: Алексей Курган <akurgan@yandex.ru>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Wei Huang <wei@redhat.com>
Tested-by: KONRAD Frederic <fred.konrad@greensocs.com>
Message-id: 1467377145-32385-1-git-send-email-peter.maydell@linaro.org
55 lines
1.8 KiB
Text
55 lines
1.8 KiB
Text
common-obj-$(CONFIG_APPLESMC) += applesmc.o
|
|
common-obj-$(CONFIG_MAX111X) += max111x.o
|
|
common-obj-$(CONFIG_TMP105) += tmp105.o
|
|
common-obj-$(CONFIG_ISA_DEBUG) += debugexit.o
|
|
common-obj-$(CONFIG_SGA) += sga.o
|
|
common-obj-$(CONFIG_ISA_TESTDEV) += pc-testdev.o
|
|
common-obj-$(CONFIG_PCI_TESTDEV) += pci-testdev.o
|
|
|
|
obj-$(CONFIG_VMPORT) += vmport.o
|
|
|
|
# ARM devices
|
|
common-obj-$(CONFIG_PL310) += arm_l2x0.o
|
|
common-obj-$(CONFIG_INTEGRATOR_DEBUG) += arm_integrator_debug.o
|
|
common-obj-$(CONFIG_A9SCU) += a9scu.o
|
|
common-obj-$(CONFIG_ARM11SCU) += arm11scu.o
|
|
|
|
# PKUnity SoC devices
|
|
common-obj-$(CONFIG_PUV3) += puv3_pm.o
|
|
|
|
common-obj-$(CONFIG_MACIO) += macio/
|
|
|
|
obj-$(CONFIG_IVSHMEM) += ivshmem.o
|
|
|
|
obj-$(CONFIG_REALVIEW) += arm_sysctl.o
|
|
obj-$(CONFIG_NSERIES) += cbus.o
|
|
obj-$(CONFIG_ECCMEMCTL) += eccmemctl.o
|
|
obj-$(CONFIG_EXYNOS4) += exynos4210_pmu.o
|
|
obj-$(CONFIG_IMX) += imx_ccm.o
|
|
obj-$(CONFIG_IMX) += imx31_ccm.o
|
|
obj-$(CONFIG_IMX) += imx25_ccm.o
|
|
obj-$(CONFIG_IMX) += imx6_ccm.o
|
|
obj-$(CONFIG_IMX) += imx6_src.o
|
|
obj-$(CONFIG_MILKYMIST) += milkymist-hpdmc.o
|
|
obj-$(CONFIG_MILKYMIST) += milkymist-pfpu.o
|
|
obj-$(CONFIG_MAINSTONE) += mst_fpga.o
|
|
obj-$(CONFIG_OMAP) += omap_clk.o
|
|
obj-$(CONFIG_OMAP) += omap_gpmc.o
|
|
obj-$(CONFIG_OMAP) += omap_l4.o
|
|
obj-$(CONFIG_OMAP) += omap_sdrc.o
|
|
obj-$(CONFIG_OMAP) += omap_tap.o
|
|
obj-$(CONFIG_RASPI) += bcm2835_mbox.o
|
|
obj-$(CONFIG_RASPI) += bcm2835_property.o
|
|
obj-$(CONFIG_SLAVIO) += slavio_misc.o
|
|
obj-$(CONFIG_ZYNQ) += zynq_slcr.o
|
|
obj-$(CONFIG_ZYNQ) += zynq-xadc.o
|
|
obj-$(CONFIG_STM32F2XX_SYSCFG) += stm32f2xx_syscfg.o
|
|
obj-$(CONFIG_MIPS_CPS) += mips_cmgcr.o
|
|
obj-$(CONFIG_MIPS_CPS) += mips_cpc.o
|
|
obj-$(CONFIG_MIPS_ITU) += mips_itu.o
|
|
|
|
obj-$(CONFIG_PVPANIC) += pvpanic.o
|
|
obj-$(CONFIG_EDU) += edu.o
|
|
obj-$(CONFIG_HYPERV_TESTDEV) += hyperv_testdev.o
|
|
obj-$(CONFIG_AUX) += auxbus.o
|
|
obj-$(CONFIG_ASPEED_SOC) += aspeed_scu.o
|