diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2016-09-10 13:29:56 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2016-09-10 13:29:56 +0000 |
commit | dfa16e4a89158f3d3198db71e2eba3bda9330078 (patch) | |
tree | cfa8399e5348c35eae05f59aa0ea8e2e20bd14ba /package | |
parent | dfc83dd740beaa46b637b87b5a804abf1cff7bee (diff) | |
download | s6-linux-init-dfa16e4a89158f3d3198db71e2eba3bda9330078.tar.xz |
Make s6-linux-init a real init package.
This means:
- removing leaky options to s6-linux-init-maker. Default initial_path is
now always /usr/bin:/bin; the uid and gid of the catch-all logger (used
at boot time) can now be given numerically instead of relying on the
(run-time) user db mapping.
- moving s6-halt, s6-poweroff and s6-reboot over here, from s6-linux-utils
- clarifying on the documentation a bit.
Diffstat (limited to 'package')
-rw-r--r-- | package/deps.mak | 10 | ||||
-rw-r--r-- | package/modes | 3 | ||||
-rw-r--r-- | package/targets.mak | 5 |
3 files changed, 17 insertions, 1 deletions
diff --git a/package/deps.mak b/package/deps.mak index f1fb7db..95fbd4b 100644 --- a/package/deps.mak +++ b/package/deps.mak @@ -2,7 +2,17 @@ # This file has been generated by tools/gen-deps.sh # +src/init/hpr.o src/init/hpr.lo: src/init/hpr.c +src/init/s6-halt.o src/init/s6-halt.lo: src/init/s6-halt.c src/init/s6-linux-init-maker.o src/init/s6-linux-init-maker.lo: src/init/s6-linux-init-maker.c +src/init/s6-poweroff.o src/init/s6-poweroff.lo: src/init/s6-poweroff.c +src/init/s6-reboot.o src/init/s6-reboot.lo: src/init/s6-reboot.c +s6-halt: EXTRA_LIBS := +s6-halt: src/init/s6-halt.o -lskarnet s6-linux-init-maker: EXTRA_LIBS := s6-linux-init-maker: src/init/s6-linux-init-maker.o -lskarnet +s6-poweroff: EXTRA_LIBS := +s6-poweroff: src/init/s6-poweroff.o -lskarnet +s6-reboot: EXTRA_LIBS := +s6-reboot: src/init/s6-reboot.o -lskarnet diff --git a/package/modes b/package/modes index 4b115b4..f2fafad 100644 --- a/package/modes +++ b/package/modes @@ -1 +1,4 @@ s6-linux-init-maker 0700 +s6-halt 0700 +s6-poweroff 0700 +s6-reboot 0700 diff --git a/package/targets.mak b/package/targets.mak index 2330c89..83ed8c5 100644 --- a/package/targets.mak +++ b/package/targets.mak @@ -1,6 +1,9 @@ BIN_TARGETS := SBIN_TARGETS := \ -s6-linux-init-maker +s6-linux-init-maker \ +s6-halt \ +s6-poweroff \ +s6-reboot LIBEXEC_TARGETS := |