-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename ocamlfind package to mirage-block-xen{,.front,.back}
Signed-off-by: David Scott <[email protected]>
- Loading branch information
David Scott
committed
Dec 7, 2013
1 parent
8b8beee
commit f5a98ec
Showing
9 changed files
with
55 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.PHONY: all clean install build | ||
all: build doc | ||
|
||
NAME=xenblock | ||
NAME=mirage-block-xen | ||
J=4 | ||
|
||
include config.mk | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 23dd5356ed801dd35f2cee4a1959c72c) | ||
# DO NOT EDIT (digest: 02c79c5a53813c4e3efca390f0487e99) | ||
version = "0.9.9" | ||
description = "Xen block frontend and backend driver implementation" | ||
requires = "cstruct cstruct.syntax" | ||
archive(byte) = "xenblock.cma" | ||
archive(byte, plugin) = "xenblock.cma" | ||
archive(native) = "xenblock.cmxa" | ||
archive(native, plugin) = "xenblock.cmxs" | ||
exists_if = "xenblock.cma" | ||
archive(byte) = "mirage_block_xen.cma" | ||
archive(byte, plugin) = "mirage_block_xen.cma" | ||
archive(native) = "mirage_block_xen.cmxa" | ||
archive(native, plugin) = "mirage_block_xen.cmxs" | ||
exists_if = "mirage_block_xen.cma" | ||
package "front" ( | ||
version = "0.9.9" | ||
description = "Xen block frontend and backend driver implementation" | ||
requires = | ||
"lwt lwt.syntax cstruct cstruct.syntax mirage-xen mirage-types shared-memory-ring shared-memory-ring.lwt xenblock" | ||
archive(byte) = "blkfront.cma" | ||
archive(byte, plugin) = "blkfront.cma" | ||
archive(native) = "blkfront.cmxa" | ||
archive(native, plugin) = "blkfront.cmxs" | ||
exists_if = "blkfront.cma" | ||
"lwt lwt.syntax cstruct cstruct.syntax mirage-types shared-memory-ring shared-memory-ring.lwt mirage-block-xen" | ||
archive(byte) = "mirage_block_xen_front.cma" | ||
archive(byte, plugin) = "mirage_block_xen_front.cma" | ||
archive(native) = "mirage_block_xen_front.cmxa" | ||
archive(native, plugin) = "mirage_block_xen_front.cmxs" | ||
exists_if = "mirage_block_xen_front.cma" | ||
) | ||
|
||
package "back" ( | ||
version = "0.9.9" | ||
description = "Xen block frontend and backend driver implementation" | ||
requires = | ||
"lwt lwt.syntax cstruct cstruct.syntax mirage-xen shared-memory-ring shared-memory-ring.lwt xenblock xenctrl" | ||
archive(byte) = "blkback.cma" | ||
archive(byte, plugin) = "blkback.cma" | ||
archive(native) = "blkback.cmxa" | ||
archive(native, plugin) = "blkback.cmxs" | ||
exists_if = "blkback.cma" | ||
"lwt lwt.syntax cstruct cstruct.syntax shared-memory-ring shared-memory-ring.lwt mirage-block-xen xenctrl" | ||
archive(byte) = "mirage_block_xen_back.cma" | ||
archive(byte, plugin) = "mirage_block_xen_back.cma" | ||
archive(native) = "mirage_block_xen_back.cmxa" | ||
archive(native, plugin) = "mirage_block_xen_back.cmxs" | ||
exists_if = "mirage_block_xen_back.cma" | ||
) | ||
# OASIS_STOP | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters