Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: arch/parisc64/, /, arch/x86/, arch/alpha/, arch/arm/, arch/sparc64/, arch/sparc/, ...
Date: Mon, 06 Feb 2012 10:00:25
Message-Id: 5eeadc8d26da940a20adfe1c6fa9c325fc08b293.robbat2@gentoo
1 commit: 5eeadc8d26da940a20adfe1c6fa9c325fc08b293
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 6 10:00:09 2012 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 6 10:00:09 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/genkernel.git;a=commit;h=5eeadc8d
7
8 Ensure default for new initramfs compression is used.
9
10 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
11
12 ---
13 ChangeLog | 7 +++++++
14 arch/alpha/config.sh | 1 +
15 arch/arm/config.sh | 1 +
16 arch/ia64/config.sh | 1 +
17 arch/mips/config.sh | 3 ++-
18 arch/parisc/config.sh | 1 +
19 arch/parisc64/config.sh | 1 +
20 arch/ppc/config.sh | 1 +
21 arch/ppc64/config.sh | 1 +
22 arch/sparc/config.sh | 1 +
23 arch/sparc64/config.sh | 1 +
24 arch/um/config.sh | 1 +
25 arch/x86/config.sh | 1 +
26 arch/x86_64/config.sh | 1 +
27 14 files changed, 21 insertions(+), 1 deletions(-)
28
29 diff --git a/ChangeLog b/ChangeLog
30 index c0a09cb..9f52685 100644
31 --- a/ChangeLog
32 +++ b/ChangeLog
33 @@ -5,6 +5,13 @@
34 # Distributed under the GPL v2
35 # $Id$
36
37 + 06 Feb 2012; Robin H. Johnson <robbat2@g.o> arch/alpha/config.sh,
38 + arch/arm/config.sh, arch/ia64/config.sh, arch/mips/config.sh,
39 + arch/parisc/config.sh, arch/parisc64/config.sh, arch/ppc/config.sh,
40 + arch/ppc64/config.sh, arch/sparc/config.sh, arch/sparc64/config.sh,
41 + arch/um/config.sh, arch/x86/config.sh, arch/x86_64/config.sh:
42 + Ensure default for new initramfs compression is used.
43 +
44 06 Feb 2012; Robin H. Johnson <robbat2@g.o> gen_initramfs.sh:
45 Bugfixes in new code branches that I didn't test fully.
46
47
48 diff --git a/arch/alpha/config.sh b/arch/alpha/config.sh
49 index 2692f23..68805fd 100755
50 --- a/arch/alpha/config.sh
51 +++ b/arch/alpha/config.sh
52 @@ -11,6 +11,7 @@ KERNEL_BINARY="arch/alpha/boot/vmlinux.gz"
53 # command line.
54 #
55 DEFAULT_COMPRESS_INITRD=yes
56 +DEFAULT_COMPRESS_INITRD_TYPE=best
57
58 DEFAULT_MAKEOPTS="-j2"
59
60
61 diff --git a/arch/arm/config.sh b/arch/arm/config.sh
62 index 7ce427e..240a027 100755
63 --- a/arch/arm/config.sh
64 +++ b/arch/arm/config.sh
65 @@ -11,6 +11,7 @@ KERNEL_BINARY="arch/arm/boot/zImage"
66 # command line.
67 #
68 DEFAULT_COMPRESS_INITRD=yes
69 +DEFAULT_COMPRESS_INITRD_TYPE=best
70
71 DEFAULT_MAKEOPTS="-j2"
72
73
74 diff --git a/arch/ia64/config.sh b/arch/ia64/config.sh
75 index 9b61bce..3e9fd84 100755
76 --- a/arch/ia64/config.sh
77 +++ b/arch/ia64/config.sh
78 @@ -11,6 +11,7 @@ KERNEL_BINARY="vmlinux.gz"
79 # command line.
80 #
81 DEFAULT_COMPRESS_INITRD=yes
82 +DEFAULT_COMPRESS_INITRD_TYPE=best
83
84 DEFAULT_MAKEOPTS="-j2"
85
86
87 diff --git a/arch/mips/config.sh b/arch/mips/config.sh
88 index 939fb96..49b4050 100755
89 --- a/arch/mips/config.sh
90 +++ b/arch/mips/config.sh
91 @@ -21,7 +21,8 @@ CMD_INSTALL=0
92 # Arch-specific defaults that can be overridden in the config file or on the
93 # command line.
94 #
95 -DEFAULT_COMPRESS_INITRD="yes"
96 +DEFAULT_COMPRESS_INITRD=yes
97 +DEFAULT_COMPRESS_INITRD_TYPE=best
98 DEFAULT_KERNEL_MAKE=make
99 DEFAULT_UTILS_MAKE=make
100 DEFAULT_UTILS_CC=gcc
101
102 diff --git a/arch/parisc/config.sh b/arch/parisc/config.sh
103 index c31b316..e74e1a3 100755
104 --- a/arch/parisc/config.sh
105 +++ b/arch/parisc/config.sh
106 @@ -11,6 +11,7 @@ KERNEL_BINARY="vmlinux"
107 # command line.
108 #
109 DEFAULT_COMPRESS_INITRD=yes
110 +DEFAULT_COMPRESS_INITRD_TYPE=best
111
112 DEFAULT_MAKEOPTS="-j2"
113
114
115 diff --git a/arch/parisc64/config.sh b/arch/parisc64/config.sh
116 index c31b316..e74e1a3 100755
117 --- a/arch/parisc64/config.sh
118 +++ b/arch/parisc64/config.sh
119 @@ -11,6 +11,7 @@ KERNEL_BINARY="vmlinux"
120 # command line.
121 #
122 DEFAULT_COMPRESS_INITRD=yes
123 +DEFAULT_COMPRESS_INITRD_TYPE=best
124
125 DEFAULT_MAKEOPTS="-j2"
126
127
128 diff --git a/arch/ppc/config.sh b/arch/ppc/config.sh
129 index e661c5a..c40ba0f 100755
130 --- a/arch/ppc/config.sh
131 +++ b/arch/ppc/config.sh
132 @@ -10,6 +10,7 @@ KERNEL_BINARY="vmlinux"
133 # command line.
134 #
135 DEFAULT_COMPRESS_INITRD=yes
136 +DEFAULT_COMPRESS_INITRD_TYPE=best
137
138 DEFAULT_MAKEOPTS="-j2"
139
140
141 diff --git a/arch/ppc64/config.sh b/arch/ppc64/config.sh
142 index e661c5a..c40ba0f 100755
143 --- a/arch/ppc64/config.sh
144 +++ b/arch/ppc64/config.sh
145 @@ -10,6 +10,7 @@ KERNEL_BINARY="vmlinux"
146 # command line.
147 #
148 DEFAULT_COMPRESS_INITRD=yes
149 +DEFAULT_COMPRESS_INITRD_TYPE=best
150
151 DEFAULT_MAKEOPTS="-j2"
152
153
154 diff --git a/arch/sparc/config.sh b/arch/sparc/config.sh
155 index 3d62347..fc87def 100755
156 --- a/arch/sparc/config.sh
157 +++ b/arch/sparc/config.sh
158 @@ -13,6 +13,7 @@ USECOLOR="no"
159 # command line.
160 #
161 DEFAULT_COMPRESS_INITRD=yes
162 +DEFAULT_COMPRESS_INITRD_TYPE=best
163
164 DEFAULT_MAKEOPTS="-j1"
165
166
167 diff --git a/arch/sparc64/config.sh b/arch/sparc64/config.sh
168 index 563ebd9..618a0ab 100755
169 --- a/arch/sparc64/config.sh
170 +++ b/arch/sparc64/config.sh
171 @@ -13,6 +13,7 @@ USECOLOR="no"
172 # command line.
173 #
174 DEFAULT_COMPRESS_INITRD=yes
175 +DEFAULT_COMPRESS_INITRD_TYPE=best
176
177 DEFAULT_MAKEOPTS="-j2"
178
179
180 diff --git a/arch/um/config.sh b/arch/um/config.sh
181 index 7955a85..2abe935 100755
182 --- a/arch/um/config.sh
183 +++ b/arch/um/config.sh
184 @@ -13,6 +13,7 @@ ARCH_HAVENOPREPARE=yes
185 # command line.
186 #
187 DEFAULT_COMPRESS_INITRD=yes
188 +DEFAULT_COMPRESS_INITRD_TYPE=best
189
190 DEFAULT_MAKEOPTS="-j2"
191
192
193 diff --git a/arch/x86/config.sh b/arch/x86/config.sh
194 index 6f14cef..d34afb2 100755
195 --- a/arch/x86/config.sh
196 +++ b/arch/x86/config.sh
197 @@ -11,6 +11,7 @@ KERNEL_BINARY="arch/i386/boot/bzImage"
198 # command line.
199 #
200 DEFAULT_COMPRESS_INITRD=yes
201 +DEFAULT_COMPRESS_INITRD_TYPE=best
202
203 DEFAULT_MAKEOPTS="-j2"
204
205
206 diff --git a/arch/x86_64/config.sh b/arch/x86_64/config.sh
207 index 0a903e1..78b9167 100755
208 --- a/arch/x86_64/config.sh
209 +++ b/arch/x86_64/config.sh
210 @@ -11,6 +11,7 @@ KERNEL_BINARY="arch/x86_64/boot/bzImage"
211 # command line.
212 #
213 DEFAULT_COMPRESS_INITRD=yes
214 +DEFAULT_COMPRESS_INITRD_TYPE=best
215
216 DEFAULT_MAKEOPTS="-j2"