aboutsummaryrefslogtreecommitdiff
path: root/doc/images/service-graph.dot
blob: b7b617abbc961e8a9a8b858e01ec7bc795ec877c (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
digraph "Service Type Dependencies" {
  shepherd [shape = box, fontname = Helvetica];
  pam [shape = box, fontname = Helvetica];
  etc [shape = box, fontname = Helvetica];
  profile [shape = box, fontname = Helvetica];
  accounts [shape = box, fontname = Helvetica];
  activation [shape = box, fontname = Helvetica];
  boot [shape = box, fontname = Helvetica];
  system [shape = house, fontname = Helvetica];
  lshd -> shepherd;
  lshd -> pam;
  udev -> shepherd;
  nscd -> shepherd [label = "extends"];
  "nss-mdns" -> nscd;
  "kvm-rules" -> udev;
  colord -> udev;
  dbus -> shepherd;
  colord -> dbus;
  upower -> udev;
  upower -> dbus;
  polkit -> dbus;
  polkit -> pam;
  elogind -> dbus;
  elogind -> udev;
  elogind -> polkit [label = "extends"];
  shepherd -> boot;
  colord -> accounts;
  accounts -> activation;
  accounts -> etc;
  etc -> activation;
  activation -> boot;
  pam -> etc;
  elogind -> pam;
  guix -> shepherd;
  guix -> activation;
  guix -> accounts;
  boot -> system;
  etc -> system;
  profile -> system;
}
d=b50f42680352213beb64c248c1af2f9dcc1612fc'>gnu: libelf: Fix compilation for powerpc64le-linux....* gnu/packages/elf.scm (libelf)[arguments]: Modify replacement 'configure phase to invoke "./configure" with "--host=powerpc64le-unknown-linux-gnu" on powerpc64le-linux. Signed-off-by: Chris Marusich <cmmarusich@gmail.com> Leo Le Bouter 2021-01-25Merge branch 'master' into stagingLeo Famulari 2021-01-19gnu: libabigail: Update to 1.8....* gnu/packages/elf.scm (libabigail): Update to 1.8. Eric Bavier 2020-12-13gnu: elfutils: Update to 0.182....* gnu/packages/elf.scm (elfutils): Update to 0.182. [arguments]: Add "--disable-libdebuginfod" and "--disable-debuginfod" to #:configure-flags. Marius Bakke 2020-07-22gnu: patchelf: Update to 0.11....* gnu/packages/elf.scm (patchelf): Update to 0.11. Signed-off-by: Marius Bakke <marius@gnu.org> Michael Rohleder 2020-06-02gnu: libabigail: Update to 1.7....* gnu/packages/elf.scm (libabigail): Update to 1.7. Marius Bakke 2020-05-17gnu: elfutils: Skip tests on powerpc....* gnu/packages/elf.scm (elfutils)[arguments]: Skip tests on powerpc. Efraim Flashner 2020-02-05gnu: elfutils: Update synopsis and description...* gnu/packages/elf.scm (elfutils): Update summaries. [synopsis]: Updated. [description]: Updated. Signed-off-by: Marius Bakke <mbakke@fastmail.com> Mark Wielaard