summaryrefslogtreecommitdiff
path: root/DISTRO_PORTING
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-07-02 20:21:34 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-07-18 10:04:44 -0400
commit72cdb3e783174dcf9223a49f03e3b0e2ca95ddb8 (patch)
treee7c6495a3b56e95f62658845eeebff7ec256f8d4 /DISTRO_PORTING
parent0d372efadf2152865757b1e7b06522abd2229899 (diff)
downloadsystemd-72cdb3e783174dcf9223a49f03e3b0e2ca95ddb8.tar.gz
build-sys: drop automake support
v2: - also mention m4
Diffstat (limited to 'DISTRO_PORTING')
-rw-r--r--DISTRO_PORTING39
1 files changed, 19 insertions, 20 deletions
diff --git a/DISTRO_PORTING b/DISTRO_PORTING
index 68107e46c9..0846ef0857 100644
--- a/DISTRO_PORTING
+++ b/DISTRO_PORTING
@@ -6,22 +6,22 @@ HOWTO:
1) Find the right configure parameters for:
- --with-rootprefix=
- --with-sysvinit-path=
- --with-sysvrcnd-path=
- --with-rc-local-script-path-start=
- --with-rc-local-script-path-stop=
- --with-kbd-loadkeys=
- --with-kbd-setfont=
- --with-tty-gid=
- --with-ntp-servers=
- --with-support-url=
+ -D rootprefix=
+ -D sysvinit-path=
+ -D sysvrcnd-path=
+ -D rc-local=
+ -D halt-local=
+ -D loadkeys-path=
+ -D setfont-path=
+ -D tty-gid=
+ -D ntp-servers=
+ -D support-url=
2) Try it out. Play around (as an ordinary user) with
'/usr/lib/systemd/systemd --test --system' for a test run
of systemd without booting. This will read the unit files and
print the initial transaction it would execute during boot-up.
- This will also inform you about ordering loops and suchlike
+ This will also inform you about ordering loops and suchlike.
NTP POOL:
@@ -46,17 +46,16 @@ PAM:
/etc/security/limits.conf will not be read unless you load pam_limits.
Make sure you add modules your distro expects from user services.
- Pass --with-pamconfdir=no to ./configure to avoid installing this file
- and instead install your own.
+ Pass -D pamconfdir=no to meson to avoid installing this file and
+ instead install your own.
CONTRIBUTING UPSTREAM:
- We generally do no longer accept distribution-specific
- patches to systemd upstream. If you have to make changes to
- systemd's source code to make it work on your distribution,
- unless your code is generic enough to be generally useful, we
- are unlikely to merge it. Please always consider adopting the
- upstream defaults. If that is not possible, please maintain
- the relevant patches downstream.
+ We generally do no longer accept distribution-specific patches to
+ systemd upstream. If you have to make changes to systemd's source code
+ to make it work on your distribution, unless your code is generic
+ enough to be generally useful, we are unlikely to merge it. Please
+ always consider adopting the upstream defaults. If that is not
+ possible, please maintain the relevant patches downstream.
Thank you for understanding.