|
|
0d20ef |
From 77107d9bc262ebae54dec9cff788ff1b7504c7d6 Mon Sep 17 00:00:00 2001
|
|
|
0d20ef |
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
|
0d20ef |
Date: Thu, 20 Nov 2014 16:10:08 +0000
|
|
|
0d20ef |
Subject: [PATCH] p2v: Remove --fullscreen option.
|
|
|
0d20ef |
|
|
|
0d20ef |
It did nothing and was left over from an earlier attempt to add
|
|
|
0d20ef |
fullscreen mode. That is not needed any longer since we now run
|
|
|
0d20ef |
virt-p2v under the matchbox window manager.
|
|
|
0d20ef |
|
|
|
0d20ef |
(cherry picked from commit 11347db5762441cd97791367d3cdf7e0c5a0ddc5)
|
|
|
0d20ef |
---
|
|
|
0d20ef |
p2v/main.c | 3 ---
|
|
|
0d20ef |
1 file changed, 3 deletions(-)
|
|
|
0d20ef |
|
|
|
0d20ef |
diff --git a/p2v/main.c b/p2v/main.c
|
|
|
0d20ef |
index 9c34413c..a93ca1c 100644
|
|
|
0d20ef |
--- a/p2v/main.c
|
|
|
0d20ef |
+++ b/p2v/main.c
|
|
|
0d20ef |
@@ -37,7 +37,6 @@
|
|
|
0d20ef |
|
|
|
0d20ef |
#include "p2v.h"
|
|
|
0d20ef |
|
|
|
0d20ef |
-int fullscreen;
|
|
|
0d20ef |
char **all_disks;
|
|
|
0d20ef |
char **all_removable;
|
|
|
0d20ef |
char **all_interfaces;
|
|
|
0d20ef |
@@ -54,7 +53,6 @@ static const struct option long_options[] = {
|
|
|
0d20ef |
{ "help", 0, 0, HELP_OPTION },
|
|
|
0d20ef |
{ "cmdline", 1, 0, 0 },
|
|
|
0d20ef |
{ "long-options", 0, 0, 0 },
|
|
|
0d20ef |
- { "fullscreen", 0, 0, 0 },
|
|
|
0d20ef |
{ "verbose", 0, 0, 'v' },
|
|
|
0d20ef |
{ "version", 0, 0, 'V' },
|
|
|
0d20ef |
{ 0, 0, 0, 0 }
|
|
|
0d20ef |
@@ -75,7 +73,6 @@ usage (int status)
|
|
|
0d20ef |
"Options:\n"
|
|
|
0d20ef |
" --help Display brief help\n"
|
|
|
0d20ef |
" --cmdline=CMDLINE Used to debug command line parsing\n"
|
|
|
0d20ef |
- " --fullscreen Run virt-p2v in full screen mode\n"
|
|
|
0d20ef |
" -v|--verbose Verbose messages\n"
|
|
|
0d20ef |
" -V|--version Display version and exit\n"
|
|
|
0d20ef |
"For more information, see the manpage %s(1).\n"),
|
|
|
0d20ef |
--
|
|
|
0d20ef |
1.8.3.1
|
|
|
0d20ef |
|