Skip to content

Commit

Permalink
Merge pull request #169 from avsm/master
Browse files Browse the repository at this point in the history
[xen] Don't actually try to run xl create (very system specific), but ju...
  • Loading branch information
avsm committed Dec 18, 2013
2 parents 644339b + 7765573 commit df12dce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/mirage.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,8 @@ let configure_makefile t mode d =
append oc "run: build";
begin match mode with
| `Xen ->
append oc "\txl create %s.xl" t.name
append oc "\t@echo %s.xl has been created. Edit it to add VIFs or VBDs" t.name;
append oc "\t@echo Then do something similar to: xl create -c %s.xl" t.name
| `Unix _ ->
append oc "\t$(SUDO) ./mir-%s" t.name
end;
Expand Down

0 comments on commit df12dce

Please sign in to comment.