File: ChangeLog

package info (click to toggle)
yaboot 1.3.13a-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 1,232 kB
  • ctags: 2,756
  • sloc: ansic: 9,548; sh: 2,831; asm: 343; makefile: 236
file content (1325 lines) | stat: -rw-r--r-- 38,138 bytes parent folder | download | duplicates (3)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
# do not edit -- automatically generated by arch changelog
# arch-tag: automatic-ChangeLog--erbenson@alaska.net--public/yaboot--devel--1.3
#

2004-07-11 20:14:40 GMT	Ethan Benson <erbenson@alaska.net>	patch-75

    Summary:
      Prep 1.3.13 release
    Revision:
      yaboot--devel--1.3--patch-75

    * Bump version numbers for 1.3.13 release.

    modified files:
     0arch-timestamps0 ChangeLog Makefile ybin/ofpath
     ybin/yabootconfig ybin/ybin


2004-07-11 20:02:24 GMT	Ethan Benson <erbenson@alaska.net>	patch-74

    Summary:
      Update changelog for 1.3.13
    Revision:
      yaboot--devel--1.3--patch-74

    * changelog: Update for 1.3.13

    modified files:
     0arch-timestamps0 ChangeLog changelog


2004-07-11 19:55:54 GMT	Ethan Benson <erbenson@alaska.net>	patch-73

    Summary:
      Increase tftp buffer to ~6MB
    Revision:
      yaboot--devel--1.3--patch-73

    * second/fs_of.c: increase tftp buffer to 6MB.  This is as far as it
      can go.

    modified files:
     0arch-timestamps0 ChangeLog second/fs_of.c


2004-07-11 19:52:17 GMT	Ethan Benson <erbenson@alaska.net>	patch-72

    Summary:
      Add LABEL/UUID support to yabootconfig
    Revision:
      yaboot--devel--1.3--patch-72

    * ybin/yabootconfig: Add support for LABEL= and UUID= in
      /etc/fstab. (Colin Watson)

    modified files:
     0arch-timestamps0 ChangeLog ybin/yabootconfig


2004-05-08 22:04:51 GMT	Ethan Benson <erbenson@alaska.net>	patch-71

    Summary:
      Add additional check on /dev/nvram to avoid misleading error message
    Revision:
      yaboot--devel--1.3--patch-71

    * ybin/ybin: Add additional check on /dev/nvram, if we cannot read a
      couple bytes report it as broken.  This avoids misleading
      `Incompatible nvsetenv' message on kernels without /dev/nvram support.

    modified files:
     0arch-timestamps0 ChangeLog ybin/ybin


2004-05-08 06:38:44 GMT	Ethan Benson <erbenson@alaska.net>	patch-70

    Summary:
      Fix several ofpath error messages going to stdout rather then stderr
    Revision:
      yaboot--devel--1.3--patch-70

    * ybin/ofpath: Fix several error messages mistakenly written to stdout
      rather then stderr. (Thanks to Colin Watson for noticing)

    modified files:
     0arch-timestamps0 ChangeLog ybin/ofpath


2004-04-26 00:27:48 GMT	Ethan Benson <erbenson@alaska.net>	patch-69

    Summary:
      Add support for initrd detection to yabootconfig
    Revision:
      yaboot--devel--1.3--patch-69

    * ybin/yabootconfig: If detected kernel appears to have a corresponding
      initrd image then include an initrd= line in generated yaboot.conf.

    modified files:
     0arch-timestamps0 ChangeLog ybin/yabootconfig


2004-04-18 00:27:59 GMT	Ethan Benson <erbenson@alaska.net>	patch-68

    Summary:
      Prep 1.3.12 release
    Revision:
      yaboot--devel--1.3--patch-68

    * Update changelog.
    * Bump version numbers to 1.3.12.

    modified files:
     0arch-timestamps0 ChangeLog Makefile changelog ybin/ofpath
     ybin/ybin


2004-03-28 05:02:03 GMT	Ethan Benson <erbenson@alaska.net>	patch-67

    Summary:
      Fix ofpath SATA support and sysfs detection
    Revision:
      yaboot--devel--1.3--patch-67

    * ybin/ofpath: Support newwer kernels which call the driver sata_svw,
      instead of ata-k2.
    * ybin/ofpath: Detect sysfs mount correctly.

    modified files:
     0arch-timestamps0 ChangeLog ybin/ofpath


2004-03-22 02:05:07 GMT	Ethan Benson <erbenson@alaska.net>	patch-66

    Summary:
      Add 2.6 kernel support to ofpath
    Revision:
      yaboot--devel--1.3--patch-66

    * ybin/ofpath: Add support for 2.6.4+ kernels with sysfs mounted.

    modified files:
     0arch-timestamps0 ChangeLog Makefile ybin/ofpath ybin/ybin


2004-02-22 13:15:30 GMT	Ethan Benson <erbenson@alaska.net>	patch-65

    Summary:
      Add caveat regarding UFS to yaboot howto
    Revision:
      yaboot--devel--1.3--patch-65

    * Add caveat regarding UFS to temporary bootloader setup chapter of
      the yaboot-howto (Thanks to Brian Sammon, and to Stefan Pfetzing for
      the German translation).

    modified files:
     0arch-timestamps0 ChangeLog doc/yaboot-howto.de.sgml
     doc/yaboot-howto.sgml


2004-01-04 12:37:38 GMT	Ethan Benson <erbenson@alaska.net>	patch-64

    Summary:
      Update =tagging-method for tla 1.1
    Revision:
      yaboot--devel--1.3--patch-64

    * Update =tagging-method for tla 1.1
    

    modified files:
     0arch-timestamps0 ChangeLog {arch}/=tagging-method


2003-11-20 10:03:32 GMT	Ethan Benson <erbenson@alaska.net>	patch-63

    Summary:
      Bump versions to final 1.3.11 release
    Revision:
      yaboot--devel--1.3--patch-63

    * Bump versions to final 1.3.11 release.

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./Makefile ./changelog
     ./ybin/ofpath ./ybin/ybin


2003-11-19 10:40:13 GMT	Ethan Benson <erbenson@alaska.net>	patch-62

    Summary:
      Prepare changelog for imminent 1.3.11 release
    Revision:
      yaboot--devel--1.3--patch-62

    * Prepare changelog for imminent 1.3.11 release.

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./changelog


2003-11-18 10:12:32 GMT	Ethan Benson <erbenson@alaska.net>	patch-61

    Summary:
      Fix ofpath arch detect fix
    Revision:
      yaboot--devel--1.3--patch-61

    ybin/ofpath: Fix botched powerpc-64 support fix.

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./ybin/ofpath


2003-11-18 10:09:41 GMT	Ethan Benson <erbenson@alaska.net>	patch-60

    Summary:
      Make ofpath work on powerpc-64
    Revision:
      yaboot--devel--1.3--patch-60

    ybin/ofpath: No longer refuse to function on ppc64 systems.

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./ybin/ofpath


2003-11-17 04:35:21 GMT	Ethan Benson <erbenson@alaska.net>	patch-59

    Summary:
      Fix ofpath for `scsi' ide controllers
    Revision:
      yaboot--devel--1.3--patch-59

    * ybin/ofpath: 
      - Generate correct paths for IDE controllers which
        pretend to be scsi.
      - Correct error message regarding CONFIG_SCSI_PROC_FS
        (=y not =n).

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./ybin/ofpath


2003-11-10 10:23:36 GMT	Ethan Benson <erbenson@alaska.net>	patch-58

    Summary:
      Fix ofpath 2.6 /proc/scsi check
    Revision:
      yaboot--devel--1.3--patch-58

    * ybin/ofpath: Move return to proper place so ofpath doesn't exit
      silently when scsi appears to not be installed and the system is
      running a 2.6 kernel.

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./ybin/ofpath


2003-11-10 08:52:02 GMT	Ethan Benson <erbenson@alaska.net>	patch-57

    Summary:
      Detect lack of CONFIG_SCSI_PROC_FS in ofpath on 2.6 systems
    Revision:
      yaboot--devel--1.3--patch-57

    * ybin/ofpath: Under 2.6 systems detect lack of CONFIG_SCSI_PROC_FS in
      kernel configuration and print error message indicating its required.

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./ybin/ofpath


2003-11-06 07:28:26 GMT	Ethan Benson <erbenson@alaska.net>	patch-56

    Summary:
      Add PowerMac G5 SATA support to ofpath
    Revision:
      yaboot--devel--1.3--patch-56

    * ybin/ofpath: Add support for SATA drives found in the PowerMac G5.
      (Olof Johansson <offe@localnet.sh>)

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./ybin/ofpath


2003-11-05 07:49:57 GMT	Ethan Benson <erbenson@alaska.net>	patch-55

    Summary:
      Bump version to unsupported non-release status
    Revision:
      yaboot--devel--1.3--patch-55

    * Bump version to unsupported non-release status.

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./Makefile ./ybin/ybin


2003-11-05 07:38:12 GMT	Ethan Benson <erbenson@alaska.net>	patch-54

    Summary:
      Update compatibility declaration for CHRPBOOT examples
    Revision:
      yaboot--devel--1.3--patch-54

    * doc/examples/simpleboot.chrp: MacRISC4 compatible.
    * doc/examples/dualboot.chrp: MacRISC4 compatible.

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./doc/examples/dualboot.chrp
     ./doc/examples/simpleboot.chrp


2003-11-04 09:19:11 GMT	Ethan Benson <erbenson@alaska.net>	patch-53

    Summary:
      Use OpenFirmware RELEASE method
    Revision:
      yaboot--devel--1.3--patch-53

    * second/prom.c: Use OpenFirmware's RELEASE method instead of the
      broken crap hack which broke on more recent Apple OpenFirmware.

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./second/prom.c


2003-10-04 23:58:34 GMT	Ethan Benson <erbenson@alaska.net>	patch-52

    Summary:
      Add boot compatibility with PowerMac G5
    Revision:
      yaboot--devel--1.3--patch-52

    * ofboot: Declare compatiblity with PowerMac G5 in.

    modified files:
     ./0arch-timestamps0 ./ChangeLog ./first/ofboot


2003-06-22 08:06:01 GMT	Ethan Benson <erbenson@alaska.net>	patch-51

    Summary:
      Update ChangeLog tag for compatiblity with arch 1.0pre25
    Revision:
      yaboot--devel--1.3--patch-51

    * Update ChangeLog tag for compatiblity with arch 1.0pre25.

    new files:
     .arch-ids/ChangeLog.id ChangeLog

    removed files:
     .arch-ids/ChangeLog.id ChangeLog

    modified files:
     0arch-timestamps0


2003-02-26 11:27:33 GMT	Ethan Benson <erbenson@alaska.net>	patch-50

    Summary:
      Fix ofpath on early iMacs
    Revision:
      yaboot--devel--1.3--patch-50

    * ofpath: Apple apparently can't decide whether its called `ata'
      or `ide'; fix support for early iMac models.
    
    * Prep 1.3.10.

    modified files:
     0arch-timestamps0 ChangeLog Makefile changelog ybin/ofpath
     ybin/ybin


2003-02-12 08:55:45 GMT	Ethan Benson <erbenson@alaska.net>	patch-49

    Summary:
      Prep 1.3.9 release
    Revision:
      yaboot--devel--1.3--patch-49

    * Prep 1.3.9 release:
      - Set version numbers to 1.3.9.
      - Finalize changelog.

    modified files:
     0arch-timestamps0 ChangeLog Makefile changelog ybin/ybin


2003-02-10 09:55:05 GMT	Ethan Benson <erbenson@alaska.net>	patch-48

    Summary:
      Fix botched IBM patch (multiple partition handling on rs6k)
    Revision:
      yaboot--devel--1.3--patch-48

    * IBM file.c patch is broken, fix file.c so yaboot finds its config on
      systems with more then one primary GNU/Linux filesystem partition.

    modified files:
     0arch-timestamps0 ChangeLog second/file.c


2003-02-09 05:28:41 GMT	Ethan Benson <erbenson@alaska.net>	patch-47

    Summary:
      Update first stage to be compatible with new Macs
    Revision:
      yaboot--devel--1.3--patch-47

    * Mark first stage loader compatible with new MacOS9-free PowerMacs so
      it will be accepted by OpenFirmware.
    * Update copyrights to include 2003.
    * Version 1.3.9-UNRELEASED.

    modified files:
     0arch-timestamps0 ChangeLog Makefile README TODO changelog
     doc/examples/dualboot.chrp doc/examples/simpleboot.chrp
     first/ofboot ybin/ofpath ybin/yabootconfig ybin/ybin


2002-12-10 08:14:21 GMT	Ethan Benson <erbenson@alaska.net>	patch-46

    Summary:
      Release yaboot 1.3.8
    Revision:
      yaboot--devel--1.3--patch-46

    * yaboot 1.3.8 release.

    modified files:
     0arch-timestamps0 ChangeLog Makefile changelog ybin/ofpath
     ybin/yabootconfig ybin/ybin


2002-11-27 09:42:23 GMT	Ethan Benson <erbenson@alaska.net>	patch-45

    Summary:
      Prepare 1.3.8-rc4
    Revision:
      yaboot--devel--1.3--patch-45

    * Bump versions to 1.3.8-rc4.

    modified files:
     0arch-timestamps0 ChangeLog Makefile changelog
     ybin/yabootconfig ybin/ybin


2002-11-27 09:35:34 GMT	Ethan Benson <erbenson@alaska.net>	patch-44

    Summary:
      Add 'kernel too old' warning to ofpath
    Revision:
      yaboot--devel--1.3--patch-44

    * ofpath: On Windtunnel warn when the kernel is too old for proper
      support.  The warning message is sent to stderr so it will not
      interfere with scripts or other automated invocation of ofpath.

    modified files:
     0arch-timestamps0 ChangeLog ybin/ofpath


2002-11-26 09:35:47 GMT	Ethan Benson <erbenson@alaska.net>	patch-43

    Summary:
      Fix ofpath on pci-ide
    Revision:
      yaboot--devel--1.3--patch-43

    * ofpath: check for pci-ide, not pci-ata.

    modified files:
     0arch-timestamps0 ChangeLog ybin/ofpath


2002-11-19 11:32:49 GMT	Ethan Benson <erbenson@alaska.net>	patch-42

    Summary:
      Fix readlink fallback
    Revision:
      yaboot--devel--1.3--patch-42

    * ofpath: fallback shell function for readlink was broken.  Fixes
      IDEBUS==NULL on broken systems that lack /bin/readlink.
    * Prepare 1.3.8-rc3.

    modified files:
     0arch-timestamps0 ChangeLog Makefile changelog ybin/ofpath
     ybin/ybin


2002-11-18 10:38:53 GMT	Ethan Benson <erbenson@alaska.net>	patch-41

    Summary:
      handle ide device nodes up to hdp
    Revision:
      yaboot--devel--1.3--patch-41

    * ofpath: handle ide device nodes up to /dev/hdp (16 disks, current
      max in the kernel).

    modified files:
     0arch-timestamps0 ChangeLog ybin/ofpath


2002-11-17 23:33:17 GMT	Ethan Benson <erbenson@alaska.net>	patch-40

    Summary:
      Add support for IDE controllers with identity crisis
    Revision:
      yaboot--devel--1.3--patch-40

    * ofpath: Add support for IDE controllers that pretend they are scsi.
    * Prepare 1.3.8-rc2.

    modified files:
     0arch-timestamps0 ChangeLog Makefile changelog ybin/ofpath
     ybin/yabootconfig ybin/ybin


2002-11-17 03:13:10 GMT	Ethan Benson <erbenson@alaska.net>	patch-39

    Summary:
      Prepare 1.3.8-rc1
    Revision:
      yaboot--devel--1.3--patch-39

    * Prefer $PATH_PREFIX/usr/sbin/ofpath if it exists.
    * yabootconfig: Add append="video=ofonly" if the running kernel
      was booted with it.  This solves user confusion when they boot an installer with an
      install-safe label, install, then reboot the new system to find the
      console display doesn't work.  This only occurs if user does not
      specify --kernel-args so it will not interfere with distro installers
      which handle this themselves.

    modified files:
     0arch-timestamps0 ChangeLog Makefile changelog ybin/ofpath
     ybin/yabootconfig ybin/ybin


2002-11-17 02:02:17 GMT	Ethan Benson <erbenson@alaska.net>	patch-38

    Summary:
      Add support for pci-ide to ofpath
    Revision:
      yaboot--devel--1.3--patch-38

    * ofpath: Support multi-channel pci-ide devices, found in the Xserve.

    modified files:
     0arch-timestamps0 ChangeLog ybin/ofpath


2002-11-03 02:00:27 GMT	Ethan Benson <erbenson@alaska.net>	patch-37

    Summary:
      Add extra sanity checks to new ofpath ide resolution code
    Revision:
      yaboot--devel--1.3--patch-37

    * ofpath: Add a few sanity checks to new ide resolution code.

    modified files:
     0arch-timestamps0 ChangeLog ybin/ofpath


2002-10-30 10:32:14 GMT	Ethan Benson <erbenson@alaska.net>	patch-36

    Summary:
      Update ofpath for new devspec export in /proc
    Revision:
      yaboot--devel--1.3--patch-36

    * ofpath: /proc/ide/pmac is dead, the OpenFirmware devspec is now
      exported to /proc/ide/ideX/devspec, ofpath now uses that.
      - this change is not tested, some additional sanity checks are still
        needed.

    modified files:
     0arch-timestamps0 ChangeLog ybin/ofpath


2002-10-27 00:57:19 GMT	Ethan Benson <erbenson@alaska.net>	patch-35

    Summary:
      Change ofpath to use /proc/ide/of1275 instead of /proc/ide/pmac
    Revision:
      yaboot--devel--1.3--patch-35

    * ofpath: the current incarnation of /proc/ide/pmac is not supported
      by ofpath, and I believe this file should be renamed since it should
      not be inherently pmac specific.  When the format of this file is
      updated it can be renamed at the same time.

    modified files:
     0arch-timestamps0 ChangeLog ybin/ofpath


2002-10-27 00:40:09 GMT	Ethan Benson <erbenson@alaska.net>	patch-34

    Summary:
      Add preliminary support for Windtunnel PowerMacs to ofpath
    Revision:
      yaboot--devel--1.3--patch-34

    * CHANGES IN THIS COMMIT ARE PRELIMINARY **DO NOT DISTRIBUTE**
    
    * ofpath: Add preliminary support for Windtunnel PowerMacs
      - If /proc/ide/pmac (perhaps to be renamed) does not exist and
        machine is a Windtunnel return ultra2: instead of hd: (this assumes
        machines without /proc/ide/pmac are also without support for ATA-100,
        ultra2: is the ATA-66 bus).
      - Parse a modified version of /proc/ide/pmac to determine the
        appropriate OpenFirmware device specifier, no kernel yet has the
        correct version of this file.

    modified files:
     ChangeLog Makefile ybin/ofpath ybin/ybin


2002-09-29 05:04:59 GMT	Ethan Benson <erbenson@alaska.net>	patch-33

    Summary:
      Fix spelling errors in changelog
    Revision:
      yaboot--devel--1.3--patch-33

    * Oops, fix some spelling errors and reburn 1.3.7.
    
    

    modified files:
     0arch-timestamps0 ChangeLog changelog


2002-09-28 22:51:44 GMT	Ethan Benson <erbenson@alaska.net>	patch-32

    Summary:
      Prepare 1.3.7 release
    Revision:
      yaboot--devel--1.3--patch-32

    * Bump versions to 1.3.7
    * Update changelog.
    * Mention new yaboot mailing lists in README.

    modified files:
     0arch-timestamps0 ChangeLog Makefile README changelog
     ybin/yabootconfig ybin/ybin


2002-09-15 03:56:45 GMT	Ethan Benson <erbenson@alaska.net>	patch-31

    Summary:
      Remove 0arch-timestamps0 in archclean target
    Revision:
      yaboot--devel--1.3--patch-31

    * Remove 0arch-timestamps0 in archclean target.
    
    

    modified files:
     0arch-timestamps0 ChangeLog Makefile


2002-09-15 03:28:32 GMT	Ethan Benson <erbenson@alaska.net>	patch-30

    Summary:
      Prepare 1.3.7-pre1
    Revision:
      yaboot--devel--1.3--patch-30

    * Update copyright notices for 2002.
    * Change Boot: to Stage 1 Boot: in ofboot.b
    * Update changelog.
    * Bump version to 1.3.7-pre1.

    modified files:
     0arch-timestamps0 ChangeLog Makefile README changelog
     doc/yaboot-howto.de.sgml doc/yaboot-howto.sgml first/ofboot
     second/cmdline.c second/file.c second/fs.c second/fs_ext2.c
     second/fs_of.c second/fs_xfs.c second/md5.c second/partition.c
     second/prom.c second/yaboot.c ybin/ofpath ybin/yabootconfig
     ybin/ybin


2002-09-08 00:17:53 GMT	Ethan Benson <erbenson@alaska.net>	patch-29

    Summary:
      update timestamp save file.
    Revision:
      yaboot--devel--1.3--patch-29

    * update timestamp save file.

    modified files:
     0arch-timestamps0 ChangeLog


2002-09-08 00:13:58 GMT	Ethan Benson <erbenson@alaska.net>	patch-28

    Summary:
      Fix partition file search
    Revision:
      yaboot--devel--1.3--patch-28

    * Change file_block_open() to check for FILE_OK rather then NULL
    return from fs_open().  When no partition is specified in a file open
    call yaboot will loop through all known partitions until the file is
    found, or no more partitions are left.  In older versions fs_open()
    would check for FILE_OK, so checking for NULL return from fs_open()
    worked, in current versions fs_open() checks for BADFS so proper
    errors can be reported.  This only really affects IBM CHRP.
    

    modified files:
     ChangeLog second/file.c


2002-08-18 22:33:31 GMT	Ethan Benson <erbenson@alaska.net>	patch-27

    Summary:
      make version numbers loudly unsupported due to dumb dist maintainers
    Revision:
      yaboot--devel--1.3--patch-27

    * make version numbers loudly unsupported due to dumb dist
      maintainers, real versions not in place till release time.  UNRELEASED
      SOFTWARE SHOULD NOT BE PACKAGED.

    modified files:
     0arch-timestamps0 ChangeLog Makefile ybin/yabootconfig
     ybin/ybin


2002-08-15 07:26:38 GMT	Ethan Benson <erbenson@alaska.net>	patch-26

    Summary:
      Bump yabootconfig version
    Revision:
      yaboot--devel--1.3--patch-26

    * Bump yabootconfig version number.
    
    

    modified files:
     0arch-timestamps0 ChangeLog ybin/yabootconfig


2002-08-15 07:24:35 GMT	Ethan Benson <erbenson@alaska.net>	patch-25

    Summary:
      Fix rare fstab parsing bug in yabootconfig
    Revision:
      yaboot--devel--1.3--patch-25

    * Fix a rare parsing bug in yabootconfig's /etc/fstab parsing. If the
      user had commented entries for the / filesystem yabootconfig would end
      up detecting one of those.

    modified files:
     0arch-timestamps0 ChangeLog ybin/yabootconfig


2002-07-29 08:01:44 GMT	Ethan Benson <erbenson@alaska.net>	patch-24

    Summary:
      Don't recommend reporting bugs to benh in yabootconfig(8)
    Revision:
      yaboot--devel--1.3--patch-24

    * Don't recommend reporting bugs to benh in yabootconfig(8).
    
    
    

    modified files:
     0arch-timestamps0 ChangeLog man/yabootconfig.8


2002-07-03 08:17:12 GMT	Ethan Benson <erbenson@alaska.net>	patch-23

    Summary:
      Fix reiserfs symlink resolution
    Revision:
      yaboot--devel--1.3--patch-23

    * Fix reiserfs symlink resolution which could fail in certain circumstances.
    
    

    modified files:
     0arch-timestamps0 ChangeLog include/reiserfs/reiserfs.h


2002-05-29 08:50:39 GMT	Ethan Benson <erbenson@alaska.net>	patch-22

    Summary:
      Update timestamp file to exclude {arch}/*
    Revision:
      yaboot--devel--1.3--patch-22

    Update timestamp file to exclude {arch}/*.
    
    
    

    modified files:
     0arch-timestamps0 ChangeLog


2002-05-04 13:00:23 GMT	Ethan Benson <erbenson@alaska.net>	patch-21

    Summary:
      Add 0arch-timestamps0 setftime timestamp database
    Revision:
      yaboot--devel--1.3--patch-21

    Add 0arch-timestamps0 setftime timestamp database.  This allows us to
    work around arch's lack of preserving timestamps.
    

    new files:
     .arch-ids/0arch-timestamps0.id 0arch-timestamps0

    modified files:
     ChangeLog


2002-04-20 13:52:09 GMT	Ethan Benson <erbenson@alaska.net>	patch-20

    Summary:
      Update upstream notice in yaboot-howto, translate it to de.
    Revision:
      yaboot--devel--1.3--patch-20

    * Update upstream notice in yaboot-howto, translate it to de.

    modified files:
     ChangeLog doc/yaboot-howto.de.sgml doc/yaboot-howto.sgml


2002-03-31 05:21:42 GMT	Ethan Benson <erbenson@alaska.net>	patch-19

    Summary:
      Remove more arch crap in clean target
    Revision:
      yaboot--devel--1.3--patch-19

    * Remove ,,* in clean target, this is more crap arch leaves laying around.

    modified files:
     ChangeLog Makefile


2002-03-31 05:11:46 GMT	Ethan Benson <erbenson@alaska.net>	patch-18

    Summary:
      Fix make clean from previous patch
    Revision:
      yaboot--devel--1.3--patch-18

    find man page is on crack.  Fix find calls my way which appears to work correctly.

    modified files:
     ChangeLog Makefile


2002-03-31 05:00:26 GMT	Ethan Benson <erbenson@alaska.net>	patch-17

    Summary:
      Update clean targets
    Revision:
      yaboot--devel--1.3--patch-17

    * Remove chmod calls from make clean, arch is supposed to keep track
      of permissions correctly so they shouldn't be needed now.
    
    * Add '-path './{arch}' -prune -o ' to all the find calls so cleaning
      doesn't recurse into arch's revision control directories and possibly
      corrupt them.
    
    * Add archclean target which removes all of arch's cruft so release
      tarballs won't be ridiculously bloated (arch keeps a complete
      duplicate copy of the source making the tarball twice the size it
      should be, no good for release tarballs).  If people want a `archable'
      tree they should just use arch to check one out.

    modified files:
     ChangeLog Makefile


2002-03-27 14:10:34 GMT	Ethan Benson <erbenson@alaska.net>	patch-16

    Summary:
      sync with latest yaboot CVS
    Revision:
      yaboot--devel--1.3--patch-16

    Add german howto for yaboot-howto.
    
    Typo fixes/minor updates to yaboot-howto.
    
    small fixes to elfextract.
    
    

    new files:
     doc/.arch-ids/yaboot-howto.de.sgml.id doc/yaboot-howto.de.sgml

    modified files:
     ChangeLog Makefile doc/Makefile doc/yaboot-howto.sgml
     util/elfextract.c


2002-03-27 13:55:42 GMT	Ethan Benson <erbenson@alaska.net>	patch-15

    Summary:
      Commit yaboot 1.3.6
    Revision:
      yaboot--devel--1.3--patch-15

    Commit yaboot 1.3.6.

    modified files:
     ChangeLog Makefile changelog doc/README.rs6000
     doc/yaboot-howto.sgml include/bootinfo.h include/cfg.h
     include/cmdline.h include/debug.h include/errors.h
     include/fdisk-part.h include/file.h include/fs.h
     include/mac-part.h include/partition.h include/prom.h
     include/yaboot.h lib/malloc.c lib/string.S second/cache.S
     second/cfg.c second/cmdline.c second/file.c second/fs.c
     second/fs_ext2.c second/fs_iso.c second/fs_of.c
     second/fs_reiserfs.c second/fs_xfs.c second/md5.c
     second/partition.c second/prom.c second/yaboot.c
     util/addnote.c util/elfextract.c ybin/ybin


2002-03-27 13:45:22 GMT	Ethan Benson <erbenson@alaska.net>	patch-14

    Summary:
      Commit yaboot 1.3.6-pre2
    Revision:
      yaboot--devel--1.3--patch-14

    Commit yaboot 1.3.6-pre2.

    modified files:
     ChangeLog Makefile TODO changelog man/yabootconfig.8
     second/file.c second/yaboot.c ybin/ybin


2002-03-27 13:37:21 GMT	Ethan Benson <erbenson@alaska.net>	patch-13

    Summary:
      Commit yaboot 1.3.6-pre1
    Revision:
      yaboot--devel--1.3--patch-13

    Commit yaboot 1.3.6-pre1.

    modified files:
     ChangeLog Makefile README THANKS TODO changelog
     doc/README.rs6000 doc/examples/simpleboot.chrp
     doc/examples/yaboot.conf.multi-boot
     doc/examples/yaboot.conf.rs6000 etc/yaboot.conf man.patch
     man/mkofboot.8 man/yaboot.8 man/ybin.8 second/file.c
     second/yaboot.c ybin/yabootconfig ybin/ybin

    renamed files:
     doc/examples/.arch-ids/yaboot.conf.rs6k.id
       ==> doc/examples/.arch-ids/yaboot.conf.rs6000.id
     doc/examples/yaboot.conf.rs6k
       ==> doc/examples/yaboot.conf.rs6000


2002-03-27 13:30:47 GMT	Ethan Benson <erbenson@alaska.net>	patch-12

    Summary:
      Commit yaboot 1.3.5
    Revision:
      yaboot--devel--1.3--patch-12

    Commit yaboot 1.3.5.

    new files:
     doc/.arch-ids/Makefile.id doc/.arch-ids/yaboot-howto.sgml.id
     doc/Makefile doc/yaboot-howto.sgml

    modified files:
     ChangeLog Makefile THANKS changelog man.patch
     man/yaboot.conf.5 ybin/ybin


2002-03-27 13:25:55 GMT	Ethan Benson <erbenson@alaska.net>	patch-11

    Summary:
      Commit yaboot 1.3.5-pre3
    Revision:
      yaboot--devel--1.3--patch-11

    Commit yaboot 1.3.5-pre3.

    modified files:
     ChangeLog Makefile man.patch man/yaboot.conf.5 second/yaboot.c
     ybin/ybin


2002-03-27 13:22:23 GMT	Ethan Benson <erbenson@alaska.net>	patch-10

    Summary:
      Commit yaboot 1.3.5-pre2
    Revision:
      yaboot--devel--1.3--patch-10

    Commit yaboot 1.3.5-pre2.

    modified files:
     ChangeLog Makefile changelog man.patch man/yaboot.conf.5
     second/fs_ext2.c second/prom.c second/yaboot.c ybin/ybin


2002-03-26 15:11:26 GMT	Ethan Benson <erbenson@alaska.net>	patch-9

    Summary:
      Commit yaboot 1.3.5-pre1
    Revision:
      yaboot--devel--1.3--patch-9

    Commit yaboot 1.3.5-pre1.

    removed files:
     include/et/.arch-ids/com_err.c.id include/et/com_err.c

    modified files:
     ChangeLog Makefile TODO changelog include/bootinfo.h
     include/ctype.h include/debug.h include/ext2fs/bitops.h
     include/ext2fs/ext2_err.h include/ext2fs/ext2_io.h
     include/ext2fs/ext2fs.h lib/libext2fs.a second/cfg.c
     second/file.c second/fs.c second/fs_ext2.c second/fs_iso.c
     second/fs_of.c second/fs_reiserfs.c second/fs_xfs.c
     second/iso_util.c second/partition.c second/prom.c
     second/yaboot.c util/addnote.c ybin/ybin


2002-03-26 15:05:27 GMT	Ethan Benson <erbenson@alaska.net>	patch-8

    Summary:
      Commit yaboot 1.3.4
    Revision:
      yaboot--devel--1.3--patch-8

    Commit yaboot 1.3.4.

    modified files:
     ChangeLog Makefile changelog include/bootinfo.h
     include/ctype.h include/debug.h include/file.h second/cfg.c
     second/file.c second/fs.c second/fs_ext2.c second/fs_iso.c
     second/iso_util.c second/partition.c second/prom.c
     second/yaboot.c util/addnote.c ybin/ybin


2002-03-26 15:00:49 GMT	Ethan Benson <erbenson@alaska.net>	patch-7

    Summary:
      Commit yaboot 1.3.4-pre3
    Revision:
      yaboot--devel--1.3--patch-7

    Commit yaboot 1.3.4-pre3.

    new files:
     include/.arch-ids/debug.h.id include/debug.h

    modified files:
     ChangeLog Makefile changelog include/errors.h include/file.h
     include/fs.h include/partition.h include/prom.h second/cfg.c
     second/file.c second/fs_ext2.c second/fs_of.c
     second/fs_reiserfs.c second/fs_xfs.c second/partition.c
     second/prom.c second/yaboot.c ybin/ybin


2002-03-26 14:42:58 GMT	Ethan Benson <erbenson@alaska.net>	patch-6

    Summary:
      Commit yaboot 1.3.4-pre2
    Revision:
      yaboot--devel--1.3--patch-6

    Commit yaboot 1.3.4-pre2.

    modified files:
     ChangeLog Makefile changelog second/file.c second/yaboot.c
     ybin/ybin


2002-03-25 15:13:19 GMT	Ethan Benson <erbenson@alaska.net>	patch-5

    Summary:
      Commit yaboot 1.3.4-pre1
    Revision:
      yaboot--devel--1.3--patch-5

    Commit yaboot 1.3.4-pre1.

    new files:
     include/xfs/.arch-ids/=id include/xfs/.arch-ids/xfs.h.id
     include/.arch-ids/errors.h.id second/.arch-ids/fs_xfs.c.id
     .arch-ids/Config.id include/xfs/xfs.h include/errors.h
     second/fs_xfs.c Config

    removed files:
     include/.arch-ids/gui.h.id include/.arch-ids/video.h.id
     second/gui/.arch-ids/=id second/gui/.arch-ids/colormap.c.id
     second/gui/.arch-ids/effects.c.id
     second/gui/.arch-ids/pcx.c.id second/gui/.arch-ids/video.c.id
     include/gui.h include/video.h second/gui/colormap.c
     second/gui/effects.c second/gui/pcx.c second/gui/video.c

    modified files:
     ChangeLog Makefile THANKS changelog include/file.h
     include/fs.h include/prom.h include/string.h include/yaboot.h
     lib/malloc.c second/cfg.c second/file.c second/fs.c
     second/fs_ext2.c second/fs_iso.c second/fs_of.c
     second/fs_reiserfs.c second/partition.c second/prom.c
     second/yaboot.c util/addnote.c ybin/ybin

    new directories:
     include/xfs/.arch-ids include/xfs

    removed directories:
     second/gui/.arch-ids second/gui


2002-03-25 14:50:10 GMT	Ethan Benson <erbenson@alaska.net>	patch-4

    Summary:
      Commit yaboot 1.3.3
    Revision:
      yaboot--devel--1.3--patch-4

    Commit yaboot 1.3.3.

    modified files:
     ChangeLog Makefile changelog first/ofboot man.patch
     man/yaboot.conf.5 man/yabootconfig.8 ybin/yabootconfig
     ybin/ybin


2002-03-25 14:28:05 GMT	Ethan Benson <erbenson@alaska.net>	patch-3

    Summary:
      Commit yaboot 1.3.2
    Revision:
      yaboot--devel--1.3--patch-3

    Commit yaboot 1.3.2.

    modified files:
     ChangeLog Makefile changelog ybin/ybin


2002-03-25 14:05:52 GMT	Ethan Benson <erbenson@alaska.net>	patch-2

    Summary:
      Commit yaboot 1.3.1
    Revision:
      yaboot--devel--1.3--patch-2

    Commit yaboot 1.3.1.

    modified files:
     ChangeLog Makefile changelog doc/README.rs6000 ybin/ybin


2002-03-25 07:43:37 GMT	Ethan Benson <erbenson@alaska.net>	patch-1

    Summary:
      Commit yaboot 1.3.0
    Revision:
      yaboot--devel--1.3--patch-1

    Commit yaboot 1.3.0.

    new files:
     .arch-ids/BUGS.id .arch-ids/COPYING.id .arch-ids/INSTALL.id
     .arch-ids/Makefile.id .arch-ids/README.id
     .arch-ids/README.man.patch.id .arch-ids/THANKS.id
     .arch-ids/TODO.id .arch-ids/changelog.id doc/.arch-ids/=id
     doc/.arch-ids/README.ofboot.id doc/.arch-ids/README.ofpath.id
     doc/.arch-ids/README.rs6000.id doc/examples/.arch-ids/=id
     doc/examples/.arch-ids/README.dualboot.chrp.id
     doc/examples/.arch-ids/README.mbicons.id
     doc/examples/.arch-ids/README.simpleboot.chrp.id
     doc/examples/.arch-ids/dualboot.chrp.id
     doc/examples/.arch-ids/large-penguin.mbicon.id
     doc/examples/.arch-ids/simpleboot.chrp.id
     doc/examples/.arch-ids/yaboot.conf.multi-boot.id
     doc/examples/.arch-ids/yaboot.conf.rs6k.id etc/.arch-ids/=id
     etc/.arch-ids/yaboot.conf.id first/.arch-ids/=id
     first/.arch-ids/ofboot.id include/.arch-ids/=id
     include/asm/.arch-ids/=id include/asm/.arch-ids/elf.h.id
     include/asm/.arch-ids/ppc_asm.tmpl.id
     include/asm/.arch-ids/processor.h.id
     include/.arch-ids/bootinfo.h.id
     include/.arch-ids/byteorder.h.id include/.arch-ids/cfg.h.id
     include/.arch-ids/cmdline.h.id include/.arch-ids/ctype.h.id
     include/et/.arch-ids/=id include/et/.arch-ids/com_err.c.id
     include/et/.arch-ids/com_err.h.id include/ext2fs/.arch-ids/=id
     include/ext2fs/.arch-ids/bitops.h.id
     include/ext2fs/.arch-ids/ext2_err.h.id
     include/ext2fs/.arch-ids/ext2_io.h.id
     include/ext2fs/.arch-ids/ext2fs.h.id
     include/.arch-ids/fdisk-part.h.id include/.arch-ids/file.h.id
     include/.arch-ids/fs.h.id include/.arch-ids/gui.h.id
     include/linux/.arch-ids/=id include/linux/.arch-ids/elf.h.id
     include/linux/.arch-ids/ext2_fs.h.id
     include/linux/.arch-ids/iso_fs.h.id
     include/linux/.arch-ids/stat.h.id
     include/linux/.arch-ids/types.h.id
     include/.arch-ids/mac-part.h.id include/.arch-ids/md5.h.id
     include/.arch-ids/partition.h.id include/.arch-ids/prom.h.id
     include/reiserfs/.arch-ids/=id
     include/reiserfs/.arch-ids/reiserfs.h.id
     include/.arch-ids/setjm2.h.id include/.arch-ids/setjmp.h.id
     include/.arch-ids/stdlib.h.id include/.arch-ids/string.h.id
     include/.arch-ids/swab.h.id include/.arch-ids/types.h.id
     include/.arch-ids/video.h.id include/.arch-ids/yaboot.h.id
     lib/.arch-ids/=id lib/.arch-ids/ctype.c.id
     lib/.arch-ids/libext2fs.a.id lib/.arch-ids/malloc.c.id
     lib/.arch-ids/nosys.c.id lib/.arch-ids/string.S.id
     lib/.arch-ids/strstr.c.id lib/.arch-ids/strtol.c.id
     lib/.arch-ids/vsprintf.c.id man/.arch-ids/=id
     man/.arch-ids/bootstrap.8.id man/.arch-ids/mkofboot.8.id
     man/.arch-ids/ofpath.8.id man/.arch-ids/yaboot.8.id
     man/.arch-ids/yaboot.conf.5.id man/.arch-ids/yabootconfig.8.id
     man/.arch-ids/ybin.8.id .arch-ids/man.patch.id
     second/.arch-ids/=id second/.arch-ids/cache.S.id
     second/.arch-ids/cfg.c.id second/.arch-ids/cmdline.c.id
     second/.arch-ids/crt0.S.id second/.arch-ids/file.c.id
     second/.arch-ids/fs.c.id second/.arch-ids/fs_ext2.c.id
     second/.arch-ids/fs_iso.c.id second/.arch-ids/fs_of.c.id
     second/.arch-ids/fs_reiserfs.c.id second/gui/.arch-ids/=id
     second/gui/.arch-ids/colormap.c.id
     second/gui/.arch-ids/effects.c.id
     second/gui/.arch-ids/pcx.c.id second/gui/.arch-ids/video.c.id
     second/.arch-ids/iso_util.c.id second/.arch-ids/md5.c.id
     second/.arch-ids/partition.c.id second/.arch-ids/prom.c.id
     second/.arch-ids/setjmp.S.id second/.arch-ids/yaboot.c.id
     util/.arch-ids/=id util/.arch-ids/addnote.c.id
     util/.arch-ids/elfextract.c.id ybin/.arch-ids/=id
     ybin/.arch-ids/mkofboot.id ybin/.arch-ids/ofpath.id
     ybin/.arch-ids/yabootconfig.id ybin/.arch-ids/ybin.id BUGS
     COPYING INSTALL Makefile README README.man.patch THANKS TODO
     changelog doc/README.ofboot doc/README.ofpath
     doc/README.rs6000 doc/examples/README.dualboot.chrp
     doc/examples/README.mbicons
     doc/examples/README.simpleboot.chrp doc/examples/dualboot.chrp
     doc/examples/large-penguin.mbicon doc/examples/simpleboot.chrp
     doc/examples/yaboot.conf.multi-boot
     doc/examples/yaboot.conf.rs6k etc/yaboot.conf first/ofboot
     include/asm/elf.h include/asm/ppc_asm.tmpl
     include/asm/processor.h include/bootinfo.h include/byteorder.h
     include/cfg.h include/cmdline.h include/ctype.h
     include/et/com_err.c include/et/com_err.h
     include/ext2fs/bitops.h include/ext2fs/ext2_err.h
     include/ext2fs/ext2_io.h include/ext2fs/ext2fs.h
     include/fdisk-part.h include/file.h include/fs.h include/gui.h
     include/linux/elf.h include/linux/ext2_fs.h
     include/linux/iso_fs.h include/linux/stat.h
     include/linux/types.h include/mac-part.h include/md5.h
     include/partition.h include/prom.h include/reiserfs/reiserfs.h
     include/setjm2.h include/setjmp.h include/stdlib.h
     include/string.h include/swab.h include/types.h
     include/video.h include/yaboot.h lib/ctype.c lib/libext2fs.a
     lib/malloc.c lib/nosys.c lib/string.S lib/strstr.c
     lib/strtol.c lib/vsprintf.c man/bootstrap.8 man/mkofboot.8
     man/ofpath.8 man/yaboot.8 man/yaboot.conf.5 man/yabootconfig.8
     man/ybin.8 man.patch second/cache.S second/cfg.c
     second/cmdline.c second/crt0.S second/file.c second/fs.c
     second/fs_ext2.c second/fs_iso.c second/fs_of.c
     second/fs_reiserfs.c second/gui/colormap.c
     second/gui/effects.c second/gui/pcx.c second/gui/video.c
     second/iso_util.c second/md5.c second/partition.c
     second/prom.c second/setjmp.S second/yaboot.c util/addnote.c
     util/elfextract.c ybin/mkofboot ybin/ofpath ybin/yabootconfig
     ybin/ybin

    modified files:
     ChangeLog

    new directories:
     doc/.arch-ids doc/examples/.arch-ids etc/.arch-ids
     first/.arch-ids include/.arch-ids include/asm/.arch-ids
     include/et/.arch-ids include/ext2fs/.arch-ids
     include/linux/.arch-ids include/reiserfs/.arch-ids
     lib/.arch-ids man/.arch-ids second/.arch-ids
     second/gui/.arch-ids util/.arch-ids ybin/.arch-ids doc
     doc/examples etc first include include/asm include/et
     include/ext2fs include/linux include/reiserfs lib man second
     second/gui util ybin


2002-03-25 03:28:42 GMT	Ethan Benson <erbenson@alaska.net>	base-0

    Summary:
      Create yaboot arch repo
    Revision:
      yaboot--devel--1.3--base-0

    Create yaboot arch repo.

    new files:
     ./.arch-ids/ChangeLog.id ./ChangeLog