summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* core-services: load kmods before mounting filesystems (close #39). 20160419Juan RP2016-04-191-0/+0
|
* Merge pull request #45 from renatoaguiar/suspend-hybridJuan RP2016-04-192-4/+9
|\ | | | | zzz: add suspend-hybrid support
| * zzz: add suspend-hybrid supportRenato Aguiar2016-04-182-4/+9
|/
* Manpage tweaksChristian Neukirchen2016-01-044-20/+23
|
* Merge pull request #43 from CMB/hostname 20151111Enno Boland2015-11-111-1/+1
|\ | | | | Don't output newline to /proc file when setting hostname.
| * Don't output newline to /proc file when setting hostname.Christopher Brannon2015-11-111-1/+1
|/ | | | | | This breaks in certain combinations of echo command and standard library, notably musl and bash builtin echo, or coreutils echo + musl.
* Merge pull request #42 from suiginsoft/master 20151108Juan RP2015-11-081-23/+24
|\ | | | | Added support for detached LUKS headers, keyfile offset and keyfile size.
| * Added support for LUKS headers, keyfile offset and size.suigin2015-11-071-23/+24
|/ | | | | Additionally, fixed problem where discard and readonly options were only recognized for plain/swap crypt devices but not LUKS devices.
* Merge pull request #41 from Duncaen/masterJuan RP2015-11-061-1/+1
|\ | | | | agetty-generic: fix strange space substitution
| * agetty-generic: fix strange space substitutionDuncaen2015-11-051-1/+1
|/
* core-services/sysctl: drop sysctl(8) --system requirement. 20150905Juan RP2015-09-052-18/+12
| | | | | Use sysctl -p everywhere: works with procps-ng and busybox (and probably others as well).
* Merge pull request #40 from voidlinux/busybox-sysctl 20150827Eivind Uggedal2015-08-271-2/+18
|\ | | | | core-services: sysctl --system fallback for busybox
| * core-services: sysctl --system fallback for busyboxEivind Uggedal2015-08-271-2/+18
|/
* Added core-services/98-sbin-merge scriptlet to create usr/sbin symlink. 20150603Juan RP2015-06-031-0/+11
| | | | | | This checks if /usr/sbin is a real directory and then moves it to /usr/sbin.old if there are only symlinks, and then the /usr/sbin -> /usr/bin symlink is created.
* services/agetty*: update for usr/bin move. 20150602.1Juan RP2015-06-022-2/+2
|
* crypt.awk: do not hardcode path to blkid. 20150602Juan RP2015-06-021-1/+1
|
* Update paths for the usr/sbin -> usr/bin move.Juan RP2015-06-025-10/+10
|
* Find out size of the saved random-seed via /proc/sys/kernel/random/poolsize. 20150511.1Juan RP2015-05-112-2/+2
| | | | | This is what the random(4) manual page recommends, and hopefully should improve entropy reading from /dev/{u,}random.
* services/agetty-generic/finish: drop bashism (close #37). 20150511Juan RP2015-05-111-2/+1
|
* services/sulogin: drop bashism.Juan RP2015-04-291-1/+1
|
* services/sulogin: use active tty not tty1 to make console=ttyS0 work.Juan RP2015-04-291-1/+3
| | | | Thanks to Christian Neukirchen for the hint.
* core-services: load kernel modules that aren't autoloaded by eudev3 anymore. 20150424Juan RP2015-04-241-0/+6
| | | | | We use the output of `kmod static-nodes` to get a list of modules that should be loaded for the running kernel, just like systemd does via tmpfiles.d(5).
* zzz: fix suspend.Christian Neukirchen2015-04-091-1/+1
|
* Merge pull request #33 from nmeum/styleJuan RP2015-04-094-8/+8
|\ | | | | Style fixes
| * shutdown: Don't hardcode nameSören Tempel2015-04-081-1/+1
| |
| * 3: Fix indentionSören Tempel2015-04-081-1/+1
| |
| * halt: Remove trailing whitespaceSören Tempel2015-04-081-1/+1
| |
| * shutdown: Quote optionSören Tempel2015-04-081-1/+1
| |
| * zzz: Use printf(1) instead of echo(1) -nSören Tempel2015-04-021-4/+4
| | | | | | | | | | | | | | The behaviour of the -n flag is implementation-defined See: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/echo.html#tag_20_37
* | Merge pull request #35 from bougyman/master 20150407bougyman2015-04-072-0/+21
|\ \ | | | | | | 3: Detect and deactivate LVM Volume Groups on shutdown
| * | 3: Detect and deactivate LVM Volume Groups on shutdownbougyman2015-04-072-0/+21
|/ /
* | agetty-generic/run: fix reading conf on cwd.Juan RP2015-04-021-1/+1
| |
* | agetty-tty1: unbreak and only apply --noclear on tty1. 20150402.1Juan RP2015-04-022-2/+5
| |
* | Merge pull request #32 from nmeum/services 20150402Juan RP2015-04-0234-41/+53
|\ \ | |/ |/| Refactor services/*
| * services: getty -> agettySören Tempel2015-04-012-2/+2
| |
| * services: -8 is available on getty tooSören Tempel2015-04-011-1/+2
| |
| * services: uppercase configuration variablesSören Tempel2015-04-014-7/+7
| |
| * services: use more relative symlinksSören Tempel2015-04-0111-11/+11
| |
| * services: Refactor agetty-serialSören Tempel2015-04-018-6/+14
| |
| * services: Refactor agetty-consoleSören Tempel2015-04-012-7/+3
| |
| * services: Refactor agetty-tty? servicesSören Tempel2015-04-0113-17/+24
|/
* Merge pull request #31 from nmeum/haltChristian Neukirchen2015-03-312-17/+21
|\ | | | | Various small shutdown(8) improvements
| * shutdown: simplify if clauseSören Tempel2015-03-311-3/+1
| |
| * shutdown: Use printf instead of echo -nSören Tempel2015-03-311-4/+4
| | | | | | | | | | | | | | | | The result of 'echo -n' is implementation-defined. See also: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/echo.html
| * shutdown: Don't use exprSören Tempel2015-03-311-3/+3
| |
| * shutdown: add abort helper functionSören Tempel2015-03-311-6/+10
| |
| * shutdown: simplify redirection to /dev/stderrSören Tempel2015-03-311-3/+3
| |
| * shutdown.sh -> shutdownSören Tempel2015-03-312-1/+1
| |
| * Makefile: Add .PHONYSören Tempel2015-03-311-0/+2
| |
| * Makefile: Remove suspend from cleanSören Tempel2015-03-311-1/+1
| |