2015-02-16 14:04:36 +01:00
|
|
|
From: Frederic Crozat <fcrozat@suse.com>
|
|
|
|
Date: Fri, 12 Apr 2013 16:56:26 +0200
|
|
|
|
Subject: Revert "service: drop support for SysV scripts for the early boot"
|
|
|
|
|
|
|
|
This reverts commit 3cdebc217c42c8529086f2965319b6a48eaaeabe.
|
|
|
|
|
|
|
|
[Implementation note: currently, the unit is generated, but not
|
|
|
|
activated even if symlinks exist in boot.d. Hmmm... -jengelh@inai.de]
|
|
|
|
---
|
2015-06-23 14:56:50 +02:00
|
|
|
src/sysv-generator/sysv-generator.c | 21 +++++++++++++++------
|
|
|
|
1 file changed, 15 insertions(+), 6 deletions(-)
|
2015-02-16 14:04:36 +01:00
|
|
|
|
2015-07-16 12:04:35 +02:00
|
|
|
--- systemd-222.orig/src/sysv-generator/sysv-generator.c
|
|
|
|
+++ systemd-222/src/sysv-generator/sysv-generator.c
|
2015-06-23 14:56:50 +02:00
|
|
|
@@ -39,7 +39,8 @@
|
2015-02-16 14:04:36 +01:00
|
|
|
|
|
|
|
typedef enum RunlevelType {
|
|
|
|
RUNLEVEL_UP,
|
|
|
|
- RUNLEVEL_DOWN
|
|
|
|
+ RUNLEVEL_DOWN,
|
|
|
|
+ RUNLEVEL_SYSINIT,
|
|
|
|
} RunlevelType;
|
|
|
|
|
|
|
|
static const struct {
|
2015-06-23 14:56:50 +02:00
|
|
|
@@ -47,6 +48,9 @@ static const struct {
|
2015-02-16 14:04:36 +01:00
|
|
|
const char *target;
|
|
|
|
const RunlevelType type;
|
|
|
|
} rcnd_table[] = {
|
|
|
|
+ /* SUSE style boot.d */
|
|
|
|
+ { "boot.d", SPECIAL_SYSINIT_TARGET, RUNLEVEL_SYSINIT },
|
|
|
|
+
|
|
|
|
/* Standard SysV runlevels for start-up */
|
2015-06-23 14:56:50 +02:00
|
|
|
{ "rc1.d", SPECIAL_RESCUE_TARGET, RUNLEVEL_UP },
|
|
|
|
{ "rc2.d", SPECIAL_MULTI_USER_TARGET, RUNLEVEL_UP },
|
|
|
|
@@ -62,10 +66,10 @@ static const struct {
|
2015-02-16 14:04:36 +01:00
|
|
|
directories in this order, and we want to make sure that
|
|
|
|
sysv_start_priority is known when we first load the
|
|
|
|
unit. And that value we only know from S links. Hence
|
|
|
|
- UP must be read before DOWN */
|
|
|
|
+ UP/SYSINIT must be read before DOWN */
|
|
|
|
};
|
|
|
|
|
2015-02-18 13:10:33 +01:00
|
|
|
-const char *arg_dest = "/tmp";
|
|
|
|
+static const char *arg_dest = "/tmp";
|
|
|
|
|
2015-06-23 14:56:50 +02:00
|
|
|
typedef struct SysvStub {
|
|
|
|
char *name;
|
2015-07-16 12:04:35 +02:00
|
|
|
@@ -243,6 +247,10 @@ static char *sysv_translate_name(const c
|
|
|
|
_cleanup_free_ char *c = NULL;
|
|
|
|
char *res;
|
2015-02-16 14:04:36 +01:00
|
|
|
|
|
|
|
+ if (startswith(name, "boot."))
|
|
|
|
+ /* Drop SuSE-style boot. prefix */
|
|
|
|
+ name += 5;
|
|
|
|
+
|
2015-07-16 12:04:35 +02:00
|
|
|
c = strdup(name);
|
|
|
|
if (!c)
|
2015-02-16 14:04:36 +01:00
|
|
|
return NULL;
|
2015-07-16 12:04:35 +02:00
|
|
|
@@ -859,10 +867,10 @@ static int set_dependencies_from_rcnd(co
|
2015-02-16 14:04:36 +01:00
|
|
|
|
|
|
|
if (de->d_name[0] == 'S') {
|
|
|
|
|
|
|
|
- if (rcnd_table[i].type == RUNLEVEL_UP) {
|
|
|
|
+ if (rcnd_table[i].type == RUNLEVEL_UP ||
|
|
|
|
+ rcnd_table[i].type == RUNLEVEL_SYSINIT)
|
|
|
|
service->sysv_start_priority =
|
|
|
|
MAX(a*10 + b, service->sysv_start_priority);
|
|
|
|
- }
|
|
|
|
|
|
|
|
r = set_ensure_allocated(&runlevel_services[i], NULL);
|
|
|
|
if (r < 0)
|
2015-07-16 12:04:35 +02:00
|
|
|
@@ -873,7 +881,8 @@ static int set_dependencies_from_rcnd(co
|
2015-02-16 14:04:36 +01:00
|
|
|
goto finish;
|
|
|
|
|
|
|
|
} else if (de->d_name[0] == 'K' &&
|
|
|
|
- (rcnd_table[i].type == RUNLEVEL_DOWN)) {
|
|
|
|
+ (rcnd_table[i].type == RUNLEVEL_DOWN ||
|
|
|
|
+ rcnd_table[i].type == RUNLEVEL_SYSINIT)) {
|
|
|
|
|
|
|
|
r = set_ensure_allocated(&shutdown_services, NULL);
|
|
|
|
if (r < 0)
|