From 74c204ec878e287e4d5750e9e865f29557d38ae5 Mon Sep 17 00:00:00 2001 From: Ali Moeeny Date: Mon, 14 Sep 2015 14:43:37 -0400 Subject: [PATCH 1/4] added instructions for homebrew Just for the sake of completeness. --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3370283..4a75f77 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,20 @@ Requirements * OS X 10.10.3 Yosemite or later * a 2010 or later Mac (i.e. a CPU that supports EPT) +Installation +------------ + +If you have home brew, then simply: + + $ brew update + $ brew install xhyve + +if not then: + Building -------- - + $ git clone https://github.com/mist64/xhyve + $ cd xhyve $ make The resulting binary will be in build/xhyve From eed74ba45d40dd7ea7f019290ec53c1bf13f3b2d Mon Sep 17 00:00:00 2001 From: Ali Moeeny Date: Tue, 15 Sep 2015 07:59:47 -0400 Subject: [PATCH 2/4] Fixed spelling of homebrew --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a75f77..ecdf4fd 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Requirements Installation ------------ -If you have home brew, then simply: +If you have homebrew, then simply: $ brew update $ brew install xhyve From dad514462c40927a0d60a0adea3e99f5f1ca596d Mon Sep 17 00:00:00 2001 From: Ali Moeeny Date: Wed, 24 Feb 2016 07:45:12 -0500 Subject: [PATCH 3/4] changed the brew command to always pull HEAD --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ecdf4fd..24051cc 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Installation If you have homebrew, then simply: $ brew update - $ brew install xhyve + $ brew install --HEAD xhyve if not then: From a9a041cb13a12c2e509a613190e09179da45b05f Mon Sep 17 00:00:00 2001 From: Ali Moeeny Date: Wed, 24 Feb 2016 07:49:54 -0500 Subject: [PATCH 4/4] added a comment to make the `--HEAD` more clear --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 24051cc..811f25b 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ If you have homebrew, then simply: $ brew update $ brew install --HEAD xhyve +The `--HEAD` in the brew command ensures that you always get the latest changes, even if the homebrew database is not yet updated. If for any reason you don't want that simply do `brew install xhyve` . + if not then: Building