forked from robbat2/genkernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.old
4782 lines (3730 loc) · 193 KB
/
ChangeLog.old
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# After 2012/11/01, the changelog is now auto-generated.
# This file is for historical purposes only.
# ChangeLog for genkernel
# Copyright:
# - 2003-2008 Gentoo Foundation
# - 2008-2012 Various authors (see AUTHORS)
# Distributed under the GPL v2
# $Id: 7902101f65eb47fdc5ed4b116ee234aa23686e1b $
19 Oct 2012; Robin H. Johnson <[email protected]> gen_bootloader.sh:
Missing then keyword.
15 Oct 2012; Peter Hjalmarsson <[email protected]> defaults/linuxrc:
Support using init= on the command line.
15 Oct 2012; Peter Hjalmarsson <[email protected]> README,
doc/genkernel.8.txt, gen_bootloader.sh, genkernel:
Update the documentation to reflect current status re real_root/init.
15 Oct 2012; Robin H. Johnson <[email protected]> genkernel:
Bump to 3.4.44.2 with depmod corner cases by xake.
15 Oct 2012; Peter Hjalmarsson <[email protected]> gen_compile.sh:
Fix calling of depmod.
15 Oct 2012; Robin H. Johnson <[email protected]> genkernel:
Bump for 3.4.44.1 with bugfix-only.
15 Oct 2012; Robin H. Johnson <[email protected]> gen_compile.sh,
gen_package.sh:
Fix corner cases on OUTPUTDIR.
14 Oct 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.44
14 Oct 2012; Robin H. Johnson <[email protected]> gen_cmdline.sh,
gen_configkernel.sh, gen_determineargs.sh:
Bug #432956: Easy to include VirtIO support in kernel.
13 Oct 2012; Robin H. Johnson <[email protected]> arch/alpha/modules_load,
arch/arm/modules_load, arch/ia64/modules_load, arch/mips/modules_load,
arch/parisc/modules_load, arch/parisc64/modules_load, arch/ppc/modules_load,
arch/ppc64/modules_load, arch/sparc/modules_load, arch/sparc64/modules_load,
arch/um/modules_load, arch/x86/modules_load, arch/x86_64/modules_load,
defaults/modules_load:
Clean up module drift over the years. Just MODULES_CRYPTO left.
13 Oct 2012; Robin H. Johnson <[email protected]> doc/genkernel.8.txt:
Document resume parameters.
13 Oct 2012; Robin H. Johnson <[email protected]> arch/alpha/modules_load,
arch/arm/modules_load, arch/ia64/modules_load, arch/mips/modules_load,
arch/parisc/modules_load, arch/parisc64/modules_load, arch/ppc/modules_load,
arch/ppc64/modules_load, arch/sparc/modules_load, arch/sparc64/modules_load,
arch/um/modules_load, arch/x86/modules_load, arch/x86_64/modules_load,
defaults/initrd.scripts, defaults/linuxrc, defaults/modules_load,
gen_configkernel.sh, gen_initramfs.sh:
Bug #286187: Complete multipath support.
13 Oct 2012; Robin H. Johnson <[email protected]> defaults/initrd.defaults,
defaults/initrd.scripts, defaults/linuxrc, doc/genkernel.8.txt:
Bug #351873: More livecd control, and initramfs livecd argument
documentation.
13 Oct 2012; Robin H. Johnson <[email protected]> arch/alpha/kernel-config,
arch/ppc/kernel-config, arch/x86/kernel-config, arch/x86_64/kernel-config,
defaults/kernel-config:
Bug #336170: amd74xx was long-replaced by pata_amd. The old driver is
problematic, as even with the pata_amd module loaded, it will not release the
device. Disable the old driver on remaining platforms, add pata_amd where
missing & needed (not alpha).
13 Oct 2012; Robin H. Johnson <[email protected]> gen_initramfs.sh:
Bug #414581: ensure built-in initramfs compress config options are set to
avoid silentoldconfig bailing out.
13 Oct 2012; Łukasz Stelmach <[email protected]> gen_cmdline.sh,
gen_compile.sh, gen_configkernel.sh, gen_determineargs.sh, gen_funcs.sh,
genkernel:
Bug #435210 support external kernel output location, to allow pristine
source.
13 Oct 2012; Robin H. Johnson <[email protected]> gen_compile.sh:
Bug #397947: Run depmod on new modules to avoid need to run at every boot on
unionfs systems, or systemd that never runs it.
13 Oct 2012; Robin H. Johnson <[email protected]> gen_initramfs.sh:
Put the version of genkernel used in a build into /etc/build_id.
13 Oct 2012; Robin H. Johnson <[email protected]> defaults/linuxrc:
Extra creation of /run in the LiveCD scope, before any union/aufs mount.
03 Oct 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.43
03 Oct 2012; Sebastian Pipping <[email protected]> gen_initramfs.sh:
Use actual kernel config for check of available compression methods (bug
#436820)
03 Oct 2012; Dustin Frisch <[email protected]> defaults/linuxrc:
With boot parameter real_init=/foo look for ${NEW_ROOT}/foo, not
${NEW_ROOT}/sbin/init (bug #437080)
23 Sep 2012; Sebastian Pipping <[email protected]> gen_initramfs.sh:
Append e2fsck and mke2fs to initramfs. Original patch by Rick Farina
10 Sep 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.42
10 Sep 2012; Sebastian Pipping <[email protected]>
+patches/busybox/1.20.2/busybox-1.20.2-glibc-sys-resource.patch:
Add busybox 1.20.2 patch: busybox-1.20.2-glibc-sys-resource.patch
10 Sep 2012; Sebastian Pipping <[email protected]>
+patches/busybox/1.20.2/1.18.1-openvt.diff,
+patches/busybox/1.20.2/busybox-1.7.4-signal-hack.patch,
+patches/busybox/1.20.2/busybox-1.20.1-mdstart.patch:
Copy busybox patches from 1.20.1 to 1.20.2
30 Aug 2012; Fabio Erculiani <[email protected]> defaults/linuxrc:
mount /mnt/cdrom inside target chroot even when aufs/unionfs is disabled
14 Aug 2012; Richard Yao <[email protected]> genkernel:
Bump version to 3.4.41
12 Aug 2012; Sebastian Pipping <[email protected]> +defaults/software.sh,
genkernel.conf:
Move software version defaults for defaults/software.sh to ease the
etc-update game
12 Aug 2012; Sebastian Pipping <[email protected]> genkernel:
Fix parsing of --config=... command line option
27 Jul 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts,
genkernel:
Bump version to 3.4.40
24 Jul 2012; Robin H. Johnson <[email protected]> defaults/initrd.scripts:
Flip awk return values.
24 Jul 2012; Robin H. Johnson <[email protected]> defaults/initrd.scripts:
Minor thinko in devpts check.
24 Jul 2012; Robin H. Johnson <[email protected]> defaults/initrd.scripts:
Prior commit to only mount devtmpfs and devpts if they were not already
mounted made assumptions about the device names they were mounted as. Check
the filesystem column of /proc/mounts instead.
21 Jul 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.39
17 Jul 2012; Robin H. Johnson <[email protected]> arch/x86_64/kernel-config:
Bug #399703: amd64 default kernel config did not have EFI support.
15 July 2012; Robin H. Johnson <[email protected]> doc/genkernel.8.txt,
Document the isoboot option, as designed for GRUB2 usage 3 years ago.
09 Jul 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.38
09 Jul 2012; Sebastian Pipping <[email protected]> gen_compile.sh:
Fix linking of unionfs-fuse 0.24
09 Jul 2012; Sebastian Pipping <[email protected]>
patches/fuse/2.8.6/fuse-2.8.6-glibc-2.14.patch:
Allow compilation of FUSE 2.8.6 with glibc 2.14 (bug #425080)
09 Jul 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts:
Restore previous handling of real_root due to report of regressions (bug
#419965)
08 Jul 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.37
08 Jul 2012; Sebastian Pipping <[email protected]> gen_initramfs.sh,
genkernel:
Always report used kernel config file
08 Jul 2012; Sebastian Pipping <[email protected]> gen_configkernel.sh,
gen_initramfs.sh:
Catch case with no initramfs compression supported by kernel (bug #423847)
08 Jul 2012; Sebastian Pipping <[email protected]> gen_configkernel.sh,
gen_initramfs.sh:
Fix detection of initramfs compression with bzip2 as best candidate
08 Jul 2012; Sebastian Pipping <[email protected]> arch/x86/modules_load,
arch/x86_64/modules_load, defaults/modules_load:
Add xts to MODULES_CRYPTO (bug #425028)
01 Jul 2012; Sebastian Pipping <[email protected]> gen_configkernel.sh,
gen_package.sh:
Support --kernel-config=/proc/config.gz (bug #421027)
08 Jul 2012; Kenny Cheng <[email protected]> defaults/linuxrc:
Add /run to support openrc >=0.10 (bug #425180)
11 Jun 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.36
11 Jun 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts:
Respect real_root for plain dm-crypt without LVM (bug #419965)
10 Jun 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.35
10 Jun 2012; Sebastian Pipping <[email protected]>
+patches/busybox/1.20.1/1.18.1-openvt.diff,
+patches/busybox/1.20.1/busybox-1.7.4-signal-hack.patch,
+patches/busybox/1.20.1/busybox-1.20.1-mdstart.patch:
Support busybox 1.20.1 (bug #419511)
04 Jun 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.34
02 Jun 2012; Sebastian Pipping <[email protected]> defaults/linuxrc:
Support bind mounts from /etc/initramfs.mounts (bug #418463)
02 Jun 2012; Sebastian Pipping <[email protected]> arch/x86/modules_load,
arch/x86_64/modules_load, defaults/modules_load:
Make sure that cbc.ko and aes*.ko needed for cbc-essiv:sha256 (=default) disk
encryption are included with the initramfs (bug #416973)
28 May 2012; Sebastian Pipping <[email protected]> gen_funcs.sh:
Fix an e2fsprogs compilation leftover (bug #417095), reported by Juergen Rose
17 May 2012; Sebastian Pipping <[email protected]> genkernel:
Bump to 3.4.33.1
17 May 2012; Sebastian Pipping <[email protected]> defaults/linuxrc:
Fix call to blkid as "blkid -l -t UUID=foo" (without -o device) does not seem
to work well with blkid of util-linux
17 May 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.33
17 May 2012; Sebastian Pipping <[email protected]>
-patches/e2fsprogs/1.42/e2fsprogs-1.41.12-getpagesize.patch, gen_compile.sh,
gen_initramfs.sh, genkernel, genkernel.conf:
Use blkid from system's util-linux rather than compiling e2fsprogs ourselves
14 May 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.32
14 May 2012; Sebastian Pipping <[email protected]> gen_initramfs.sh:
Stop removing lvm/dmsetup from the initramfs (bug #415697), reported by
I.zaufi, bug introduced in 9f36ecc125bf2c20bd28c0ad513577a858140a77 affects
genkernel >=3.4.30
12 May 2012; Sebastian Pipping <[email protected]> arch/x86/kernel-config,
arch/x86_64/kernel-config, defaults/kernel-config:
Set CONFIG_DEVTMPFS=y on x86, x86_64, default for udev
12 May 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.31
18 Apr 2012; Robin H. Johnson <[email protected]> gen_initramfs.sh:
lddtree call must be outside the for loop.
16 Apr 2012; Robin H. Johnson <[email protected]> gen_initramfs.sh:
Use CC0 instead of public domain for copy_binaries to cover French
jurisdiction concerns.
16 Apr 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.30
16 Apr 2012; Sebastian Pipping <[email protected]> gen_initramfs.sh:
Support a non-static cryptsetup binary (bug #409277)
15 Apr 2012; Robin H. Johnson <[email protected]> gen_initramfs.sh:
Release copy_binaries function as public domain.
15 Apr 2012; Robin H. Johnson <[email protected]> gen_initramfs.sh:
Handle other binary paths for LVM.
09 Apr 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts,
defaults/keymaps/keymapList, defaults/keymaps/sf.map:
Add keymap "sf" from Pentoo
08 Apr 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.29
08 Apr 2012; Mike Auty <[email protected]> gen_bootloader.sh:
Support for Grub 2, adjustements by Tomasz Wasiak
08 Apr 2012; Sebastian Pipping <[email protected]> gen_initramfs.sh,
genkernel.conf:
Add "fastest" to supported initrd compressions
08 Apr 2012; Sebastian Pipping <[email protected]> gen_initramfs.sh:
Support comression "lzop" (not just "lzo") as wrongly advertised by comments
in genkernel.conf before
08 Apr 2012; Sebastian Pipping <[email protected]> gen_initramfs.sh:
Be more helpful when requested compression is not available
08 Apr 2012; Sebastian Pipping <[email protected]> gen_initramfs.sh:
Error out on unknown initrd compression, reported by Peter Gantner (bug
#411197)
08 Apr 2012; Sebastian Pipping <[email protected]> gen_initramfs.sh:
Fix initrd compression "gzip", reported by Peter Gantner (bug #411197)
30 Mar 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.28
29 Mar 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts:
Restore original /dev/tty after GPG (bug #410073), report and initial patch
by Brendan Pike
22 Mar 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.27
22 Mar 2012; Sebastian Pipping <[email protected]> gen_initramfs.sh:
Fail hard on LUKS inclusion error (bug #409277), advise about
sys-fs/cryptsetup[static], drop support for cryptsetup binary from /bin/
22 Mar 2012; Sebastian Pipping <[email protected]> gen_funcs.sh,
gen_initramfs.sh:
Make errors stand out more
22 Mar 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Fix docache (bug #397309)
22 Mar 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.26
16 Mar 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Drop into debug shell when squashfs could not be mounted
16 Mar 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Drop into debug shell when files could not be copied into tmpfs
16 Mar 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Improve handling of missing /etc/fstab
16 Mar 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts:
No longer use parameter "-r" (for regex intervals) that busybox awk does not
support
10 Mar 2012; Robin H. Johnson <[email protected]> genkernel:
Bump version for release.
25 Feb 2012; Sebastian Pipping <[email protected]> arch/x86/modules_load,
arch/x86_64/modules_load, defaults/modules_load:
Make sure the sha256 module makes it into the initramfs (bug #405495).
Reported by Ogelpre.
20 Feb 2012; Robin H. Johnson <[email protected]> defaults/linuxrc:
With the new /usr mounting, if the device path that ends up in /proc/mounts
ends up being different than in /etc/fstab due to symlinks, mount -a will
always exit 32. Avoid by resolving symlinks like util-linux does.
14 Feb 2012; Robin H. Johnson <[email protected]> gen_compile.sh,
gen_initramfs.sh:
dmraid is entirely broken if you try to use the system static
LVM/device-mapper. Instead start always building LVM2 for the initramfs,
using DESTDIR for cleaner install. Dead code paths for old LVM2 build not
removed yet until more users have tested.
12 Feb 2012; Robin H. Johnson <[email protected]> gen_compile.sh:
More UTILS_CROSS_COMPILE prefix on strip calls.
12 Feb 2012; Robin H. Johnson <[email protected]> arch/alpha/modules_load,
arch/arm/modules_load, arch/ia64/modules_load, arch/mips/modules_load,
arch/parisc/modules_load, arch/parisc64/modules_load, arch/ppc/modules_load,
arch/ppc64/modules_load, arch/sparc/modules_load, arch/sparc64/modules_load,
arch/um/modules_load, arch/x86/modules_load, arch/x86_64/modules_load,
defaults/modules_load:
Bug #401583: include more DM and MD modules for other RAID/LVM
configurations.
12 Feb 2012; Robin H. Johnson <[email protected]> gen_compile.sh:
Bug #265005: ensure CROSS_COMPILE is set for cross-compile strip calls to
work.
12 Feb 2012; Robin H. Johnson <[email protected]>
+patches/dmraid/dmraid-1.0.0_rc16-as-needed2.patch,
+patches/dmraid/dmraid-1.0.0_rc16-return-all-sets.patch,
+patches/dmraid/dmraid-1.0.0_rc16-static-build-fixes.patch,
+patches/dmraid/dmraid-1.0.0_rc16-undo-p-rename.patch,
+patches/dmraid/dmraid-1.0.0.rc16-3-staticlink.patch, genkernel.conf:
Bug #398467: Update dmraid. Also add other patches from Portage tree.
12 Feb 2012; Robin H. Johnson <[email protected]> gen_cmdline.sh,
gen_compile.sh, gen_determineargs.sh, gen_funcs.sh, genkernel.conf:
device-mapper "update". It was merged into LVM2-2.02.67 upstream in 2010.
Bug #398467 is wrong for the device-mapper update.
09 Feb 2012; Robin H. Johnson <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Dogfooding of the /usr mount code with the matching OpenRC change to make the
mounts RW revealed some bugs and gotchas in our prior code, now fixed and
verified to work.
06 Feb 2012; Robin H. Johnson <[email protected]> arch/alpha/config.sh,
arch/arm/config.sh, arch/ia64/config.sh, arch/mips/config.sh,
arch/parisc/config.sh, arch/parisc64/config.sh, arch/ppc/config.sh,
arch/ppc64/config.sh, arch/sparc/config.sh, arch/sparc64/config.sh,
arch/um/config.sh, arch/x86/config.sh, arch/x86_64/config.sh:
Ensure default for new initramfs compression is used.
06 Feb 2012; Robin H. Johnson <[email protected]> gen_initramfs.sh:
Bugfixes in new code branches that I didn't test fully.
06 Feb 2012; Robin H. Johnson <[email protected]> doc/genkernel.8.txt,
gen_cmdline.sh:
Update documentation for new initramfs compression.
06 Feb 2012; Robin H. Johnson <[email protected]> defaults/config.sh,
gen_cmdline.sh, gen_determineargs.sh, gen_initramfs.sh, genkernel.conf:
Import customizable compression for initramfs, based on Pentoo development.
06 Feb 2012: Richard Yao <[email protected]> arch/alpha/modules_load,
arch/arm/modules_load, arch/ia64/modules_load, arch/mips/modules_load,
arch/parisc/modules_load, arch/parisc64/modules_load, arch/ppc/modules_load,
arch/ppc64/modules_load, arch/sparc/modules_load, arch/sparc64/modules_load,
arch/um/modules_load, arch/x86/modules_load, arch/x86_64/modules_load,
defaults/busy-config, defaults/initrd.scripts, defaults/linuxrc,
defaults/modules_load, doc/genkernel.8.txt, gen_cmdline.sh,
gen_determineargs.sh, gen_initramfs.sh, genkernel:
This provides ZFS support, to go with the sys-fs/zfs package.
06 Feb 2012; Robin H. Johnson <[email protected]> gen_initramfs.sh:
Refactor copy_binaries and multipath slightly for ease of usage and readability.
06 Feb 2012: Richard Yao <[email protected]> gen_initramfs.sh:
Refactor multipath initramfs generation using copy_binaries.
06 Feb 2012: Richard Yao <[email protected]> gen_initramfs.sh:
copy_binaries utility function for putting binaries and librares into
initramfs (see git commit for full details).
06 Feb 2012; Robin H. Johnson <[email protected]> defaults/initrd.scripts:
Support virtio devices, and provide fallback of all remaining devices.
03 Feb 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts:
Support SD card readers. Patch by Rick Farina
24 Jan 2012; Sebastian Pipping <[email protected]> .gitignore, genkernel:
Bump version to 3.4.24
24 Jan 2012; Sebastian Pipping <[email protected]> arch/alpha/kernel-config,
arch/ia64/kernel-config, arch/ppc/kernel-config, arch/sparc64/kernel-config,
arch/x86/kernel-config:
Unset CONFIG_SYSFS_DEPRECATED for udev (bug #335763)
15 Jan 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.23.1
14 Jan 2012; Sebastian Pipping <[email protected]> defaults/busy-config:
Re-activate mdstart in busybox config
14 Jan 2012; Sebastian Pipping <[email protected]>
+patches/busybox/1.19.3/busybox-1.19.3-mdstart.patch:
Port mdstart patch to busybox 1.19.3
13 Jan 2012; Sebastian Pipping <[email protected]> defaults/busy-config:
Busybox config: Enable verbose usage
13 Jan 2012; Sebastian Pipping <[email protected]> defaults/busy-config:
Update busybox config using "yes '' | make oldconfig"
13 Jan 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.23
13 Jan 2012; Sebastian Pipping <[email protected]>
+patches/busybox/1.19.3/1.18.1-openvt.diff,
+patches/busybox/1.19.3/busybox-1.7.4-signal-hack.patch:
Copy patches from busybox/1.18.1 to busybox/1.19.3
13 Jan 2012; Sebastian Pipping <[email protected]>
+patches/e2fsprogs/1.42/e2fsprogs-1.41.12-getpagesize.patch:
Add a patch for e2fsprogs/1.42 from main tree
13 Jan 2012; Sebastian Pipping <[email protected]>
+patches/lvm/2.02.88/lvm2-2.02.72-no-export-dynamic.patch:
Copy patch from lvm/2.02.74 to lvm/2.02.88
13 Jan 2012; Robin H. Johnson <[email protected]> gen_determineargs.sh:
Prior to commit a141d715, CMD_NOINSTALL had no default set, but most of the
usages were of the form "! isTrue ${CMD_NOINSTALL}", which on an unset value,
came out as false. These were replaced by "isTrue ${CMD_INSTALL}", but my
analysis of the needed default value was wrong, and was set to false instead
of true.
13 Jan 2012; Sebastian Pipping <[email protected]> genkernel.conf:
Replace "# FOO=bar" by "#FOO=bar" in genkernel.conf to (1) distinguish
commented-out options from their explanatory comments and (2) to return
consistenty (bug #398471)
12 Jan 2012; Sebastian Pipping <[email protected]> gen_compile.sh:
Support application of patches before compilation for tools which previously
lacked that support. Special thanks to Tomasz Wasiak (bug #398469)
08 Jan 2012; Sebastian Pipping <[email protected]> arch/alpha/modules_load,
arch/arm/modules_load, arch/ia64/modules_load, arch/mips/modules_load,
arch/parisc/modules_load, arch/parisc64/modules_load, arch/ppc/modules_load,
arch/ppc64/modules_load, arch/sparc/modules_load, arch/sparc64/modules_load,
arch/um/modules_load, arch/x86/modules_load, arch/x86_64/modules_load:
Add mpt2sas to auto-load SCSI modules as requested by Borg Onion
06 Jan 2012; Robin H. Johnson <[email protected]> genkernel:
Bump to 3.4.22 to reflect /usr mount support.
06 Jan 2012; Robin H. Johnson <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Code to mount /usr and other filesystems as needed for new udev and systemd.
06 Jan 2012; Robin H. Johnson <[email protected]> genkernel:
Bump version to 3.4.21.2. Stock configuration of 3.4.21.1 generates
unbootable initramfs!
06 Jan 2012; Robin H. Johnson <[email protected]> gen_determineargs.sh,
genkernel.conf:
Fix some defaults otherwise you get an initramfs without any modules!
06 Jan 2012; Robin H. Johnson <[email protected]> defaults/busy-config:
Awk support in busybox is needed for initramfs setup code (to parse fstab).
06 Jan 2012; Robin H. Johnson <[email protected]> TODO:
Multipath has been done for a while now.
06 Jan 2012; Robin H. Johnson <[email protected]> genkernel.conf:
Add a configuration option for --install, so users can get it as a default.
Defaults to "no", due to catalyst.
06 Jan 2012; Robin H. Johnson <[email protected]> ChangeLog:
Fix up changelog
05 Jan 2012; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.21.1
05 Jan 2012; Sebastian Pipping <[email protected]> defaults/initrd.scripts,
defaults/linuxrc, doc/genkernel.8.txt:
Introduce boot parameter root_trim=(yes|no) for SSDs.
Special thanks:
- Christian Kruse
04 Jan 2012; Sebastian Pipping <[email protected]> arch/um/busy-config,
defaults/busy-config, netboot/busy-config:
Set CONFIG_NFSMOUNT=n in busybox config to fix compilation with glibc 2.14.
Special thanks:
- Borg Onion
04 Jan 2012; Robin H. Johnson <[email protected]> arch/mips/config.sh,
doc/genkernel.8.txt, gen_cmdline.sh, gen_compile.sh, gen_determineargs.sh,
gen_funcs.sh, gen_initramfs.sh, genkernel, genkernel.conf:
Provide real boolean commandline options for options that were previously
only available as booleans in the config, so that they can be enable in
configuration and overridden to disable on the commandline. Remove negation
on options: NOINSTALL, NORAMDISKMODULES, NO_KERNEL_SOURCES.
08 Nov 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.20
31 Oct 2011; Sebastian Pipping <[email protected]> defaults/initrd.scripts:
Fix return value of crypt_filter() which caused bogus LUKS opening errors
(bug #383545)
30 Oct 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.19
25 Oct 2011; Fabio Erculiani <[email protected]> gen_compile.sh:
fix random build failures during e2fsprogs, force -j1
08 Oct 2011; Fabio Erculiani <[email protected]> defaults/initrd.defaults,
defaults/initrd.scripts, defaults/linuxrc:
Do not hardcode /mnt/cdrom path across the whole code, use CDROOT_PATH
instead. At the same time, mount cdrom into /mnt/cdrom instead of
/newroot/mnt/cdrom (which is now just a bind mount), this avoids
losetup to expose unavailable paths inside the live system, breaking
mkfs.btrfs (next upstream version, which does silly things with
/proc/mounts).
07 Oct 2011; Robin H. Johnson <[email protected]>
patches/busybox/1.18.1/1.18.1-mdstart.diff:
Fix patch typo that broke compile.
22 Sep 2011; Robin H. Johnson <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Fix trailing backtick and root-on-LVM.
13 Sep 2011; Fabio Erculiani <[email protected]> gen_compile.sh,
gen_initramfs.sh:
dmraid requires dmsetup to assign UUID to discovered RAID volumes, close bug
#382555
11 Sep 2011; Fabio Erculiani <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
drop parse_opt usage and crufty, deprecated subshelling through
30 Aug 2011; Sebastian Pipping <[email protected]> defaults/initrd.scripts:
Fix quoting issue (bug #380729).
Thanks to:
- Axel Bringenberg
30 Aug 2011; Sebastian Pipping <[email protected]>
+patches/mdadm/3.1.4/mdadm-3.1.4-z-now.patch, gen_compile.sh:
Enable patch application for mdadm, add patch to fix compilation (bug
#381089)
28 Aug 2011; Fabio Erculiani <[email protected]> defaults/initrd.scripts,
defaults/linuxrc, doc/genkernel.8.txt:
Add basic support to AUFS2, requires kernel with aufs module or built-in
16 Aug 2011; Fabio Erculiani <[email protected]> gen_compile.sh:
gen_compile: correct MAKEOPTS usage on utils task
16 Aug 2011; Fabio Erculiani <[email protected]> gen_compile.sh:
gen_compile: always use -j1 with kernel *_install targets, fixes compilation
with make 3.82
06 Aug 2011; Sebastian Pipping <[email protected]> gen_initramfs.sh:
No longer copy /lib/libsysfs*so* for multipath-tools (bug #300841, bug
#377709)
31 Jul 2011; Sebastian Pipping <[email protected]>
-patches/busybox/1.7.4/1.7.4-ash-timeout.diff,
-patches/busybox/1.7.4/1.7.4-mdstart.diff,
-patches/busybox/1.7.4/1.7.4-mount-umount-i-option.diff,
-patches/busybox/1.7.4/1.7.4-openvt.diff,
-patches/busybox/1.7.4/1.7.4-static-error.diff,
-patches/busybox/1.7.4/1.7.4-make-3.82.diff, -patches/busybox/1.7.4/README,
-patches/busybox/1.7.4/busybox-1.7.4-signal-hack.patch:
End support for 4 years old busybox 1.7.4 (bug #377133)
31 Jul 2011; Sebastian Pipping <[email protected]> doc/genkernel.8.txt:
Improve doc on filing bugs
28 Jul 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.18
27 Jul 2011; Sebastian Pipping <[email protected]> defaults/initrd.scripts:
Fix display of seconds waiting (bug #376575)
Thanks to Richard Scott
26 Jul 2011; Robin H. Johnson <[email protected]> gen_arch.sh:
Bug #376467: fix kernel version checks for 3.0 kernel.
23 Jul 2011; Sebastian Pipping <[email protected]> defaults/initrd.scripts,
netboot/linuxrc.x:
Fix permissions of /dev/pts (bug #375947)
20 Jul 2011; Fabio Erculiani <[email protected]> defaults/config.sh,
doc/genkernel.8.txt, gen_cmdline.sh, gen_compile.sh:
Make possible to compile XEN based kernels providing --kernel-target= and
--kernel-binary= switches
03 Jul 2011; Sebastian Pipping <[email protected]> genkernel:
Set version to 3.4.17
03 Jul 2011; Sebastian Pipping <[email protected]> arch/alpha/modules_load,
arch/arm/modules_load, arch/ia64/modules_load, arch/mips/modules_load,
arch/parisc/modules_load, arch/parisc64/modules_load, arch/ppc/modules_load,
arch/ppc64/modules_load, arch/sparc/modules_load, arch/sparc64/modules_load,
arch/um/modules_load, arch/x86/modules_load, arch/x86_64/modules_load,
defaults/initrd.defaults, defaults/initrd.scripts, defaults/linuxrc,
defaults/modules_load, doc/genkernel.8.txt, gen_cmdline.sh,
gen_determineargs.sh, gen_initramfs.sh, genkernel, genkernel.conf,
maintenance/docmatcher.py:
Remove support for sys-fs/evms, as it was removed from Gentoo (bug #372423)
22 Jun 2011; Sebastian Pipping <[email protected]> gen_compile.sh:
Make --arch-override= affect "make menuconfig" (bug #247246)
13 Jun 2011; Sebastian Pipping <[email protected]> arch/x86_64/kernel-config:
Unset CONFIG_EMBEDDED on arch amd64
13 Jun 2011; Sebastian Pipping <[email protected]> arch/x86/kernel-config,
arch/x86_64/kernel-config, defaults/kernel-config:
Apply CONFIG_USB_HID=y to archs amd64/x86/default (bug #270983)
13 Jun 2011; Sebastian Pipping <[email protected]> arch/x86/kernel-config,
arch/x86_64/kernel-config, defaults/kernel-config:
Unset CONFIG_IDE on archs amd64/x86/default (bug #357213)
07 Jun 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.16
07 Jun 2011; Sebastian Pipping <[email protected]> doc/genkernel.8.txt:
Document most undocumented boot parameters (bug #370369)
07 Jun 2011; Sebastian Pipping <[email protected]> doc/genkernel.8.txt:
Docs: Fix mixup of boot parameters real_init= and init_opts=
04 Jun 2011; Sebastian Pipping <[email protected]> genkernel.conf,
maintenance/docmatcher.py:
Document remaining options inside genkiernel.conf (bug #367233)
01 Jun 2011; Sebastian Pipping <[email protected]> defaults/linuxrc,
doc/genkernel.8.txt:
Document option lvmraid= and make it imply dolvm (bug #153502)
31 May 2011; Sebastian Pipping <[email protected]> defaults/linuxrc,
doc/genkernel.8.txt:
Add rootfstype= boot parameter (bug #221245)
Special thanks:
- Marcin Kurek
31 May 2011; Nelson Batalha <[email protected]> defaults/initrd.defaults:
Add Kernel 3.0.0 support (bug #369481)
31 May 2011; Sebastian Pipping <[email protected]> genkernel:
Output warning in warning color
31 May 2011; Sebastian Pipping <[email protected]> doc/genkernel.8.txt,
genkernel:
Document boot parameter domdadm (bug #369415)
12 May 2011; Amadeusz Żołnowski <[email protected]>
defaults/modules_load:
Added hpsa to defaults/modules_load; fixes bug #363369
28 Mar 2011; Sebastian Pipping <[email protected]> genkernel:
Bump to 3.4.15
24 Mar 2011; Peter Hjalmarsson <[email protected]> defaults/linuxrc, initrd.scripts:
Rescue /proc and /sys over into chroot
Apply mount options noexec,nosuid,nodev to /proc and /sys
22 Mar 2011; Fabio Erculiani <[email protected]> gen_compile.sh, patches/iscsi/*:
Fix compilation of iSCSI
23 Mar 2011; Peter Hjalmarsson <[email protected]> doc/genkernel.8.txt,
gen_cmdline.sh, gen_initramfs.sh:
Remove "--slowusb" as it is enabled by default now. Also document "noslowusb"
ramdisk option that skips it.
22 Mar 2011; Peter Hjalmarsson <[email protected]> defaults/initrd.defaults,
defaults/initrd.scripts:
Set DO_slowusb as default, and make setup_slowusb unset it if it cannot find
a usb-storage attached. This makes genkernel ramdisk adhere to "noslowusb",
makes the ramdisk only wait if there is a usb-storage attached and should fix
gentoo bug #359619.
16 Mar 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.14
16 Mar 2011; Fabio Erculiani <[email protected]> **/modules_load:
Add btrfs to MODULES_FS
07 Mar 2011; Peter Hjalmarsson <[email protected]> defaults/initrd.scripts:
Fix typo where the kernelcmd version "dokeymap" was added to MY_HWOPTS
instead of the HWOPTS version "keymap".
Broke setups where only "keymap=<...>" was added to kernelcmd (bug #356167)
24 Feb 2011; Sebastian Pipping <[email protected]> ChangeLog:
Fix handling of mdadm.conf (bug #354809)
Special thanks:
- Peter Hjalmarsson
10 Feb 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.13
09 Feb 2011; Sebastian Pipping <[email protected]> genkernel.conf:
Add SPLASH and SPLASH_THEME to genkernel.conf (bug #268468)
Special thanks:
- PhobosK
08 Feb 2011; Sebastian Pipping <[email protected]> ChangeLog:
Add iBFT support for iSCSI (bug #314575)
Special thanks:
- Stefan Behte
7 Feb 2011; Sebastian Pipping <[email protected]> ChangeLog:
Use devtmpfs/tmpfs for /dev (bug #353024)
Rescue devtmpfs /dev over to chroot (bug #353024, bug #344407)
Special thanks:
- Peter Hjalmarsson
31 Jan 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.12.6
31 Jan 2011; Sebastian Pipping <[email protected]> ChangeLog:
Speed up LVM activation (bug #351047)
Special thanks:
- Peter Hjalmarsson
30 Jan 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.12.5
30 Jan 2011; Sebastian Pipping <[email protected]> gen_initramfs.sh:
Give blkid of e2fsprogs precedence over busybox re-write by putting it into
/sbin, not /bin (bug #352746)
30 Jan 2011; Sebastian Pipping <[email protected]> arch/x86_64/kernel-config:
Enable CONFIG_USB_SUSPEND and CONFIG_PM_RUNTIME for x86_64 (bug #351376)
30 Jan 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.12.4
30 Jan 2011; Sebastian Pipping <[email protected]> ChangeLog:
Enhance console handling on netboot linuxrc (bug #353084)
Enable shadow on netboot's busybox config (bug #353085)
Special thanks:
- Raúl Porcel
29 Jan 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.12.3
29 Jan 2011; Sebastian Pipping <[email protected]> gen_compile.sh:
No longer require device mapper bincache for compiling lvm (bug #353026)
Special thanks:
- Peter Hjalmarsson
27 Jan 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.12.2
27 Jan 2011; Sebastian Pipping <[email protected]> gen_determineargs.sh:
Revert kernel release detection fix (regression) (bug #352787)
23 Jan 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.12.1
23 Jan 2011; Sebastian Pipping <[email protected]> gen_initramfs.sh:
Fix copying of mdadm/mdmon to the initramfs (bug #352496). Thanks to Malcolm
Lashley for reporting.
23 Jan 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.12
22 Jan 2011; Sebastian Pipping <[email protected]> ChangeLog:
Enable CONFIG_USB_SUSPEND for x86/amd64 (bug #351376)
Replace "${MAKEOPTS/-j?/j1}" by "${MAKEOPTS} -j1" (bug #277607)
21 Jan 2011; Sebastian Pipping <[email protected]> gen_determineargs.sh:
Do not query generated files (like include/config/kernel.release) for kernel
version, as they may be out of sync (bug #263927)
20 Jan 2011; Sebastian Pipping <[email protected]> ChangeLog:
Add proper mdadm support (bug #282100)
Special thanks:
- Craig Andrews (Testing)
- Laurent Pinchart (mdmon/IMSM support)
- Matthias Dahl (Initial patch)
- Peter Hjalmarsson (Testing)
20 Jan 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.11.1
20 Jan 2011; Sebastian Pipping <[email protected]> gen_configkernel.sh:
Move application of kernel config after "make mrproper" as that deletes
.config (whereas "make clean" does not) (bug #351906)
Special thanks:
- Peter Hjalmarsson
20 Jan 2011; Sebastian Pipping <[email protected]>
patches/busybox/1.18.1/1.18.1-mdstart.diff:
busybox 1.18.1: Return of mdstart as an applet (regression) (bug #351909)
16 Jan 2011; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.11
16 Jan 2011; Sebastian Pipping <[email protected]> defaults/initrd.scripts:
Do not sleep after vgscan (bug #351047)
16 Jan 2011; Sebastian Pipping <[email protected]> ChangeLog:
Changes:
- Fix compilation of LVM 2.02.74 (and 2.02.28) (bug #255196, bug #267383)
- Add minimal btrfs support (bug #303529)
- Add support for UUID to crypt_root (bug #315467)
- Run "make firmware_install" if CONFIG_FIRMWARE_IN_KERNEL != y (bug #244651)
- Port busybox patches from 1.7.4 to 1.18.1 (bug #331971)
- Handle missing kernel .config better (bug #271528)
- Improve slowusb handling (bug #323317)
- Add GnuPG 1.x support (bug #217959)
- Check return codes of cpio (bug #246370)
- Update e2fsprogs/blkid to 1.41.14 (bug #291822)
- Create /bin/vg* symlinks when called as /linuxrc, too (bug #307855)
- Pick first device when several devices are matching real_root (bug #303531)
- Fix warning "cannot remove `/var/cache/genkernel/src'" (bug #347213)
- Allow configuring the list of busybox applets (bug #326593)
- Fix arithmetic bug in defaults/initrd.scripts (bug #339789)
Special thanks:
- Amadeusz Zolnowski (LVM update)
- Christian Giessner (UUID crypt_root)
- dacook (GnuPG 1.x support)
- Denis Kaganovich (Busybox patch porting)
- devsk (Multi-device patch)
- Fabio Erculiani (Slowusb fixes)
- Kai Dietrich (Symlink analysis)
- Kolbjørn Barmen (Arithmetic fix)
13 Dec 2010; Sebastian Pipping <[email protected]> genkernel:
Bump version to 3.4.10.908
13 Dec 2010; <[email protected]> doc/genkernel.8.txt, gen_cmdline.sh:
docs: Document --genzimage
13 Dec 2010; <[email protected]> gen_cmdline.sh:
Fix a reference to --nomenuconfig into --no-menuconfig
13 Dec 2010; <[email protected]> doc/genkernel.8.txt:
docs: Update man page from output of --help
13 Dec 2010; <[email protected]> doc/genkernel.8.txt:
docs: Document keymap= and dokeymap (bug #346017)
6 Dec 2010; <[email protected]> genkernel.conf:
.conf: Document LUKS variable (bug #346015)
6 Dec 2010; <[email protected]> doc/genkernel.8.txt:
docs: Mention both "initramfs" and "ramdisk" as available actions
(bug #251702)
6 Dec 2010; <[email protected]> genkernel.8:
man page: Propagate rename of --no-initrdmodules to --no-ramdisk-modules
29 Nov 2010; <[email protected]> ChangeLog:
Add patch allowing compilation of busybox 1.7.4 with make 3.82 (bug #341943)
20 Feb 2010; Andrew Gaffney <[email protected]> defaults/initrd.scripts:
Apply patches from Gentoo bug #268468
19 Jan 2010; Andrew Gaffney <[email protected]> genkernel:
Only call set_bootloader is CMD_NOINSTALL is not set for Gentoo bug
#301454
27 Dec 2009; Andrew Gaffney <[email protected]> arch/alpha/modules_load,
arch/arm/modules_load, arch/ia64/kernel-config, arch/ia64/modules_load,
arch/mips/modules_load, arch/parisc/modules_load,
arch/parisc64/modules_load, arch/ppc/kernel-config, arch/ppc/modules_load,
arch/ppc64/modules_load, arch/sparc/modules_load,
arch/sparc64/kernel-config, arch/sparc64/modules_load,
arch/um/modules_load, arch/x86/kernel-config, arch/x86/modules_load,
arch/x86_64/kernel-config, arch/x86_64/modules_load,
defaults/kernel-config:
Add USB HID modules to modules_load and default kernel-config (for Gentoo
bug #270983)
27 Dec 2009; Andrew Gaffney <[email protected]>
arch/alpha/kernel-config, arch/alpha/modules_load, arch/arm/modules_load,
arch/ia64/kernel-config, arch/ia64/modules_load, arch/mips/modules_load,
arch/parisc/modules_load, arch/parisc64/modules_load,
arch/ppc/kernel-config, arch/ppc/modules_load, arch/ppc64/modules_load,
arch/sparc/modules_load, arch/sparc64/kernel-config,
arch/sparc64/modules_load, arch/um/modules_load, arch/x86/kernel-config,
arch/x86/modules_load, arch/x86_64/kernel-config,
arch/x86_64/modules_load, defaults/kernel-config, defaults/modules_load:
Enable ext4 by default everywhere (for Gentoo bug #268818)
27 Dec 2009; Andrew Gaffney <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Add support for isoboot= option (for Gentoo bug #294268)
26 Dec 2009; Andrew Gaffney <[email protected]>
defaults/initrd.defaults, defaults/initrd.scripts:
Properly apply NFS mount options for Gentoo bug #262915
26 Dec 2009; Andrew Gaffney <[email protected]>
arch/alpha/kernel-config, arch/ia64/kernel-config, arch/ppc/kernel-config,
arch/x86_64/kernel-config:
Enable CONFIG_SCSI_MULTI_LUN option for Gentoo bug #261122
26 Dec 2009; Andrew Gaffney <[email protected]> defaults/initrd.scripts:
Apply patch to make sure loop cache directory exists for Gentoo bug
#297814
17 Dec 2009; Robin H. Johnson <[email protected]> HACKING:
Document how to roll a release for the next time.
17 Dec 2009; Robin H. Johnson <[email protected]> genkernel:
Tag 3.4.10.907 release.
06 Dec 2009; Andrew Gaffney <[email protected]> gen_initramfs.sh:
use a symlink instead of a hardlink for busybox utils (for Gentoo bug
#246370)
23 Nov 2009; Andrew Gaffney <[email protected]> defaults/linuxrc:
Fix typo for Gentoo bug #294138
16 Nov 2009; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Make sure to change back to existant directory before removing the current
directory for Gentoo bug #291794
15 Oct 2009; <[email protected]> Changelog:
added iSCSI support
22 Sep 2009; <[email protected]> ChangeLog:
modified the libaio search so it'll actually work, cause I'm a dork
21 Sep 2009; <[email protected]> gen_initramfs.sh:
Fix broken libraries for multipath per Gentoo bug #284592
21 Sep 2009; <[email protected]> gen_initramfs.sh:
Update to fix broken initramfs caused by multipath config in Gentoo bug #284589
05 Sep 2009; Andrew Gaffney <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Apply patch from Gentoo bug #220913 for tuxonice resume
14 Aug 2009; Andrew Gaffney <[email protected]> genkernel.conf:
Enable DISKLABEL=yes by default
05 Aug 2009; Andrew Gaffney <[email protected]> genkernel: