aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-10-29 17:22:08 +0300
committerLoïc Hoguin <[email protected]>2016-10-29 17:22:22 +0300
commit5b304e2c987cf30965293b520912ef39771059e1 (patch)
tree752ac8917098174dd0506fd0a11d3f1d233d1aa1
parent5c18311f91530378626d63e0e4cb9e65c1d7f44b (diff)
downloaderlang.mk-5b304e2c987cf30965293b520912ef39771059e1.tar.gz
erlang.mk-5b304e2c987cf30965293b520912ef39771059e1.tar.bz2
erlang.mk-5b304e2c987cf30965293b520912ef39771059e1.zip
Add chapter about self-extracting releases
[ci-skip]
-rw-r--r--doc/src/guide/book.asciidoc2
-rw-r--r--doc/src/guide/releases.asciidoc2
-rw-r--r--doc/src/guide/sfx.asciidoc49
3 files changed, 52 insertions, 1 deletions
diff --git a/doc/src/guide/book.asciidoc b/doc/src/guide/book.asciidoc
index a39b907..3d1471a 100644
--- a/doc/src/guide/book.asciidoc
+++ b/doc/src/guide/book.asciidoc
@@ -26,6 +26,8 @@ include::ports.asciidoc[NIFs and port drivers]
include::releases.asciidoc[Releases]
+include::sfx.asciidoc[Self-extracting releases]
+
include::escripts.asciidoc[Escripts]
include::compat.asciidoc[Compatibility with other build tools]
diff --git a/doc/src/guide/releases.asciidoc b/doc/src/guide/releases.asciidoc
index 79cd123..67abe87 100644
--- a/doc/src/guide/releases.asciidoc
+++ b/doc/src/guide/releases.asciidoc
@@ -98,7 +98,7 @@ release upgrade:
$ make relup
This will create an archive at the root directory of the
-release, `$(RELX_OUTPUT_DIR)/example/example-2.tar.gz`.
+release, `$RELX_OUTPUT_DIR/example/example-2.tar.gz`.
Move the archive to the correct location on the running
node. From the release's root directory:
diff --git a/doc/src/guide/sfx.asciidoc b/doc/src/guide/sfx.asciidoc
new file mode 100644
index 0000000..aae2c8d
--- /dev/null
+++ b/doc/src/guide/sfx.asciidoc
@@ -0,0 +1,49 @@
+[[sfx]]
+== Self-extracting releases
+
+Erlang.mk allows you to package xref:relx[Relx releases] as
+self-extracting archives. These archives contain all the
+files in the release and come in the form of a script that
+will extract and run the release automatically.
+
+This allows you to package the release as a single file
+that can then be executed.
+
+This feature is currently experimental. Feedback is much
+appreciated.
+
+=== Generating the self-extracting archive
+
+To generate a self-extracting release, all you need to do
+is pass the `SFX=1` variable to Make when you build the
+release:
+
+[source,bash]
+$ make SFX=1
+
+This will create a self-extracting archive in
+`$RELX_OUTPUT_DIR/<name>.run`. For example if the release
+is named `hello_world` and `$RELX_OUTPUT_DIR` is the default,
+the file will be located at `_rel/hello_world.run`.
+
+=== Running the release
+
+Simply execute the script to get started:
+
+[source,bash]
+----
+$ ./_rel/hello_world.run
+Exec: /tmp/tmp.3eeEq7E1ta/erts-8.1/bin/erlexec ...
+Root: /tmp/tmp.3eeEq7E1ta
+/tmp/tmp.3eeEq7E1ta
+Erlang/OTP 19 [erts-8.1] [source] [64-bit] [smp:4:4] ...
+
+Eshell V8.1 (abort with ^G)
+(hello_world@localhost)1>
+----
+
+As you can see the archive is extracted to a temporary
+directory before the release can be started.
+
+The self-extracting script currently only supports starting
+the release in `console` mode.