mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
system: Rename softmmu/ directory as system/
The softmmu/ directory contains files specific to system emulation. Rename it as system/. Update meson rules, the MAINTAINERS file and all the documentation and comments. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20231004090629.37473-14-philmd@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
01c85e60a4
commit
8d7f2e767d
43 changed files with 41 additions and 39 deletions
|
@ -466,7 +466,7 @@ sub top_of_kernel_tree {
|
|||
my @tree_check = (
|
||||
"COPYING", "MAINTAINERS", "Makefile",
|
||||
"README.rst", "docs", "VERSION",
|
||||
"linux-user", "softmmu"
|
||||
"linux-user", "system"
|
||||
);
|
||||
|
||||
foreach my $check (@tree_check) {
|
||||
|
|
|
@ -148,7 +148,7 @@ tcg
|
|||
~ (/qemu)?(/accel/tcg|/replay|/tcg)/.*
|
||||
|
||||
sysemu
|
||||
~ (/qemu)?(/softmmu/.*|/accel/.*)
|
||||
~ (/qemu)?(/system/.*|/accel/.*)
|
||||
|
||||
(headers)
|
||||
~ (/qemu)?(/include/.*)
|
||||
|
|
|
@ -796,7 +796,7 @@ sub top_of_tree {
|
|||
&& (-d "${lk_path}docs")
|
||||
&& (-f "${lk_path}VERSION")
|
||||
&& (-d "${lk_path}linux-user/")
|
||||
&& (-d "${lk_path}softmmu/")) {
|
||||
&& (-d "${lk_path}system/")) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
|
|
|
@ -43,10 +43,10 @@ EXTRA_CFLAGS="$CFLAGS -U __OPTIMIZE__"
|
|||
if ! { [ -e "./COPYING" ] &&
|
||||
[ -e "./MAINTAINERS" ] &&
|
||||
[ -e "./Makefile" ] &&
|
||||
[ -e "./docs" ] &&
|
||||
[ -d "./docs" ] &&
|
||||
[ -e "./VERSION" ] &&
|
||||
[ -e "./linux-user" ] &&
|
||||
[ -e "./softmmu" ];} ; then
|
||||
[ -d "./linux-user" ] &&
|
||||
[ -d "./system" ];} ; then
|
||||
fatal "Please run the script from the top of the QEMU tree"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue