diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2023-03-23 11:15:29 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2023-03-23 14:09:09 +0100 |
commit | 1441a6a7518b4c8d361e6a29b3f6a4bf765a1171 (patch) | |
tree | c4bb29319f36ffb36af68508b4d52d53e8268c0b /docs | |
parent | find-esp: don't silently error bootctl install if presumed XBOOTLDR part is s... (diff) | |
download | systemd-1441a6a7518b4c8d361e6a29b3f6a4bf765a1171.tar.xz systemd-1441a6a7518b4c8d361e6a29b3f6a4bf765a1171.zip |
docs: Explicitly tell developers to enable mkosi required meson options
We need repart, bootctl, analyze and ukify for mkosi so let's make
sure those get built in the HACKING guide.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/HACKING.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/HACKING.md b/docs/HACKING.md index a7ddfc0ca8..265f17e0d5 100644 --- a/docs/HACKING.md +++ b/docs/HACKING.md @@ -88,7 +88,7 @@ $ git clone https://github.com/systemd/systemd.git $ cd systemd $ git checkout -b <BRANCH> # where BRANCH is the name of the branch $ vim src/core/main.c # or wherever you'd like to make your changes -$ meson build # configure the build +$ meson setup build -Danalyze=true -Drepart=true -Defi=true -Dbootloader=true -Dukify=true # configure the build $ ninja -C build # build it locally, see if everything compiles fine $ meson test -C build # run some simple regression tests $ cd .. |