xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] Misc patches
@ 2019-05-14 14:22 Wei Liu
  2019-05-14 14:22 ` [Xen-devel] " Wei Liu
                   ` (3 more replies)
  0 siblings, 4 replies; 14+ messages in thread
From: Wei Liu @ 2019-05-14 14:22 UTC (permalink / raw)
  To: xen-devel; +Cc: Wei Liu

Wei Liu (3):
  gitignore: ignore .vscode directory
  README: document requirement about python
  INSTALL: remove duplicate sentence

 .gitignore | 1 +
 INSTALL    | 1 -
 README     | 7 +++++++
 3 files changed, 8 insertions(+), 1 deletion(-)

-- 
2.20.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Xen-devel] [PATCH v2 0/3] Misc patches
  2019-05-14 14:22 [PATCH v2 0/3] Misc patches Wei Liu
@ 2019-05-14 14:22 ` Wei Liu
  2019-05-14 14:22 ` [PATCH v2 1/3] gitignore: ignore .vscode directory Wei Liu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 14+ messages in thread
From: Wei Liu @ 2019-05-14 14:22 UTC (permalink / raw)
  To: xen-devel; +Cc: Wei Liu

Wei Liu (3):
  gitignore: ignore .vscode directory
  README: document requirement about python
  INSTALL: remove duplicate sentence

 .gitignore | 1 +
 INSTALL    | 1 -
 README     | 7 +++++++
 3 files changed, 8 insertions(+), 1 deletion(-)

-- 
2.20.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH v2 1/3] gitignore: ignore .vscode directory
  2019-05-14 14:22 [PATCH v2 0/3] Misc patches Wei Liu
  2019-05-14 14:22 ` [Xen-devel] " Wei Liu
@ 2019-05-14 14:22 ` Wei Liu
  2019-05-14 14:22   ` [Xen-devel] " Wei Liu
  2019-05-15 11:38   ` George Dunlap
  2019-05-14 14:22 ` [PATCH v2 2/3] README: document requirement about python Wei Liu
  2019-05-14 14:22 ` [PATCH v2 3/3] INSTALL: remove duplicate sentence Wei Liu
  3 siblings, 2 replies; 14+ messages in thread
From: Wei Liu @ 2019-05-14 14:22 UTC (permalink / raw)
  To: xen-devel
  Cc: Stefano Stabellini, Wei Liu, Konrad Rzeszutek Wilk,
	George Dunlap, Andrew Cooper, Ian Jackson, Tim Deegan,
	Julien Grall, Jan Beulich

The directory is created by Visual Studio Code editor to store its
local state.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 26bc583f74..3822bb75ba 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,6 +30,7 @@ cscope.out
 cscope.po.out
 .config
 .vimrc
+.vscode
 
 dist
 stubdom/*.tar.gz
-- 
2.20.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [Xen-devel] [PATCH v2 1/3] gitignore: ignore .vscode directory
  2019-05-14 14:22 ` [PATCH v2 1/3] gitignore: ignore .vscode directory Wei Liu
@ 2019-05-14 14:22   ` Wei Liu
  2019-05-15 11:38   ` George Dunlap
  1 sibling, 0 replies; 14+ messages in thread
From: Wei Liu @ 2019-05-14 14:22 UTC (permalink / raw)
  To: xen-devel
  Cc: Stefano Stabellini, Wei Liu, Konrad Rzeszutek Wilk,
	George Dunlap, Andrew Cooper, Ian Jackson, Tim Deegan,
	Julien Grall, Jan Beulich

The directory is created by Visual Studio Code editor to store its
local state.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 26bc583f74..3822bb75ba 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,6 +30,7 @@ cscope.out
 cscope.po.out
 .config
 .vimrc
+.vscode
 
 dist
 stubdom/*.tar.gz
-- 
2.20.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [PATCH v2 2/3] README: document requirement about python
  2019-05-14 14:22 [PATCH v2 0/3] Misc patches Wei Liu
  2019-05-14 14:22 ` [Xen-devel] " Wei Liu
  2019-05-14 14:22 ` [PATCH v2 1/3] gitignore: ignore .vscode directory Wei Liu
@ 2019-05-14 14:22 ` Wei Liu
  2019-05-14 14:22   ` [Xen-devel] " Wei Liu
  2019-05-14 14:34   ` Jan Beulich
  2019-05-14 14:22 ` [PATCH v2 3/3] INSTALL: remove duplicate sentence Wei Liu
  3 siblings, 2 replies; 14+ messages in thread
From: Wei Liu @ 2019-05-14 14:22 UTC (permalink / raw)
  To: xen-devel
  Cc: Stefano Stabellini, Wei Liu, Konrad Rzeszutek Wilk,
	George Dunlap, Andrew Cooper, Ian Jackson, Tim Deegan,
	Julien Grall, Jan Beulich

Provide information on what is expected from the build system
regarding python.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
 README | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/README b/README
index 23e4f7c3dc..26d44cf7c1 100644
--- a/README
+++ b/README
@@ -181,6 +181,13 @@ Various tools, such as pygrub, have the following runtime dependencies:
           URL:    http://www.python.org/
           Debian: python
 
+Note that the build system expects `python` to be available. If your system
+only has `python2` or `python3` but not `python` (as in Linux From Scratch),
+you will need to create a symlink for it, or specify PYTHON= when invoking
+make, like (note the position of PYTHON= matters):
+
+    # make PYTHON=/usr/bin/python3
+
 Intel(R) Trusted Execution Technology Support
 =============================================
 
-- 
2.20.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [Xen-devel] [PATCH v2 2/3] README: document requirement about python
  2019-05-14 14:22 ` [PATCH v2 2/3] README: document requirement about python Wei Liu
@ 2019-05-14 14:22   ` Wei Liu
  2019-05-14 14:34   ` Jan Beulich
  1 sibling, 0 replies; 14+ messages in thread
From: Wei Liu @ 2019-05-14 14:22 UTC (permalink / raw)
  To: xen-devel
  Cc: Stefano Stabellini, Wei Liu, Konrad Rzeszutek Wilk,
	George Dunlap, Andrew Cooper, Ian Jackson, Tim Deegan,
	Julien Grall, Jan Beulich

Provide information on what is expected from the build system
regarding python.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
 README | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/README b/README
index 23e4f7c3dc..26d44cf7c1 100644
--- a/README
+++ b/README
@@ -181,6 +181,13 @@ Various tools, such as pygrub, have the following runtime dependencies:
           URL:    http://www.python.org/
           Debian: python
 
+Note that the build system expects `python` to be available. If your system
+only has `python2` or `python3` but not `python` (as in Linux From Scratch),
+you will need to create a symlink for it, or specify PYTHON= when invoking
+make, like (note the position of PYTHON= matters):
+
+    # make PYTHON=/usr/bin/python3
+
 Intel(R) Trusted Execution Technology Support
 =============================================
 
-- 
2.20.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [PATCH v2 3/3] INSTALL: remove duplicate sentence
  2019-05-14 14:22 [PATCH v2 0/3] Misc patches Wei Liu
                   ` (2 preceding siblings ...)
  2019-05-14 14:22 ` [PATCH v2 2/3] README: document requirement about python Wei Liu
@ 2019-05-14 14:22 ` Wei Liu
  2019-05-14 14:22   ` [Xen-devel] " Wei Liu
  2019-05-15 11:40   ` George Dunlap
  3 siblings, 2 replies; 14+ messages in thread
From: Wei Liu @ 2019-05-14 14:22 UTC (permalink / raw)
  To: xen-devel
  Cc: Stefano Stabellini, Wei Liu, Konrad Rzeszutek Wilk,
	George Dunlap, Andrew Cooper, Ian Jackson, Tim Deegan,
	Julien Grall, Jan Beulich

The same sentence is repeated in the next paragraph.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
 INSTALL | 1 -
 1 file changed, 1 deletion(-)

diff --git a/INSTALL b/INSTALL
index 9aa9ebdddc..1665ddd6a4 100644
--- a/INSTALL
+++ b/INSTALL
@@ -225,7 +225,6 @@ XEN_BUILD_TIME=hh:mm:ss
 SMBIOS_REL_DATE=mm/dd/yyyy
 VGABIOS_REL_DATE="dd Mon yyyy"
 
-During tools build external repos will be cloned into the source tree.
 This variable can be used to point to a different git binary to be used.
 GIT=
 
-- 
2.20.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [Xen-devel] [PATCH v2 3/3] INSTALL: remove duplicate sentence
  2019-05-14 14:22 ` [PATCH v2 3/3] INSTALL: remove duplicate sentence Wei Liu
@ 2019-05-14 14:22   ` Wei Liu
  2019-05-15 11:40   ` George Dunlap
  1 sibling, 0 replies; 14+ messages in thread
From: Wei Liu @ 2019-05-14 14:22 UTC (permalink / raw)
  To: xen-devel
  Cc: Stefano Stabellini, Wei Liu, Konrad Rzeszutek Wilk,
	George Dunlap, Andrew Cooper, Ian Jackson, Tim Deegan,
	Julien Grall, Jan Beulich

The same sentence is repeated in the next paragraph.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
 INSTALL | 1 -
 1 file changed, 1 deletion(-)

diff --git a/INSTALL b/INSTALL
index 9aa9ebdddc..1665ddd6a4 100644
--- a/INSTALL
+++ b/INSTALL
@@ -225,7 +225,6 @@ XEN_BUILD_TIME=hh:mm:ss
 SMBIOS_REL_DATE=mm/dd/yyyy
 VGABIOS_REL_DATE="dd Mon yyyy"
 
-During tools build external repos will be cloned into the source tree.
 This variable can be used to point to a different git binary to be used.
 GIT=
 
-- 
2.20.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* Re: [PATCH v2 2/3] README: document requirement about python
  2019-05-14 14:22 ` [PATCH v2 2/3] README: document requirement about python Wei Liu
  2019-05-14 14:22   ` [Xen-devel] " Wei Liu
@ 2019-05-14 14:34   ` Jan Beulich
  2019-05-14 14:34     ` [Xen-devel] " Jan Beulich
  1 sibling, 1 reply; 14+ messages in thread
From: Jan Beulich @ 2019-05-14 14:34 UTC (permalink / raw)
  To: Wei Liu
  Cc: Stefano Stabellini, Konrad Rzeszutek Wilk, George Dunlap,
	Andrew Cooper, Ian Jackson, Tim Deegan, Julien Grall, xen-devel

>>> On 14.05.19 at 16:22, <wei.liu2@citrix.com> wrote:
> Provide information on what is expected from the build system
> regarding python.
> 
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>

FWIW
Acked-by: Jan Beulich <jbeulich@suse.com>



_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Xen-devel] [PATCH v2 2/3] README: document requirement about python
  2019-05-14 14:34   ` Jan Beulich
@ 2019-05-14 14:34     ` Jan Beulich
  0 siblings, 0 replies; 14+ messages in thread
From: Jan Beulich @ 2019-05-14 14:34 UTC (permalink / raw)
  To: Wei Liu
  Cc: Stefano Stabellini, Konrad Rzeszutek Wilk, George Dunlap,
	Andrew Cooper, Ian Jackson, Tim Deegan, Julien Grall, xen-devel

>>> On 14.05.19 at 16:22, <wei.liu2@citrix.com> wrote:
> Provide information on what is expected from the build system
> regarding python.
> 
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>

FWIW
Acked-by: Jan Beulich <jbeulich@suse.com>



_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH v2 1/3] gitignore: ignore .vscode directory
  2019-05-14 14:22 ` [PATCH v2 1/3] gitignore: ignore .vscode directory Wei Liu
  2019-05-14 14:22   ` [Xen-devel] " Wei Liu
@ 2019-05-15 11:38   ` George Dunlap
  2019-05-15 11:38     ` [Xen-devel] " George Dunlap
  1 sibling, 1 reply; 14+ messages in thread
From: George Dunlap @ 2019-05-15 11:38 UTC (permalink / raw)
  To: Wei Liu, xen-devel
  Cc: Stefano Stabellini, Konrad Rzeszutek Wilk, George Dunlap,
	Andrew Cooper, Ian Jackson, Tim Deegan, Julien Grall,
	Jan Beulich

On 5/14/19 3:22 PM, Wei Liu wrote:
> The directory is created by Visual Studio Code editor to store its
> local state.
> 
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>

Acked-by: George Dunlap <george.dunlap@citrix.com>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Xen-devel] [PATCH v2 1/3] gitignore: ignore .vscode directory
  2019-05-15 11:38   ` George Dunlap
@ 2019-05-15 11:38     ` George Dunlap
  0 siblings, 0 replies; 14+ messages in thread
From: George Dunlap @ 2019-05-15 11:38 UTC (permalink / raw)
  To: Wei Liu, xen-devel
  Cc: Stefano Stabellini, Konrad Rzeszutek Wilk, George Dunlap,
	Andrew Cooper, Ian Jackson, Tim Deegan, Julien Grall,
	Jan Beulich

On 5/14/19 3:22 PM, Wei Liu wrote:
> The directory is created by Visual Studio Code editor to store its
> local state.
> 
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>

Acked-by: George Dunlap <george.dunlap@citrix.com>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH v2 3/3] INSTALL: remove duplicate sentence
  2019-05-14 14:22 ` [PATCH v2 3/3] INSTALL: remove duplicate sentence Wei Liu
  2019-05-14 14:22   ` [Xen-devel] " Wei Liu
@ 2019-05-15 11:40   ` George Dunlap
  2019-05-15 11:40     ` [Xen-devel] " George Dunlap
  1 sibling, 1 reply; 14+ messages in thread
From: George Dunlap @ 2019-05-15 11:40 UTC (permalink / raw)
  To: Wei Liu, xen-devel
  Cc: Stefano Stabellini, Konrad Rzeszutek Wilk, George Dunlap,
	Andrew Cooper, Ian Jackson, Tim Deegan, Julien Grall,
	Jan Beulich

On 5/14/19 3:22 PM, Wei Liu wrote:
> The same sentence is repeated in the next paragraph.
> 
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>

Acked-by: George Dunlap <george.dunlap@citrix.com>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Xen-devel] [PATCH v2 3/3] INSTALL: remove duplicate sentence
  2019-05-15 11:40   ` George Dunlap
@ 2019-05-15 11:40     ` George Dunlap
  0 siblings, 0 replies; 14+ messages in thread
From: George Dunlap @ 2019-05-15 11:40 UTC (permalink / raw)
  To: Wei Liu, xen-devel
  Cc: Stefano Stabellini, Konrad Rzeszutek Wilk, George Dunlap,
	Andrew Cooper, Ian Jackson, Tim Deegan, Julien Grall,
	Jan Beulich

On 5/14/19 3:22 PM, Wei Liu wrote:
> The same sentence is repeated in the next paragraph.
> 
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>

Acked-by: George Dunlap <george.dunlap@citrix.com>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2019-05-15 11:40 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-14 14:22 [PATCH v2 0/3] Misc patches Wei Liu
2019-05-14 14:22 ` [Xen-devel] " Wei Liu
2019-05-14 14:22 ` [PATCH v2 1/3] gitignore: ignore .vscode directory Wei Liu
2019-05-14 14:22   ` [Xen-devel] " Wei Liu
2019-05-15 11:38   ` George Dunlap
2019-05-15 11:38     ` [Xen-devel] " George Dunlap
2019-05-14 14:22 ` [PATCH v2 2/3] README: document requirement about python Wei Liu
2019-05-14 14:22   ` [Xen-devel] " Wei Liu
2019-05-14 14:34   ` Jan Beulich
2019-05-14 14:34     ` [Xen-devel] " Jan Beulich
2019-05-14 14:22 ` [PATCH v2 3/3] INSTALL: remove duplicate sentence Wei Liu
2019-05-14 14:22   ` [Xen-devel] " Wei Liu
2019-05-15 11:40   ` George Dunlap
2019-05-15 11:40     ` [Xen-devel] " George Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).