Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authornl6720 <nl6720@gmail.com>2020-08-12 18:24:30 +0300
committernl6720 <nl6720@gmail.com>2020-08-17 21:33:20 +0300
commite9f209efbf344213609d39b652e7bcbbfa14054d (patch)
treec02cd24ddb2bb48d7476b3c2de43cd1ae68690ce /README.rst
parent31b1dfdbe40dc8c0dace436790708ced784fc402 (diff)
Deprecate build.sh scripts and old mkarchiso commands
Replace build.sh scripts with calls to mkarchiso -B "profiledir" build_profile. Fixes https://gitlab.archlinux.org/archlinux/archiso/-/issues/37 .
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst14
1 files changed, 6 insertions, 8 deletions
diff --git a/README.rst b/README.rst
index b65db6d..4c17082 100644
--- a/README.rst
+++ b/README.rst
@@ -32,8 +32,7 @@ Profiles
Archiso comes with two profiles: **baseline** and **releng**. While both can serve as starting points for creating
custom live media, **releng** is used to create the monthly installation medium.
They can be found below `configs/baseline/ <configs/baseline/>`_ and `configs/releng/ <configs/releng/>`_
-(respectively). Both profiles are defined by files to be placed into overlays (e.g. *airootfs* -> *the image's /*) and
-dynamic actions (i.e. *build.sh* scripts).
+(respectively). Both profiles are defined by files to be placed into overlays (e.g. *airootfs* -> *the image's /*).
Create images
=============
@@ -50,28 +49,27 @@ be lost on update).
The examples below will assume an unmodified profile in a system location (unless noted otherwise).
-It is advised to check the help information of the **build.sh** scripts in the profiles:
+It is advised to check the help information of the **mkarchiso**:
.. code:: bash
- /usr/share/archiso/configs/releng/build.sh --help
+ mkarchiso -h
Create images with packaged archiso
-----------------------------------
.. code:: bash
- /usr/share/archiso/configs/releng/build.sh -w path/to/work_dir -o path/to/out_dir
+ mkarchiso -B path/to/profile -w path/to/work_dir -o path/to/out_dir build_profile
Create images with local clone
------------------------------
-Clone this repository and make sure to run with the local `mkarchiso <archiso/mkarchiso>`_ script in *PATH* (if it has
-been modified):
+Clone this repository and run:
.. code:: bash
- PATH="archiso:$PATH" ./configs/releng/build.sh -w path/to/work_dir -o path/to/out_dir
+ ./archiso/mkarchiso -B path/to/profile -w path/to/work_dir -o path/to/out_dir build_profile
Testing
=======