Magellan Linux

Annotation of /trunk/systemd/patches/systemd-28-magellan.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1336 - (hide annotations) (download)
Wed Jun 1 20:25:07 2011 UTC (12 years, 11 months ago) by niro
File size: 8510 byte(s)
-fixed patch
1 niro 1335 diff -Naur systemd-28/configure.ac systemd-28-magellan/configure.ac
2     --- systemd-28/configure.ac 2011-05-26 19:18:54.000000000 +0200
3     +++ systemd-28-magellan/configure.ac 2011-06-01 21:30:26.000000000 +0200
4     @@ -280,7 +280,7 @@
5    
6     AC_PATH_PROG([M4], [m4])
7    
8     -AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the distribution to target: One of fedora, suse, debian, ubuntu, arch, gentoo, slackware, altlinux or other]))
9     +AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the distribution to target: One of fedora, suse, debian, ubuntu, arch, gentoo, magellan, slackware, altlinux or other]))
10     if test "z$with_distro" = "z"; then
11     if test "$cross_compiling" = yes; then
12     AC_MSG_WARN([Target distribution cannot be reliably detected when cross-compiling. You should specify it with --with-distro (see $0 --help for recognized distros)])
13     @@ -290,6 +290,7 @@
14     test -f "/etc/debian_version" && with_distro="debian"
15     test -f "/etc/arch-release" && with_distro="arch"
16     test -f "/etc/gentoo-release" && with_distro="gentoo"
17     + test -f "/etc/mageversion" && with_distro="magellan"
18     test -f "/etc/slackware-version" && with_distro="slackware"
19     test -f "/etc/frugalware-release" && with_distro="frugalware"
20     test -f "/etc/altlinux-release" && with_distro="altlinux"
21     @@ -348,6 +349,12 @@
22     AC_DEFINE(TARGET_GENTOO, [], [Target is Gentoo])
23     M4_DISTRO_FLAG=-DTARGET_GENTOO=1
24     ;;
25     + magellan)
26     + SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
27     + SYSTEM_SYSVRCND_PATH=/etc/rc.d
28     + AC_DEFINE(TARGET_MAGELLAN, [], [Target is Magellan])
29     + M4_DISTRO_FLAG=-DTARGET_MAGELLAN=1
30     + ;;
31     slackware)
32     SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
33     AC_DEFINE(TARGET_SLACKWARE, [], [Target is Slackware])
34     @@ -427,6 +434,7 @@
35     AM_CONDITIONAL(TARGET_DEBIAN_OR_UBUNTU, test x"$with_distro" = xdebian -o x"$with_distro" = xubuntu)
36     AM_CONDITIONAL(TARGET_ARCH, test x"$with_distro" = xarch)
37     AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
38     +AM_CONDITIONAL(TARGET_MAGELLAN, test x"$with_distro" = xmagellan)
39     AM_CONDITIONAL(TARGET_SLACKWARE, test x"$with_distro" = xslackware)
40     AM_CONDITIONAL(TARGET_FRUGALWARE, test x"$with_distro" = xfrugalware)
41     AM_CONDITIONAL(TARGET_ALTLINUX, test x"$with_distro" = xaltlinux)
42     diff -Naur systemd-28/Makefile.am systemd-28-magellan/Makefile.am
43     --- systemd-28/Makefile.am 2011-05-25 18:40:37.000000000 +0200
44 niro 1336 +++ systemd-28-magellan/Makefile.am 2011-06-01 22:24:44.000000000 +0200
45 niro 1335 @@ -72,6 +72,12 @@
46     -DKBD_SETFONT=\"/usr/bin/setfont\" \
47     -DDEFAULT_FONT=\"LatArCyrHeb-16\"
48     else
49     +if TARGET_MAGELLAN
50     +AM_CPPFLAGS += \
51     + -DKBD_LOADKEYS=\"/usr/bin/loadkeys\" \
52     + -DKBD_SETFONT=\"/usr/bin/setfont\" \
53     + -DDEFAULT_FONT=\"LatArCyrHeb-16\"
54     +else
55     if TARGET_ARCH
56     AM_CPPFLAGS += \
57     -DKBD_LOADKEYS=\"/usr/bin/loadkeys\" \
58 niro 1336 @@ -112,6 +118,7 @@
59     endif
60     endif
61     endif
62     +endif
63    
64     rootbin_PROGRAMS = \
65     systemd \
66 niro 1335 diff -Naur systemd-28/src/hostname-setup.c systemd-28-magellan/src/hostname-setup.c
67     --- systemd-28/src/hostname-setup.c 2011-04-20 15:56:33.000000000 +0200
68     +++ systemd-28-magellan/src/hostname-setup.c 2011-06-01 21:36:40.000000000 +0200
69     @@ -34,6 +34,8 @@
70     #define FILENAME "/etc/sysconfig/network"
71     #elif defined(TARGET_SUSE) || defined(TARGET_SLACKWARE) || defined(TARGET_FRUGALWARE)
72     #define FILENAME "/etc/HOSTNAME"
73     +#elif defined(TARGET_MAGELLAN)
74     +#define FILENAME "/etc/hostname"
75     #elif defined(TARGET_ARCH)
76     #define FILENAME "/etc/rc.conf"
77     #elif defined(TARGET_GENTOO)
78     @@ -114,7 +116,7 @@
79     fclose(f);
80     return r;
81    
82     -#elif defined(TARGET_SUSE) || defined(TARGET_SLACKWARE) || defined(TARGET_FRUGALWARE)
83     +#elif defined(TARGET_SUSE) || defined(TARGET_SLACKWARE) || defined(TARGET_FRUGALWARE) || defined(TARGET_MAGELLAN)
84     return read_and_strip_hostname(FILENAME, hn);
85     #else
86     return -ENOENT;
87     diff -Naur systemd-28/src/locale-setup.c systemd-28-magellan/src/locale-setup.c
88     --- systemd-28/src/locale-setup.c 2011-05-09 23:50:16.000000000 +0200
89     +++ systemd-28-magellan/src/locale-setup.c 2011-06-01 21:48:17.000000000 +0200
90     @@ -194,6 +194,35 @@
91     if (r != -ENOENT)
92     log_warning("Failed to read /etc/profile.env: %s", strerror(-r));
93     }
94     +
95     +#elif defined(TARGET_Magellan)
96     + /* Magellan's rc-init expects locale variables in /etc/env.d/
97     + * These files are later compiled by env-rebuild into shell
98     + * export commands at /etc/profile.env, with variables being
99     + * exported by rc-init's runscript (so /etc/rc.d/init.d/)
100     + */
101     + if (r <= 0 &&
102     + (r = parse_env_file("/etc/profile.env", NEWLINE,
103     + "export LANG", &variables[VARIABLE_LANG],
104     + "export LC_ALL", &variables[VARIABLE_LC_ALL],
105     + "export LC_CTYPE", &variables[VARIABLE_LC_CTYPE],
106     + "export LC_NUMERIC", &variables[VARIABLE_LC_NUMERIC],
107     + "export LC_TIME", &variables[VARIABLE_LC_TIME],
108     + "export LC_COLLATE", &variables[VARIABLE_LC_COLLATE],
109     + "export LC_MONETARY", &variables[VARIABLE_LC_MONETARY],
110     + "export LC_MESSAGES", &variables[VARIABLE_LC_MESSAGES],
111     + "export LC_PAPER", &variables[VARIABLE_LC_PAPER],
112     + "export LC_NAME", &variables[VARIABLE_LC_NAME],
113     + "export LC_ADDRESS", &variables[VARIABLE_LC_ADDRESS],
114     + "export LC_TELEPHONE", &variables[VARIABLE_LC_TELEPHONE],
115     + "export LC_MEASUREMENT", &variables[VARIABLE_LC_MEASUREMENT],
116     + "export LC_IDENTIFICATION", &variables[VARIABLE_LC_IDENTIFICATION],
117     + NULL)) < 0) {
118     +
119     + if (r != -ENOENT)
120     + log_warning("Failed to read /etc/profile.env: %s", strerror(-r));
121     + }
122     +
123     #elif defined(TARGET_MANDRIVA)
124     if (r <= 0 &&
125     (r = parse_env_file("/etc/sysconfig/i18n", NEWLINE,
126     diff -Naur systemd-28/src/util.c systemd-28-magellan/src/util.c
127     --- systemd-28/src/util.c 2011-05-25 17:57:49.000000000 +0200
128     +++ systemd-28-magellan/src/util.c 2011-06-01 21:40:03.000000000 +0200
129     @@ -3356,6 +3356,19 @@
130     if (!ansi_color)
131     const_color = "1;34"; /* Light Blue for Gentoo */
132    
133     +#elif defined(TARGET_MAGELLAN)
134     +
135     + if (!pretty_name) {
136     + if ((r = read_one_line_file("/etc/mageversion", &pretty_name)) < 0) {
137     +
138     + if (r != -ENOENT)
139     + log_warning("Failed to read /etc/mageversion: %s", strerror(-r));
140     + }
141     + }
142     +
143     + if (!ansi_color)
144     + const_color = "1;34"; /* Light Blue for Magellan */
145     +
146     #elif defined(TARGET_ALTLINUX)
147    
148     if (!pretty_name) {
149     diff -Naur systemd-28/src/vconsole-setup.c systemd-28-magellan/src/vconsole-setup.c
150     --- systemd-28/src/vconsole-setup.c 2011-05-09 22:30:27.000000000 +0200
151     +++ systemd-28-magellan/src/vconsole-setup.c 2011-06-01 21:44:24.000000000 +0200
152     @@ -372,6 +372,20 @@
153     log_warning("Failed to read /etc/conf.d/keymaps: %s", strerror(-r));
154     }
155    
156     +#elif defined(TARGET_MAGELLAN)
157     + if ((r = parse_env_file("/etc/conf.d/keymap", NEWLINE,
158     + "KEYMAP", &vc_keymap,
159     + NULL)) < 0) {
160     + if (r != -ENOENT)
161     + log_warning("Failed to read /etc/conf.d/keymap: %s", strerror(-r));
162     + }
163     + if ((r = parse_env_file("/etc/conf.d/consolefont", NEWLINE,
164     + "CONSOLEFONT", &vc_font,
165     + NULL)) < 0) {
166     + if (r != -ENOENT)
167     + log_warning("Failed to read /etc/conf.d/consolefont: %s", strerror(-r));
168     + }
169     +
170     #elif defined(TARGET_MANDRIVA)
171    
172     if ((r = parse_env_file("/etc/sysconfig/i18n", NEWLINE,