All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Huth <thuth@redhat.com>
To: qemu-devel@nongnu.org, Paolo Bonzini <pbonzini@redhat.com>,
	Peter Crosthwaite <crosthwaite.peter@gmail.com>,
	Richard Henderson <rth@twiddle.net>,
	Aurelien Jarno <aurelien@aurel32.net>,
	Peter Maydell <peter.maydell@linaro.org>
Cc: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>,
	Michael Walle <michael@walle.cc>,
	Laurent Vivier <laurent@vivier.eu>,
	Yongbok Kim <yongbok.kim@imgtec.com>,
	Anthony Green <green@moxielogic.com>, Jia Liu <proljc@gmail.com>,
	David Gibson <david@gibson.dropbear.id.au>,
	Alexander Graf <agraf@suse.de>,
	Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>,
	Artyom Tarasenko <atar4qemu@gmail.com>,
	Guan Xuetao <gxt@mprc.pku.edu.cn>,
	Eduardo Habkost <ehabkost@redhat.com>,
	Max Filippov <jcmvbkbc@gmail.com>,
	Bastian Koppelmann <kbastian@mail.uni-paderborn.de>,
	James Hogan <james.hogan@imgtec.com>,
	Christian Borntraeger <borntraeger@de.ibm.com>,
	Cornelia Huck <cornelia.huck@de.ibm.com>,
	Marcelo Tosatti <mtosatti@redhat.com>
Subject: [Qemu-devel] [PATCH 09/20] mips: Move CPU files to target/ folder
Date: Fri,  9 Dec 2016 13:17:39 +0100	[thread overview]
Message-ID: <1481285870-3396-10-git-send-email-thuth@redhat.com> (raw)
In-Reply-To: <1481285870-3396-1-git-send-email-thuth@redhat.com>

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 MAINTAINERS                                   | 4 ++--
 include/hw/mips/cpudevs.h                     | 2 +-
 {target-mips => target/mips}/Makefile.objs    | 0
 {target-mips => target/mips}/TODO             | 0
 {target-mips => target/mips}/cpu-qom.h        | 0
 {target-mips => target/mips}/cpu.c            | 0
 {target-mips => target/mips}/cpu.h            | 0
 {target-mips => target/mips}/dsp_helper.c     | 0
 {target-mips => target/mips}/gdbstub.c        | 0
 {target-mips => target/mips}/helper.c         | 0
 {target-mips => target/mips}/helper.h         | 0
 {target-mips => target/mips}/kvm.c            | 0
 {target-mips => target/mips}/kvm_mips.h       | 0
 {target-mips => target/mips}/lmi_helper.c     | 0
 {target-mips => target/mips}/machine.c        | 0
 {target-mips => target/mips}/mips-defs.h      | 0
 {target-mips => target/mips}/mips-semi.c      | 0
 {target-mips => target/mips}/msa_helper.c     | 0
 {target-mips => target/mips}/op_helper.c      | 0
 {target-mips => target/mips}/translate.c      | 0
 {target-mips => target/mips}/translate_init.c | 0
 21 files changed, 3 insertions(+), 3 deletions(-)
 rename {target-mips => target/mips}/Makefile.objs (100%)
 rename {target-mips => target/mips}/TODO (100%)
 rename {target-mips => target/mips}/cpu-qom.h (100%)
 rename {target-mips => target/mips}/cpu.c (100%)
 rename {target-mips => target/mips}/cpu.h (100%)
 rename {target-mips => target/mips}/dsp_helper.c (100%)
 rename {target-mips => target/mips}/gdbstub.c (100%)
 rename {target-mips => target/mips}/helper.c (100%)
 rename {target-mips => target/mips}/helper.h (100%)
 rename {target-mips => target/mips}/kvm.c (100%)
 rename {target-mips => target/mips}/kvm_mips.h (100%)
 rename {target-mips => target/mips}/lmi_helper.c (100%)
 rename {target-mips => target/mips}/machine.c (100%)
 rename {target-mips => target/mips}/mips-defs.h (100%)
 rename {target-mips => target/mips}/mips-semi.c (100%)
 rename {target-mips => target/mips}/msa_helper.c (100%)
 rename {target-mips => target/mips}/op_helper.c (100%)
 rename {target-mips => target/mips}/translate.c (100%)
 rename {target-mips => target/mips}/translate_init.c (100%)

diff --git a/MAINTAINERS b/MAINTAINERS
index c7b1a3f..fb6c3a6 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -161,7 +161,7 @@ MIPS
 M: Aurelien Jarno <aurelien@aurel32.net>
 M: Yongbok Kim <yongbok.kim@imgtec.com>
 S: Maintained
-F: target-mips/
+F: target/mips/
 F: hw/mips/
 F: hw/misc/mips_*
 F: hw/intc/mips_gic.c
@@ -274,7 +274,7 @@ F: target/arm/kvm.c
 MIPS
 M: James Hogan <james.hogan@imgtec.com>
 S: Maintained
-F: target-mips/kvm.c
+F: target/mips/kvm.c
 
 PPC
 M: Alexander Graf <agraf@suse.de>
diff --git a/include/hw/mips/cpudevs.h b/include/hw/mips/cpudevs.h
index 8673daa..31f5319 100644
--- a/include/hw/mips/cpudevs.h
+++ b/include/hw/mips/cpudevs.h
@@ -1,7 +1,7 @@
 #ifndef HW_MIPS_CPUDEVS_H
 #define HW_MIPS_CPUDEVS_H
 
-#include "target-mips/cpu-qom.h"
+#include "cpu-qom.h"
 
 /* Definitions for MIPS CPU internal devices.  */
 
diff --git a/target-mips/Makefile.objs b/target/mips/Makefile.objs
similarity index 100%
rename from target-mips/Makefile.objs
rename to target/mips/Makefile.objs
diff --git a/target-mips/TODO b/target/mips/TODO
similarity index 100%
rename from target-mips/TODO
rename to target/mips/TODO
diff --git a/target-mips/cpu-qom.h b/target/mips/cpu-qom.h
similarity index 100%
rename from target-mips/cpu-qom.h
rename to target/mips/cpu-qom.h
diff --git a/target-mips/cpu.c b/target/mips/cpu.c
similarity index 100%
rename from target-mips/cpu.c
rename to target/mips/cpu.c
diff --git a/target-mips/cpu.h b/target/mips/cpu.h
similarity index 100%
rename from target-mips/cpu.h
rename to target/mips/cpu.h
diff --git a/target-mips/dsp_helper.c b/target/mips/dsp_helper.c
similarity index 100%
rename from target-mips/dsp_helper.c
rename to target/mips/dsp_helper.c
diff --git a/target-mips/gdbstub.c b/target/mips/gdbstub.c
similarity index 100%
rename from target-mips/gdbstub.c
rename to target/mips/gdbstub.c
diff --git a/target-mips/helper.c b/target/mips/helper.c
similarity index 100%
rename from target-mips/helper.c
rename to target/mips/helper.c
diff --git a/target-mips/helper.h b/target/mips/helper.h
similarity index 100%
rename from target-mips/helper.h
rename to target/mips/helper.h
diff --git a/target-mips/kvm.c b/target/mips/kvm.c
similarity index 100%
rename from target-mips/kvm.c
rename to target/mips/kvm.c
diff --git a/target-mips/kvm_mips.h b/target/mips/kvm_mips.h
similarity index 100%
rename from target-mips/kvm_mips.h
rename to target/mips/kvm_mips.h
diff --git a/target-mips/lmi_helper.c b/target/mips/lmi_helper.c
similarity index 100%
rename from target-mips/lmi_helper.c
rename to target/mips/lmi_helper.c
diff --git a/target-mips/machine.c b/target/mips/machine.c
similarity index 100%
rename from target-mips/machine.c
rename to target/mips/machine.c
diff --git a/target-mips/mips-defs.h b/target/mips/mips-defs.h
similarity index 100%
rename from target-mips/mips-defs.h
rename to target/mips/mips-defs.h
diff --git a/target-mips/mips-semi.c b/target/mips/mips-semi.c
similarity index 100%
rename from target-mips/mips-semi.c
rename to target/mips/mips-semi.c
diff --git a/target-mips/msa_helper.c b/target/mips/msa_helper.c
similarity index 100%
rename from target-mips/msa_helper.c
rename to target/mips/msa_helper.c
diff --git a/target-mips/op_helper.c b/target/mips/op_helper.c
similarity index 100%
rename from target-mips/op_helper.c
rename to target/mips/op_helper.c
diff --git a/target-mips/translate.c b/target/mips/translate.c
similarity index 100%
rename from target-mips/translate.c
rename to target/mips/translate.c
diff --git a/target-mips/translate_init.c b/target/mips/translate_init.c
similarity index 100%
rename from target-mips/translate_init.c
rename to target/mips/translate_init.c
-- 
1.8.3.1

  parent reply	other threads:[~2016-12-09 12:18 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-09 12:17 [Qemu-devel] [PATCH for-2.9 00/20] Move target-* CPU file into a target/ folder Thomas Huth
2016-12-09 12:17 ` [Qemu-devel] [PATCH 01/20] Makefile: Allow CPU targets to reside in target/ folder, too Thomas Huth
2016-12-09 12:24   ` Laurent Vivier
2016-12-09 16:51     ` Thomas Huth
2016-12-10 10:59       ` Laurent Vivier
2016-12-11 23:26         ` David Gibson
2016-12-09 12:17 ` [Qemu-devel] [PATCH 02/20] tilegx: Move CPU files to target/ folder Thomas Huth
2016-12-09 12:17 ` [Qemu-devel] [PATCH 03/20] m68k: " Thomas Huth
2016-12-09 12:26   ` Laurent Vivier
2016-12-09 12:17 ` [Qemu-devel] [PATCH 04/20] alpha: " Thomas Huth
2016-12-09 16:43   ` Richard Henderson
2016-12-09 12:17 ` [Qemu-devel] [PATCH 05/20] arm: " Thomas Huth
2016-12-13 18:19   ` Peter Maydell
2016-12-14  7:43     ` Thomas Huth
2016-12-14  7:56       ` Laurent Vivier
2016-12-14  7:59         ` Thomas Huth
2016-12-14  8:54           ` Paolo Bonzini
2016-12-09 12:17 ` [Qemu-devel] [PATCH 06/20] ppc: " Thomas Huth
2016-12-10  8:55   ` David Gibson
2016-12-09 12:17 ` [Qemu-devel] [PATCH 07/20] i386: " Thomas Huth
2016-12-09 12:39   ` Eduardo Habkost
2016-12-09 12:17 ` [Qemu-devel] [PATCH 08/20] microblaze: " Thomas Huth
2016-12-09 12:17 ` Thomas Huth [this message]
2016-12-09 12:17 ` [Qemu-devel] [PATCH 10/20] s390x: " Thomas Huth
2016-12-09 12:34   ` Christian Borntraeger
2016-12-09 12:40   ` Cornelia Huck
2016-12-09 12:17 ` [Qemu-devel] [PATCH 11/20] sparc: " Thomas Huth
     [not found]   ` <CACXAS8ACJpCDJ+Ti9xhY3hvYz4CWD+E2iWNQ5H+8r8oUggm-Yg@mail.gmail.com>
2016-12-09 14:21     ` Artyom Tarasenko
2016-12-09 12:17 ` [Qemu-devel] [PATCH 12/20] cris: " Thomas Huth
2016-12-09 12:17 ` [Qemu-devel] [PATCH 13/20] lm32: " Thomas Huth
2016-12-09 12:31   ` Michael Walle
2016-12-09 12:17 ` [Qemu-devel] [PATCH 14/20] moxie: " Thomas Huth
2016-12-09 12:17 ` [Qemu-devel] [PATCH 15/20] openrisc: " Thomas Huth
2016-12-09 12:17 ` [Qemu-devel] [PATCH 16/20] sh4: " Thomas Huth
2016-12-09 12:17 ` [Qemu-devel] [PATCH 17/20] tricore: " Thomas Huth
2016-12-09 12:30   ` Bastian Koppelmann
2016-12-09 12:17 ` [Qemu-devel] [PATCH 18/20] unicore32: " Thomas Huth
2016-12-11  0:16   ` Xuetao Guan
2016-12-11  0:21     ` Xuetao Guan
2016-12-09 12:17 ` [Qemu-devel] [PATCH 19/20] xtensa: " Thomas Huth
2016-12-09 18:12   ` Max Filippov
2016-12-09 12:17 ` [Qemu-devel] [PATCH 20/20] Makefile.target: Targets now have to reside in the " Thomas Huth
2016-12-09 12:27   ` Laurent Vivier
2016-12-13 16:20     ` Paolo Bonzini
2016-12-10 12:54 ` [Qemu-devel] [PATCH for-2.9 00/20] Move target-* CPU file into a " Edgar E. Iglesias

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1481285870-3396-10-git-send-email-thuth@redhat.com \
    --to=thuth@redhat.com \
    --cc=agraf@suse.de \
    --cc=atar4qemu@gmail.com \
    --cc=aurelien@aurel32.net \
    --cc=borntraeger@de.ibm.com \
    --cc=cornelia.huck@de.ibm.com \
    --cc=crosthwaite.peter@gmail.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=edgar.iglesias@gmail.com \
    --cc=ehabkost@redhat.com \
    --cc=green@moxielogic.com \
    --cc=gxt@mprc.pku.edu.cn \
    --cc=james.hogan@imgtec.com \
    --cc=jcmvbkbc@gmail.com \
    --cc=kbastian@mail.uni-paderborn.de \
    --cc=laurent@vivier.eu \
    --cc=mark.cave-ayland@ilande.co.uk \
    --cc=michael@walle.cc \
    --cc=mtosatti@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=proljc@gmail.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    --cc=yongbok.kim@imgtec.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.