aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlec Murphy <alec@checksum.fail>2017-04-29 13:09:12 -0400
committerAlec Murphy <alec@checksum.fail>2017-04-29 13:09:12 -0400
commit319f8c0c5ca7d7259b65546874d21a352741f815 (patch)
tree86ea9fa2a85745be5603e70fb88b9cc8dae1f7c9
parent702c25458a2bb5aec9d72cc34a7a62f31ae3fcf5 (diff)
Update README
-rw-r--r--README.md4
-rwxr-xr-xisoc-mount2
2 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 58a1371..6909aa1 100644
--- a/README.md
+++ b/README.md
@@ -10,10 +10,12 @@ Currently, you can use redseafs to create/modify/read RedSea ISO.C files on any
# Commands
-`isoc-mount [--rw] <filename.ISO.C> <mount_point>` will mount an ISO.C image on `mount_point`
+`isoc-mount [--rw] [--2k] <filename.ISO.C> <mount_point>` will mount an ISO.C image on `mount_point`
Specify `--rw` to commit writes to ISO.C file, otherwise discarded on unmount.
+Specify `--2k` to pad ISO.C file to multiple of 2048 bytes, for compatibility with VirtualBox or burning to physical disc ONLY (These files will not mount in TempleOS, you will get `ERROR: Not RedSea`)
+
If the ISO.C file does not exist, a blank filesystem will be created (and written on unmount if `--rw` specified.)
`fusermount -u <mount_point>` to unmount
diff --git a/isoc-mount b/isoc-mount
index d382797..4b1c0a5 100755
--- a/isoc-mount
+++ b/isoc-mount
@@ -17,7 +17,7 @@ while ctr < len(sys.argv):
ctr += 1
if len(sys.argv) < 3:
- print "Usage: " + sys.argv[0] + " [--rw] <filename.ISO.C> <mount_point>"
+ print "Usage: " + sys.argv[0] + " [--rw] [--2k] <filename.ISO.C> <mount_point>"
print " --rw: commit writes to ISO.C file, otherwise discarded on unmount."
print " If the ISO.C file does not exist, a new one will be created."
print " --2k: Pad ISO.C to multiple of 2048 bytes "