diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2025-08-28 17:20:12 +0100 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-08-30 07:00:20 +1000 |
| commit | e61df9176d7a0107069de1a77b6f502b24b34f58 (patch) | |
| tree | 88c0ca5c1384f5bdddeabc807ba816c0cce8beec /bsd-user/main.c | |
| parent | d7cde4df1c1b1f24dfd7760fe897429b75200b19 (diff) | |
| download | focaccia-qemu-e61df9176d7a0107069de1a77b6f502b24b34f58.tar.gz focaccia-qemu-e61df9176d7a0107069de1a77b6f502b24b34f58.zip | |
linux-user: Drop deprecated -p option
The user-mode '-p' option has been deprecated since 9.0 and doesn't do anything except emit a warning. We are well past our minimum deprecation period, so drop the option. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20250828162012.3307647-1-peter.maydell@linaro.org>
Diffstat (limited to 'bsd-user/main.c')
| -rw-r--r-- | bsd-user/main.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/bsd-user/main.c b/bsd-user/main.c index 7e5d4bbce0..9ba69642f5 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -367,14 +367,6 @@ int main(int argc, char **argv) } } else if (!strcmp(r, "L")) { interp_prefix = argv[optind++]; - } else if (!strcmp(r, "p")) { - unsigned size, want = qemu_real_host_page_size(); - - r = argv[optind++]; - if (qemu_strtoui(r, NULL, 10, &size) || size != want) { - warn_report("Deprecated page size option cannot " - "change host page size (%u)", want); - } } else if (!strcmp(r, "g")) { gdbstub = g_strdup(argv[optind++]); } else if (!strcmp(r, "r")) { |