diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-07-29 13:42:28 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-07-29 13:42:28 +0200 |
commit | ecfdecfd6a0f8ee6001fb1360a6fcf942cfc554b (patch) | |
tree | fab2fbc33e3f24b111049a8cb0386622092156b0 /docs | |
parent | test: Don't mount build sources into image when running non-interactively (diff) | |
download | systemd-ecfdecfd6a0f8ee6001fb1360a6fcf942cfc554b.tar.xz systemd-ecfdecfd6a0f8ee6001fb1360a6fcf942cfc554b.zip |
docs: Simplify hacking instructions a bit
We enable RuntimeBuildSources=yes by default so let's drop it from
the documentation.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/HACKING.md | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/docs/HACKING.md b/docs/HACKING.md index 2e964f4178..b17875f62c 100644 --- a/docs/HACKING.md +++ b/docs/HACKING.md @@ -63,21 +63,10 @@ ToolsTree=default ``` Every time you rerun the `mkosi` command a fresh image is built, incorporating -all current changes you made to the project tree. To avoid having to build a new -image all the time when iterating on a patch, add the following to -`mkosi.local.conf`: - -```conf -[Host] -RuntimeBuildSources=yes -``` - -After enabling this setting, the source and build directories will be mounted to -`/work/src` and `/work/build` respectively when booting the image as a container -or virtual machine. To build the latest changes and re-install after booting the -image, run one of the following commands in another terminal on your host ( -choose the right one depending on the distribution of the container or virtual -machine): +all current changes you made to the project tree. To build the latest changes +and re-install after booting the image, run one of the following commands in +another terminal on your host (choose the right one depending on the +distribution of the container or virtual machine): ```sh mkosi -t none && mkosi ssh dnf upgrade --disablerepo="*" "/work/build/*.rpm" # CentOS/Fedora |