-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
3806 lines (2986 loc) · 153 KB
/
ChangeLog
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
# ChangeLog for genkernel
# Copyright 1999-2009 Gentoo Foundation; 2008-2009 Various authors (see AUTHORS)
# Distributed under the GPL v2
# $Id$
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:
This is genkernel 3.4.10.906
25 Jul 2009; Chris Gianelloni <[email protected]> genkernel.conf,
.gitattributes:
Adding Id header and Ident for genkernel.conf
25 Jul 2009; Chris Gianelloni <[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, defaults/config.sh, gen_arch.sh, gen_bootloader.sh,
gen_cmdline.sh, gen_compile.sh, gen_configkernel.sh, gen_determineargs.sh,
gen_funcs.sh, gen_initramfs.sh, gen_moddeps.sh, gen_package.sh:
Adding Id header.
25 Jul 2009; Chris Gianelloni <[email protected]> genkernel,
.gitattributes:
Adding Id header and enabling Ident on *.sh files.
25 Jul 2009; Chris Gianelloni <[email protected]> AUTHORS, BUGS,
HACKING, README, TODO:
Adding Id header.
25 Jul 2009; Chris Gianelloni <[email protected]> .gitattributes:
Adding additional files to .gitattributes to enable Ident.
25 Jul 2009; Chris Gianelloni <[email protected]> +.gitattributes:
Adding .gitattributes file.
19 Jul 2009; Andrew Gaffney <[email protected]> defaults/initrd.scripts:
Change command used to determine real filename for REAL_RESUME for Gentoo
bug #269603
19 Jul 2009; Andrew Gaffney <[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:
Add aic94xx to MODULES_SCSI for Gentoo bug #277792
12 Jul 2009; Andrew Gaffney <[email protected]> arch/x86/kernel-config,
arch/x86_64/kernel-config:
enable CONFIG_SYSFS_DEPRECATED=y in x86/x86_64 kernel-config for Gentoo
bug #225249
12 Jul 2009; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Apply patch for Gentoo bug #276753 for new lvm.static binary
07 Jul 2009; Chris Gianelloni <[email protected]> genkernel:
Version bumping to 3.4.10.905 for release.
04 Jul 2009; Andrew Gaffney <[email protected]> gen_funcs.sh, genkernel:
Remove code to check for host kernel LOOP support for Gentoo bug #275757
28 Jun 2009; Andrew Gaffney <[email protected]> defaults/modprobe,
genkernel.conf:
Restore BOOTLOADER="grub" example line in genkernel.conf for Gentoo bug
#274768
12 May 2009; Andrew Gaffney <[email protected]> arch/x86/modules_load,
defaults/initrd.scripts:
Apply fix to deference links for Gentoo bug #269603
09 May 2009; Andrew Gaffney <[email protected]> arch/x86/modules_load:
foo
09 May 2009; Andrew Gaffney <[email protected]> arch/x86/modules_load,
arch/x86_64/modules_load:
Add dm-crypt module for Gentoo bug #269042
24 Apr 2009; Chris Gianelloni <[email protected]> genkernel:
Rolling a new genkernel 3.4.10.904 version for testing.
17 Apr 2009; Andrew Gaffney <[email protected]> netboot/busy-config:
Apply patch from Gentoo bug #266373 for additional options in the netboot
busy-config
06 Mar 2009; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Clean up append_multipath() code to copy files in a loop and report file
that failed to copy
06 Mar 2009; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Apply patch from robbat2 to fix whitespace breakage in multipath code
06 Mar 2009; Andrew Gaffney <[email protected]> gen_determineargs.sh,
genkernel.conf:
Apply patch from robbat2 to finish wiring up multipath support
06 Mar 2009; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Modify append_data to die on 0 arguments and check arg 2 with isTrue().
Based on a patch from robbat2
20 Feb 2009; Andrew Gaffney <[email protected]> arch/sparc64/config.sh,
gen_compile.sh, gen_funcs.sh, gen_package.sh:
Add support for multiple possible kernel binary paths for Gentoo bug
#255085
04 Feb 2009; Andrew Gaffney <[email protected]> defaults/linuxrc:
Comment out the exec line for console=*, since it seems to blow up when
the param isn't a true device node, such as ttyS0,115200n8
19 Jan 2009; Andrew Gaffney <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Remove detect_sbp2_devices() for Gentoo bug #239474
16 Jan 2009; Andrew Gaffney <[email protected]> genkernel.conf:
Add commented out DISKLABEL=yes option for Gentoo bug #229847
08 Jan 2009; Chris Gianelloni <[email protected]> TODO:
Added more verbosity to the auto-detection section.
08 Jan 2009; Chris Gianelloni <[email protected]> AUTHORS:
Updated the AUTHORS section and the header for the ChangeLog, to reflect
that individual authors now retain their copyright to code they submit.
08 Jan 2009; Chris Gianelloni <[email protected]> TODO:
Added a note about Security Tokens, cleaned up the block device section, and
added a section about autodetection.
08 Jan 2009; Chris Gianelloni <[email protected]> HACKING:
Adding a note about contacting me to HACKING.
08 Jan 2009; Chris Gianelloni <[email protected]> TODO:
Adding multipath support is really two different functions, so split them.
08 Jan 2009; Chris Gianelloni <[email protected]> TODO:
Adding a note about documenting the code paths.
08 Jan 2009; Chris Gianelloni <[email protected]> TODO:
Adding new boot support information to the TODO.
05 Jan 2009; Chris Gianelloni <[email protected]> TODO, genkernel:
Version bump to 3.4.10.903 to resolve bug #250330.
31 Dec 2008; Andrew Gaffney <[email protected]> gen_arch.sh:
Add case for arm* in get_official_arch()
31 Dec 2008; Andrew Gaffney <[email protected]> netboot/busy-config:
Enable CONFIG_MKSWAP for netboot busybox
26 Dec 2008; Andrew Gaffney <[email protected]> gen_bootloader.sh:
Modify grep regex to account for additional suffixes on old kernel names
24 Dec 2008; Andrew Gaffney <[email protected]> gen_cmdline.sh,
gen_determineargs.sh:
Add --busybox-config= commandline option
24 Dec 2008; Andrew Gaffney <[email protected]> netboot/linuxrc.x:
Revert to just running /bin/bash on /dev/console for serial. We still
start getty on tty2-6
23 Dec 2008; Andrew Gaffney <[email protected]> gen_cmdline.sh:
Allow old 'initramfs' option instead of 'ramdisk' for compatability
17 Dec 2008; Andrew Gaffney <[email protected]> defaults/linuxrc:
Remove the use of 'env -i' when calling switch_root due to Gentoo bug
#248688
16 Dec 2008; Andrew Gaffney <[email protected]> netboot/linuxrc.x:
Run the getty commands with proper arguments so they don't die immediately
16 Dec 2008; Andrew Gaffney <[email protected]> netboot/linuxrc.x:
Explicitly set /bin/ashlogin +x during boot
16 Dec 2008; Andrew Gaffney <[email protected]> netboot/linuxrc.x:
Run getty for tty1 in the foreground
16 Dec 2008; Andrew Gaffney <[email protected]> netboot/linuxrc.x,
+netboot/misc/bin/ashlogin:
Use getty to launch ash, so that we can use ^C and friends
16 Dec 2008; Chris Gianelloni <[email protected]> +BUGS:
Adding a BUGS file, where we can list bugs that we have found in genkernel
that need to be resolved.
16 Dec 2008; Chris Gianelloni <[email protected]> +HACKING:
Adding a HACKING file, which I will use to document the various phases of
genkernel so we can split up the default functions and also so we can
provide hooks into the various phases for external addons.
16 Dec 2008; Chris Gianelloni <[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, defaults/config.sh, defaults/initrd.defaults,
defaults/initrd.scripts, defaults/linuxrc, defaults/udhcpc.scripts,
gen_bootloader.sh, gen_compile.sh, gen_configkernel.sh,
gen_determineargs.sh, gen_initramfs.sh, gen_moddeps.sh, gen_package.sh,
genkernel.conf, netboot/linuxrc.x, netboot/misc/bin/net-setup:
Actually setting permissions. It helps if one remembers to 'git add'
before doing their commit.
16 Dec 2008; Andrew Gaffney <[email protected]> netboot/busy-config:
Enable GETTY for netboot busy-config
16 Dec 2008; Andrew Gaffney <[email protected]> gen_compile.sh:
We don't need to add - to UTILS_CROSS_COMPILE since it's already there
16 Dec 2008; Andrew Gaffney <[email protected]> defaults/busy-config,
gen_compile.sh, +netboot/busy-config:
Separate out main and netboot busy-config
15 Dec 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Use : as a regex separator instead of / since REAL_ROOT will have / in it
15 Dec 2008; Andrew Gaffney <[email protected]> gen_bootloader.sh:
Add check for existing grub.conf entry for kernel
15 Dec 2008; Andrew Gaffney <[email protected]> gen_bootloader.sh:
Default to '0' if 'default' line not found at all in existing grub.conf
15 Dec 2008; Andrew Gaffney <[email protected]> gen_bootloader.sh:
Adding code that duplicates default grub.conf entry to replace old awk
script. Based on code written by Mike Auty <[email protected]>
15 Dec 2008; Andrew Gaffney <[email protected]> +gen_bootloader.sh,
gen_cmdline.sh, gen_determineargs.sh, genkernel:
Initial commit for re-adding support for --bootloader=grub
14 Dec 2008; Andrew Gaffney <[email protected]> netboot/linuxrc.x:
Change -f checks to -e for /dev nodes Check that dropbear exists before
starting it
14 Dec 2008; Andrew Gaffney <[email protected]> gen_compile.sh:
Explicitly set UTILS_{CC,LD,AS} if UTILS_CROSS_COMPILE is set
14 Dec 2008; Andrew Gaffney <[email protected]> gen_cmdline.sh:
Typo fix for Gentoo bug #250875
14 Dec 2008; Chris Gianelloni <[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, defaults/config.sh, defaults/initrd.defaults,
defaults/initrd.scripts, defaults/linuxrc, defaults/udhcpc.scripts,
gen_compile.sh, gen_configkernel.sh, gen_determineargs.sh,
gen_initramfs.sh, gen_moddeps.sh, gen_package.sh, genkernel.conf,
netboot/linuxrc.x, netboot/misc/bin/net-setup:
Setting executable bit properly on shell scripts and configuration files.
13 Dec 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Create /sbin directory in append_luks for bug #250330
13 Dec 2008; Andrew Gaffney <[email protected]> netboot/linuxrc.x:
Disable creation of most standard devices nodes, since we're running mdev
13 Dec 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts,
gen_initramfs.sh, netboot/linuxrc.x:
Move udhcpc's script to default location
13 Dec 2008; Andrew Gaffney <[email protected]> defaults/busy-config:
Enable support klogd and syslogd for netboot
13 Dec 2008; Andrew Gaffney <[email protected]> defaults/linuxrc,
gen_cmdline.sh, gen_determineargs.sh, gen_initramfs.sh:
Add --real-root=<foo> parameter to specify a default for real_root= in the
initramfs for Gentoo bug #249783
12 Dec 2008; Andrew Gaffney <[email protected]> -arch/alpha/busy-config,
-arch/arm/busy-config, -arch/ia64/busy-config, -arch/mips/busy-config,
-arch/parisc/busy-config, -arch/parisc64/busy-config,
-arch/ppc/busy-config, -arch/ppc64/busy-config, -arch/sparc/busy-config,
-arch/sparc64/busy-config, -arch/x86/busy-config,
-arch/x86_64/busy-config, gen_compile.sh:
Switch search order so arch-specific is first for busy-config Remove
unneeded identical busy-config files
12 Dec 2008; Andrew Gaffney <[email protected]> gen_compile.sh,
genkernel.conf:
Remove BUSYBOX_CONFIG from genkernel.conf Add search order for
busy-config: user-specified, defaults/busy-config,
arch/%%ARCH%%/busy-config
12 Dec 2008; Andrew Gaffney <[email protected]> -arch/x86/nb-busybox.cf,
-defaults/nb-busybox.cf:
Remove old nb-busybox.cf files that aren't used anymore
12 Dec 2008; Andrew Gaffney <[email protected]> +arch/arm/busy-config,
+arch/arm/config.sh, +arch/arm/modules_load:
Add support for arm from armin76
12 Dec 2008; Andrew Gaffney <[email protected]> arch/alpha/busy-config,
arch/ia64/busy-config, arch/mips/busy-config, arch/parisc/busy-config,
arch/parisc64/busy-config, arch/ppc/busy-config, arch/ppc64/busy-config,
arch/sparc/busy-config, arch/sparc64/busy-config, arch/um/busy-config,
arch/x86/busy-config, arch/x86_64/busy-config, defaults/busy-config:
Enable CONFIG_MAKEDEVS in busy-config for netboot
09 Dec 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
s/aux/luks/ for Gentoo bug #250330
07 Dec 2008; Andrew Gaffney <[email protected]> arch/alpha/busy-config,
arch/ia64/busy-config, arch/mips/busy-config, arch/parisc/busy-config,
arch/parisc64/busy-config, arch/ppc/busy-config, arch/ppc64/busy-config,
arch/sparc/busy-config, arch/sparc64/busy-config, arch/x86/busy-config,
arch/x86_64/busy-config, defaults/busy-config, netboot/linuxrc.x:
Enable CONFIG_FEATURE_PREFER_APPLETS busybox option export PATH at top of
netboot linuxrc
07 Dec 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh,
netboot/linuxrc.x:
Move all netboot logic from catalyst into gk
07 Dec 2008; Andrew Gaffney <[email protected]> defaults/udhcpc.scripts,
gen_cmdline.sh, gen_determineargs.sh, netboot/linuxrc.x:
Initial support for --netboot option integrate functionality from netboot
udhcpc.scripts into default one
04 Dec 2008; Chris Gianelloni <[email protected]> genkernel:
Bumping version for release.
25 Nov 2008; Andrew Gaffney <[email protected]> netboot/linuxrc.x:
Use symlinks for busybox utils Use full path to mount since it gets grumpy
without it in later bb versions for some reason
17 Nov 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Break apart cryptsetup stuff into separate append_luks() and make
append_auxillary() dependent on ${BUSYBOX} for Gentoo bug #247052
15 Nov 2008; Andrew Gaffney <[email protected]> defaults/linuxrc:
Applied patch for UUID support for real_resume= from Gentoo bug #239687
15 Nov 2008; Andrew Gaffney <[email protected]> gen_determineargs.sh:
Added modified version of patch from Gentoo bug #238707
14 Nov 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Only append unionfs_fuse stuff if UNIONFS is set
14 Nov 2008; Andrew Gaffney <[email protected]> defaults/linuxrc,
gen_cmdline.sh, gen_determineargs.sh, genkernel:
Add --unionfs commandline option to enable building of unionfs-fuse Add
nounionfs boot option
14 Nov 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts:
Add good_msg for creating the union mount
14 Nov 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts:
Pipe stderr for unionfs mount call to /dev/null to supress getcwd message
14 Nov 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Call switch_root with full path
14 Nov 2008; Andrew Gaffney <[email protected]> defaults/linuxrc:
Call switch_root with 'env -i' to clean out the kernel-defined key/value
pairs
14 Nov 2008; Andrew Gaffney <[email protected]> defaults/linuxrc:
Skip good_root check for /dev/nfs for Gentoo bug #246759
14 Nov 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts:
Simplify implementation of parse_opt in linuxrc
14 Nov 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Small cleanups in unionfs code
14 Nov 2008; Andrew Gaffney <[email protected]> arch/alpha/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, gen_compile.sh,
gen_initramfs.sh, genkernel:
Add fuse to MODULES_FS Remove direct calls to compile_fuse() and
append_fuse() Disable bincache for fuse, since we don't need any files at
runtime from it
14 Nov 2008; Andrew Gaffney <[email protected]>
+patches/busybox/1.7.4/1.7.4-mount-umount-i-option.diff,
-patches/busybox/1.7.4/1.7.4-simplify-path-debug.diff:
Replace debug patch with simple patch to add trivial support for -i option
to mount/umount
13 Nov 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts:
Add suid,dev to unionfs mount opts
13 Nov 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts:
Remove allow_root mount opt, since it conflicts with allow_other
13 Nov 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts,
patches/busybox/1.7.4/1.7.4-simplify-path-debug.diff:
Change typo in unionfs-fuse mount opt and add -i support to umount
13 Nov 2008; Andrew Gaffney <[email protected]> arch/alpha/busy-config,
arch/ia64/busy-config, arch/mips/busy-config, arch/parisc/busy-config,
arch/parisc64/busy-config, arch/ppc/busy-config, arch/ppc64/busy-config,
arch/sparc/busy-config, arch/sparc64/busy-config, arch/um/busy-config,
arch/x86/busy-config, arch/x86_64/busy-config, defaults/busy-config:
Enable CONFIG_FEATURE_MTAB_SUPPORT option for busybox
13 Nov 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts,
+patches/busybox/1.7.4/1.7.4-mount-i-option.diff:
Add patch for busybox to add -i option to mount command
13 Nov 2008; Andrew Gaffney <[email protected]> gen_compile.sh:
Compile unionfs-fuse statically
13 Nov 2008; Andrew Gaffney <[email protected]> defaults/linuxrc,
gen_initramfs.sh:
Make sure that /sbin/unionfs is +x
13 Nov 2008; Andrew Gaffney <[email protected]> gen_compile.sh,
gen_initramfs.sh:
Correct unionfs-fuse bincache path and clean up debugging code
13 Nov 2008; Andrew Gaffney <[email protected]> gen_compile.sh:
Add -L line into LIB= in Makefile
13 Nov 2008; Andrew Gaffney <[email protected]> gen_compile.sh:
Unpack fuse source and modify CFLAGS for unionfs-fuse
12 Nov 2008; Andrew Gaffney <[email protected]> gen_compile.sh,
genkernel.conf:
Unpack unionfs-fuse with -j
12 Nov 2008; Andrew Gaffney <[email protected]> gen_determineargs.sh:
Call arch_replace and cache_replace on fuse/unionfs-fuse vars
12 Nov 2008; Andrew Gaffney <[email protected]> genkernel.conf:
Add fuse/unionfs-fuse blocks to genkernel.conf
12 Nov 2008; Andrew Gaffney <[email protected]> genkernel:
Actually call compile_fuse() and compile_unionfs_fuse()
12 Nov 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts,
defaults/linuxrc:
Add back (modified) unionfs code in linuxrc
12 Nov 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Add append_fuse() and append_unionfs_fuse() functions
12 Nov 2008; Andrew Gaffney <[email protected]> gen_compile.sh:
Add compile_fuse() and compile_unionfs_fuse()
04 Nov 2008; Andrew Gaffney <[email protected]> arch/alpha/busy-config,
arch/ia64/busy-config, arch/mips/busy-config, arch/parisc/busy-config,
arch/parisc64/busy-config, arch/ppc/busy-config, arch/ppc64/busy-config,
arch/sparc/busy-config, arch/sparc64/busy-config, arch/um/busy-config,
arch/x86/busy-config, arch/x86_64/busy-config, defaults/busy-config:
Enabling CONFIG_WGET and CONFIG_FEATURE_TAR_BZIP2 for initial support of
Gentoo bug #211976
31 Oct 2008; Chris Gianelloni <[email protected]> genkernel:
Tagging a 3.4.10.901 release, for testing. Adding periods to ChangeLog to
fix syntax hilighting.
15 Sep 2008; Chris Gianelloni <[email protected]> AUTHORS:
Adding Andrew and Robin to AUTHORS.
15 Sep 2008; Andrew Gaffney <[email protected]> gen_cmdline.sh:
Add dummy handler for --config in gen_cmdline.sh for Gentoo bug #237541.
12 Sep 2008; Chris Gianelloni <[email protected]>
arch/alpha/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/modules_load:
Removing scsi_wait_scan from PATA/SATA/SCSI and moving it to its own
module group. This allows the module to be loaded last, no matter what
combination of disks are in the system, allowing for firmware and such to
be loaded before genkernel continues, even when asynchronous SCSI scanning
is enabled in the kernel.
31 Aug 2008; Andrew Gaffney <[email protected]> arch/alpha/busy-config,
arch/ia64/busy-config, arch/mips/busy-config, arch/parisc/busy-config,
arch/parisc64/busy-config, arch/ppc/busy-config, arch/ppc64/busy-config,
arch/sparc/busy-config, arch/sparc64/busy-config, arch/um/busy-config,
arch/x86/busy-config, arch/x86_64/busy-config, defaults/busy-config,
genkernel.conf:
Enable CONFIG_ROUTE in busy-configs.
29 Aug 2008; Andrew Gaffney <[email protected]> arch/alpha/busy-config,
arch/ia64/busy-config, arch/mips/busy-config, arch/parisc/busy-config,
arch/parisc64/busy-config, arch/ppc/busy-config, arch/ppc64/busy-config,
arch/sparc/busy-config, arch/sparc64/busy-config, arch/um/busy-config,
arch/x86/busy-config, arch/x86_64/busy-config, defaults/busy-config,
defaults/udhcpc.scripts:
Enable CONFIG_HOSTNAME in all busy-configs and call 'hostname' with value
from DHCP.
28 Aug 2008; Andrew Gaffney <[email protected]> arch/x86/kernel-config,
arch/x86_64/kernel-config:
Disabled CONFIG_DEBUG_INFO in x86{,_64} kconfigs.
25 Aug 2008; Andrew Gaffney <[email protected]>
+patches/busybox/1.7.4/README:
Add README to busybox patches dir.
25 Aug 2008; Andrew Gaffney <[email protected]> gen_compile.sh:
Only apply files from patch dir ending in diff/patch.
24 Aug 2008; Andrew Gaffney <[email protected]> defaults/linuxrc:
Fix CONSOLE= handling code for bug 232012.
21 Aug 2008; Andrew Gaffney <[email protected]> -gen_bootloader.sh,
-gen_bootloader_grub.awk:
Remove unneeded files for broken grub code.
21 Aug 2008; Andrew Gaffney <[email protected]> gen_cmdline.sh,
gen_determineargs.sh, genkernel, genkernel.conf:
Remove broken grub code.
07 Aug 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Only append splash portion to initramfs if SPLASH is set.
29 Jul 2008; Andrew Gaffney <[email protected]> genkernel.8:
Fix typo in man page, butt -> but.
29 Jul 2008; Andrew Gaffney <[email protected]> defaults/udhcpc.scripts:
Add support to udhcpc.scripts for default route and DNS servers/domain.
29 Jul 2008; Andrew Gaffney <[email protected]> defaults/initrd.scripts:
Remove check for >=2.6 for mounting sysfs.
29 Jul 2008; Andrew Gaffney <[email protected]> genkernel:
Remove check for >=2.6 for 'make prepare'.
29 Jul 2008; Andrew Gaffney <[email protected]> gen_bootloader.sh,
gen_configkernel.sh, gen_moddeps.sh, genkernel.8:
Remove a few more 2.4 kernel support remnants.
29 Jul 2008; Andrew Gaffney <[email protected]> gen_arch.sh, genkernel:
Cleanup remaining references to ${ARCH}/ without arch/ prefix.
29 Jul 2008; Andrew Gaffney <[email protected]> +arch/um/busy-config,
+arch/um/config.sh, +arch/um/kernel-config, +arch/um/modules_load,
-um/busy-config, -um/config.sh, -um/kernel-config, -um/modules_load:
Move um/ underneath arch/ where it belongs.
28 Jul 2008; Chris Gianelloni <[email protected]> gen_compile.sh:
Removed some unused dietlibc code.
28 Jul 2008; Chris Gianelloni <[email protected]> TODO,
gen_bootloader.sh, gen_compile.sh, gen_configkernel.sh,
gen_determineargs.sh, genkernel:
Removed a large chunk of 2.4 kernel support. This will still require some
fairly extensive cleaning to completely remove, but I'd say that without a
shadow of a doubt, genkernel will not function on 2.4 kernels.
28 Jul 2008; Chris Gianelloni <[email protected]> genkernel,
genkernel.8:
Added a couple more places where I needed to switch INITRD with RAMDISK.
28 Jul 2008; Chris Gianelloni <[email protected]> TODO,
arch/alpha/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/x86/modules_load,
arch/x86_64/modules_load, defaults/initrd.scripts, defaults/linuxrc,
defaults/modules_load, gen_bootloader.sh, gen_cmdline.sh,
gen_determineargs.sh, gen_initramfs.sh, -gen_initrd.sh, gen_moddeps.sh,
gen_package.sh, genkernel, genkernel.8:
Removed all references to an initrd and renamed most initr{d,amfs} stuff
to simply 'ramdisk' to simplify things for the future.
28 Jul 2008; Chris Gianelloni <[email protected]> TODO,
+defaults/initrd.defaults, +defaults/initrd.scripts,
+defaults/keymaps.tar.gz, +defaults/linuxrc, +defaults/modprobe,
+defaults/udhcpc.scripts, gen_initramfs.sh, -generic/initrd.defaults,
-generic/initrd.scripts, -generic/keymaps.tar.gz, -generic/linuxrc,
-generic/modprobe, -generic/udhcpc.scripts:
Moving files from generic to defaults, since they are the defaults used
globally.
28 Jul 2008; Chris Gianelloni <[email protected]> TODO, +modules/README:
Added the modules directory, which will be used to store the built-in
modules and also for external entities to add their own modules and hooks.
28 Jul 2008; Chris Gianelloni <[email protected]> +defaults/busy-config,
+defaults/config.sh, +defaults/kernel-config, +defaults/modules_load,
+defaults/nb-busybox.cf:
Added a defaults directory to store default files for builds. These are
overridden by architecture or module specific parameters. This should end
up reducing the amount of architecture-specific files needed, especially
as most of them have files which are (nearly) identical.
28 Jul 2008; Chris Gianelloni <[email protected]> -alpha/busy-config,
-alpha/config.sh, -alpha/kernel-config, -alpha/modules_load,
+arch/alpha/busy-config, +arch/alpha/config.sh, +arch/alpha/kernel-config,
+arch/alpha/modules_load, +arch/ia64/busy-config, +arch/ia64/config.sh,
+arch/ia64/kernel-config, +arch/mips/ip22r4k-2006_1.cf,
-mips/ip22r4k-2006_1.cf, +arch/ia64/modules_load,
+arch/mips/ip22r5k-2006_1.cf, +arch/mips/ip27r10k-2006_1.cf,
+arch/mips/ip28r10k-2006_1.cf, +arch/mips/ip30r10k-2006_1.cf,
+arch/mips/ip32r5k-2006_1.cf, +arch/mips/ip32rm5k-2006_1.cf,
-mips/ip22r5k-2006_1.cf, -mips/ip27r10k-2006_1.cf,
-mips/ip28r10k-2006_1.cf, -mips/ip30r10k-2006_1.cf,
-mips/ip32r5k-2006_1.cf, -mips/ip32rm5k-2006_1.cf, +arch/mips/busy-config,
+arch/mips/config.sh, +arch/mips/modules_load, +arch/mips/nb-busybox.cf,
+arch/parisc/busy-config, +arch/parisc/config.sh,
+arch/parisc/modules_load, +arch/parisc64/busy-config,
+arch/parisc64/config.sh, +arch/parisc64/modules_load,
+arch/ppc/busy-config, +arch/ppc/config.sh, +arch/ppc/kernel-config,
+arch/ppc/modules_load, +arch/ppc64/busy-config, +arch/ppc64/config.sh,
+arch/ppc64/kernel-2.6-pSeries, +arch/ppc64/kernel-2.6.g5,
+arch/ppc64/modules_load, +arch/sparc/busy-config, +arch/sparc/config.sh,
+arch/sparc/kernel-config, +arch/sparc/modules_load,
+arch/sparc64/busy-config, +arch/sparc64/config.sh,
+arch/sparc64/kernel-config, +arch/sparc64/modules_load,
+arch/x86/busy-config, +arch/x86/config.sh, +arch/x86/kernel-config,
+arch/x86/modules_load, +arch/x86/nb-busybox.cf, +arch/x86_64/busy-config,
+arch/x86_64/config.sh, +arch/x86_64/kernel-config,
+arch/x86_64/modules_load, gen_configkernel.sh, genkernel.conf,
-ia64/busy-config, -ia64/config.sh, -ia64/kernel-config,
-ia64/modules_load, -mips/busy-config, -mips/config.sh,
-mips/modules_load, -mips/nb-busybox.cf, -parisc/busy-config,
-parisc/config.sh, -parisc/modules_load, -parisc64/busy-config,
-parisc64/config.sh, -parisc64/modules_load, -ppc/busy-config,
-ppc/config.sh, -ppc/kernel-config, -ppc/modules_load, -ppc64/busy-config,
-ppc64/config.sh, -ppc64/kernel-2.6-pSeries, -ppc64/kernel-2.6.g5,
-ppc64/modules_load, -sparc/busy-config, -sparc/config.sh,
-sparc/kernel-config, -sparc/modules_load, -sparc64/busy-config,
-sparc64/config.sh, -sparc64/kernel-config, -sparc64/modules_load,
-x86/busy-config, -x86/config.sh, -x86/kernel-config, -x86/modules_load,
-x86/nb-busybox.cf, -x86_64/busy-config, -x86_64/config.sh,
-x86_64/kernel-config, -x86_64/modules_load:
Moved architecture folders under the arch subfolder.
05 Jun 2008; Chris Gianelloni <[email protected]> -um/kernel-config-2.6,
-ppc/kernel-config-2.6, -alpha/kernel-config-2.6, -ia64/kernel-config-2.6,
-x86/kernel-config-2.6, -x86_64/kernel-config-2.6, +um/kernel-config,
+ppc/kernel-config, +alpha/kernel-config, +ia64/kernel-config,
+x86/kernel-config, +x86_64/kernel-config, genkernel:
Rename kernel-config-2.6 to kernel-config, since we no longer support 2.4
kernels. This is genkernel 3.4.10 for release.
05 Jun 2008; Chris Gianelloni <[email protected]>
-ppc/2.6.3-benh2-G4-SMP.autoload, -ppc/2.6.3-benh2-G4.autoload,
-ppc/2.6.3-benh2-G5-SMP.autoload, ia64/kernel-config-2.6,
-ppc/2.6.3-benh2-G5.autoload, -ppc/G4, -ppc/G4-SMP,
+ppc/kernel-config-2.6, x86/kernel-config-2.6, -ppc/G5, -ppc/G5-SMP,
alpha/kernel-config-2.6, x86_64/kernel-config-2.6, TODO, -ppc/Pegasos,
sparc64/kernel-config:
Sync kernel configs from releng/trunk/releases/2008.0/kconfig and remove
some unused configs.
13 May 2008; Andrew Gaffney <[email protected]> generic/linuxrc:
Move setup_keymap call to before LUKS setup.
10 May 2008; Andrew Gaffney <[email protected]> gen_compile.sh:
Store pre-oldconfig busybox .config for use in bincache comparison.
09 May 2008; Andrew Gaffney <[email protected]> generic/initrd.defaults,
generic/initrd.scripts, generic/linuxrc:
Add nomodules kernel commandline parameter to disable loading of modules.
09 May 2008; Andrew Gaffney <[email protected]> gen_funcs.sh, genkernel,
genkernel.conf:
Move distfile cache to /var/cache/genkernel/src and add check to make sure
all distfiles are present.
09 May 2008; Chris Gianelloni <[email protected]> alpha/modules_load,
ia64/modules_load, mips/modules_load, parisc/modules_load,
parisc64/modules_load, ppc/modules_load, ppc64/modules_load,
sparc/modules_load, sparc64/modules_load, um/modules_load,
x86/modules_load, x86_64/modules_load:
Added a few SATA and PATA drivers to modules_load.
09 May 2008; Chris Gianelloni <[email protected]> alpha/modules_load,
ia64/modules_load, mips/modules_load, parisc/modules_load,
parisc64/modules_load, ppc/modules_load, ppc64/modules_load,
sparc/modules_load, sparc64/modules_load, um/modules_load,
x86/modules_load, x86_64/modules_load:
Updated the modules_load files.
25 Apr 2008; Chris Gianelloni <[email protected]>
generic/initrd.scripts, genkernel:
Enable keymap code when keymap is set on the kernel command line. This is
genkernel 3.4.10_pre10 for testing.
25 Apr 2008; Chris Gianelloni <[email protected]>
generic/initrd.scripts:
We need to unset keymap if it doesn't match to keep from hitting an infinite
loop.
24 Apr 2008; Chris Gianelloni <[email protected]> gen_determineargs.sh,
gen_funcs.sh, generic/initrd.scripts, generic/linuxrc:
Updated the keymap-handling code so it will be installed and displayed
without using --do-auto-keymap with a patch from Florian Schilhabel
<[email protected]> for bug #215822. Also, added a keymap= command line
option to allow setting keymap from the bootloader, also from Florian.
22 Apr 2008; Chris Gianelloni <[email protected]>
generic/initrd.scripts:
Change from using a directory check to a file check. This should fix bug
#215822.
12 Apr 2008; Chris Gianelloni <[email protected]>
generic/initrd.defaults:
Move removable storage like USB and firewire after traditional fixed storage
like PATA/SATA/SCSI for bug #217347.
10 Apr 2008; Chris Gianelloni <[email protected]> TODO, genkernel:
Updated TODO. This is 3.4.10_pre9 for testing.
08 Apr 2008; Chris Gianelloni <[email protected]>
generic/initrd.defaults, generic/initrd.scripts:
Added scsi to the default list of modules to load.
05 Apr 2008; Andrew Gaffney <[email protected]> gen_determineargs.sh:
Set CMD_KEYMAP to default to yes, so it's enabled unless specifically
disabled
04 Apr 2008; Chris Gianelloni <[email protected]>
generic/initrd.scripts, genkernel:
Added a patch to skip device nodes for devices if at least one partition
exists on the device. This aids in LiveUSB usage and is for bug #212794.
This is genkernel 3.4.10_pre8.
03 Apr 2008; Andrew Gaffney <[email protected]> generic/linuxrc:
Split up /dev node checks into console/null and tty1
02 Apr 2008; Andrew Gaffney <[email protected]> generic/linuxrc:
Remove initrd-specific code from linuxrc
30 Mar 2008; Andrew Gaffney <[email protected]> gen_arch.sh:
Uncomment ppc/ppc64->powerpc code in set_kernel_arch, since it appears to
actually be necessary as of 2.6.24-gentoo-r4
29 Mar 2008; Andrew Gaffney <[email protected]>
+patches/busybox/1.7.4/busybox-1.7.4-signal-hack.patch:
Add patch from ebuild in-tree to fix build issue with signals on hppa
14 Mar 2008; Andrew Gaffney <[email protected]> gen_cmdline.sh,
gen_determineargs.sh:
Get rid of --initramfs option as it doesn't do anything anymore
14 Mar 2008; Chris Gianelloni <[email protected]> genkernel,
genkernel.conf, -pkg/alpha/README, -pkg/ia64/README, -pkg/mips/.keep,
-pkg/parisc/README, -pkg/parisc64/README, -pkg/ppc/README,
-pkg/ppc64/README, -pkg/sparc/README, -pkg/sparc64/README, -pkg/um/README,
-pkg/x86/README, -pkg/x86_64/README, -pkg/xen0/README, -pkg/xenU/README:
Removing pkg directory, since it is no longer necessary. From now on, we'll
just pull the tarballs from DISTDIR directly, and we've already moved our
caches to /var/tmp/genkernel, so there's nothing left to keep here. This is
genkernel 3.4.10_pre7 for testing.
14 Mar 2008; Andrew Gaffney <[email protected]> gen_package.sh:
Copy the original kconfig with a different name than the one used to build
14 Mar 2008; Andrew Gaffney <[email protected]> gen_package.sh:
Include original kconfig in kerncache If original kconfig exists in the
kerncache, use that for comparison to the current kconfig
14 Mar 2008; Andrew Gaffney <[email protected]> genkernel:
Switch back to building kernel first
Optionally build the kernel a second time if we're integrating the initramfs
14 Mar 2008; Chris Gianelloni <[email protected]> alpha/modules_load,
genkernel, ia64/modules_load, mips/modules_load, parisc/modules_load,
parisc64/modules_load, ppc/modules_load, ppc64/modules_load,
sparc/modules_load, sparc64/modules_load, um/modules_load,
x86/modules_load, x86_64/modules_load:
Clean up the modules_load files and add qla2xxx. This is genkernel
3.4.10_pre6 for testing.
13 Mar 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Stick CONFIG_INITRAMFS_ROOT_GID in the .config, too
13 Mar 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Remove existing CONFIG_INITRAMFS_SOURCE line and write new one as well as
CONFIG_INITRAMFS_ROOT_UID line
13 Mar 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Change sed delimeter
13 Mar 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
We should edit the copy of the kconfig instead of the source file
13 Mar 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh,
genkernel:
Instead of copying the initramfs into the kernel tree, we now sed the
kconfig to point CONFIG_INITRAMFS_SOURCE to the generated image
13 Mar 2008; Andrew Gaffney <[email protected]> sparc64/modules_load:
Add scsi_wait_scan to sparc64's MODULES_SCSI
13 Mar 2008; Andrew Gaffney <[email protected]> generic/linuxrc:
Add a check after mounting NEW_ROOT to see if /dev exists and /sbin/init is
executable before moving on
13 Mar 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Change the location we copy the intiramfs to for integrated initramfs
13 Mar 2008; Andrew Gaffney <[email protected]> generic/linuxrc:
Revert last commit as it wasn't a problem
13 Mar 2008; Andrew Gaffney <[email protected]> generic/linuxrc:
Remove -c "/dev/console" from switch_root command
13 Mar 2008; Andrew Gaffney <[email protected]> generic/linuxrc:
Add missing $ to {NORMAL} for broken /dev message
13 Mar 2008; Andrew Gaffney <[email protected]> gen_package.sh:
Spacing cleanups in gen_package.sh
13 Mar 2008; Andrew Gaffney <[email protected]> gen_arch.sh, genkernel:
Remove unsetting of ARCH for callback and change set_kernel_arch debug to
use print_info
13 Mar 2008; Andrew Gaffney <[email protected]> gen_cmdline.sh:
It helps to actually add the handling for the --integrated-initramfs option
13 Mar 2008; Andrew Gaffney <[email protected]> gen_arch.sh:
Use echo instead of print
13 Mar 2008; Andrew Gaffney <[email protected]> gen_arch.sh:
Add debug code for set_kernel_arch
13 Mar 2008; Andrew Gaffney <[email protected]> genkernel:
Add debugging code to show ARCH when running callback
Unset ARCH when running callback and restore afterwards
13 Mar 2008; Andrew Gaffney <[email protected]> genkernel:
Move set_kernel_arch() call to after determine_real_args() so that get_KV()
has populated the vars we need
13 Mar 2008; Andrew Gaffney <[email protected]> gen_arch.sh:
Change powerpc switch kernel version to 2.6.16 for if we ever uncomment it
13 Mar 2008; Andrew Gaffney <[email protected]> gen_arch.sh,
gen_compile.sh, genkernel:
Add set_kernel_arch(), which maps the genkernel arch to the arch that the
kernel expects based on the version of the kernel
13 Mar 2008; Andrew Gaffney <[email protected]> gen_cmdline.sh,
gen_compile.sh, gen_determineargs.sh, gen_initramfs.sh, gen_initrd.sh,
gen_package.sh, genkernel:
Get rid of the ENABLE_PEGASOS_HACKS hacks Add INTEGRATED_INITRAMFS option to
optionally insert the generated initramfs directly into the kernel image
Change default build order to build the kernel last to facilitate the
INTEGRATED_INITRAMFS option Add GENZIMAGE option and change various checks
from ENABLE_PEGASOS_HACKS to GENZIMAGE
13 Mar 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Argh...Changing the right line helps
13 Mar 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Change into initramfs-firmware-temp/ instead of
initramfs-firmware-temp/lib/firmware/ before doing cpio
12 Mar 2008; Chris Gianelloni <[email protected]> generic/linuxrc,
genkernel:
Added a small debug statement to generic/linuxrc so we know when we're
hitting the initrd code path. This is genkernel 3.4.10_pre5 for testing.
12 Mar 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Change to new temp directory so the firmware gets copied to the right place
12 Mar 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Copy firmware file with -L so we get the file instead of the symlink
12 Mar 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Fix another quoting malfunction
12 Mar 2008; Andrew Gaffney <[email protected]> alpha/busy-config,
ia64/busy-config, mips/busy-config, parisc/busy-config,
parisc64/busy-config, ppc/busy-config, ppc64/busy-config,
sparc/busy-config, sparc64/busy-config, x86/busy-config,
x86_64/busy-config:
Explicitly enable MDADM and MDSTART in busy-config
12 Mar 2008; Andrew Gaffney <[email protected]>
patches/busybox/1.7.4/1.7.4-static-error.diff:
Update busybox static-error patch to actually work
12 Mar 2008; Chris Gianelloni <[email protected]> genkernel.conf:
Change BUSYBOX_VER to VERSION_BUSYBOX for genkernel-9999 ebuild.
11 Mar 2008; Andrew Gaffney <[email protected]> gen_compile.sh:
Remove the quotes when trying to expand a glob
11 Mar 2008; Andrew Gaffney <[email protected]>
patches/busybox/1.7.4/1.7.4-mdadm.diff,
patches/busybox/1.7.4/1.7.4-mdstart.diff:
Update mdadm and mdstart patches
11 Mar 2008; Andrew Gaffney <[email protected]> gen_compile.sh:
It helps if we assign the correct value to version
Send output of patch command to /dev/null
Show a message saying we're patching if there are patches for the util
11 Mar 2008; Andrew Gaffney <[email protected]>
+patches/busybox/1.7.4/1.7.4-static-error.diff:
Add busybox patch to remove error about compiling statically
11 Mar 2008; Andrew Gaffney <[email protected]> alpha/busy-config,
gen_compile.sh, ia64/busy-config, mips/busy-config, parisc/busy-config,
parisc64/busy-config, ppc/busy-config, ppc64/busy-config,
sparc/busy-config, sparc64/busy-config, x86/busy-config,
x86_64/busy-config:
Update busy-config files for the various arches for busybox 1.7.4
11 Mar 2008; Andrew Gaffney <[email protected]> gen_compile.sh,
genkernel.conf, +patches/busybox/1.7.4/1.7.4-ash-timeout.diff,
+patches/busybox/1.7.4/1.7.4-mdadm.diff,
+patches/busybox/1.7.4/1.7.4-mdstart.diff,
+patches/busybox/1.7.4/1.7.4-openvt.diff:
Add apply_patches() function to automagically apply patches for a given util
Add updated busybox patches for 1.7.4 from robbat2
Change BUSYBOX_VER to 1.7.4
11 Mar 2008; Chris Gianelloni <[email protected]>
generic/initrd.scripts:
Rearrange checks so the return value is read correctly.
10 Mar 2008; Andrew Gaffney <[email protected]> alpha/busy-config,
gen_initrd.sh, generic/initrd.scripts, generic/linuxrc, ia64/busy-config,
mips/busy-config, parisc/busy-config, parisc64/busy-config,
ppc/busy-config, ppc64/busy-config, sparc/busy-config,
sparc64/busy-config, um/busy-config, x86/busy-config, x86_64/busy-config:
Enable CONFIG_HEXDUMP globally for busybox
Add getdvhoff replacement function from vapier
Remove copying of getdvhoff from system
10 Mar 2008; Andrew Gaffney <[email protected]> gen_cmdline.sh,
gen_determineargs.sh, gen_initramfs.sh, genkernel.conf:
Add support for --firmware-files option to make robbat2 happy
10 Mar 2008; Andrew Gaffney <[email protected]> gen_cmdline.sh,
gen_determineargs.sh, gen_initramfs.sh, genkernel.conf:
Add support for --firmware and --firmware-dir options to include firmware in
the initramfs
09 Mar 2008; Andrew Gaffney <[email protected]> generic/linuxrc:
Apply patch from Vince C <[email protected]> to mount sysfs prior to loading
modules, so that the mdev firmware loading can actually work
04 Mar 2008; Chris Gianelloni <[email protected]> gen_initramfs.sh:
If we have a raid456.ko module, we need to create a raid45.ko symlink since
dmraid can be rather stupid. This should resolve bug #195804.
04 Mar 2008; Chris Gianelloni <[email protected]> sparc64/kernel-config,
alpha/kernel-config-2.6, ia64/kernel-config-2.6, x86/kernel-config-2.6,
x86_64/kernel-config-2.6:
Updated the kernel configs for arches which have given us their 2008.0
configs. This is 3.4.10_pre4 for testing.
29 Feb 2008; Andrew Gaffney <[email protected]> gen_initramfs.sh:
Redirect which output to /dev/null and put quotes around var in test
29 Feb 2008; Chris Gianelloni <[email protected]> alpha/modules_load,
ia64/modules_load, ppc/modules_load, ppc64/modules_load, um/modules_load,
x86_64/modules_load:
Changed MDRAID to MDADM for bug #211316.
28 Feb 2008; Chris Gianelloni <[email protected]> gen_cmdline.sh,
gen_initramfs.sh, gen_initrd.sh, generic/initrd.scripts:
Added a --no-keymap option for bug #210886.
28 Feb 2008; Chris Gianelloni <[email protected]> gen_initramfs.sh,
generic/linuxrc:
Use which to determine the location of splash_geninitramfs, rather than
having an endless number of conditional checks for the location. This fixes
bug #211521. Thanks to Uriy Zhuravlev <[email protected]> for finding the
problem and suggesting a solution.
20 Feb 2008; Chris Gianelloni <[email protected]>
-xenU/kernel-config-2.6, -xen0/kernel-config-2.6, genkernel,
-xen0/busy-config, -xen0/config.sh, -xen0/modules_load, -xenU/busy-config,
-xenU/config.sh, -xenU/modules_load:
Removing the xen0 and xenU arches, since they didn't work, anyway. This is
genkernel 3.4.10_pre3 for testing.
20 Feb 2008; Andrew Gaffney <[email protected]> gen_package.sh:
Add missing space before closing ]
19 Feb 2008; Andrew Gaffney <[email protected]> generic/initrd.scripts:
Apply patch from bug 210457 to fix variable substitution. Thanks to Paul