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
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
|
This patch is just autogenerated stuff, do not hack directly on it.
Regenerate with:
autoreconf -fis
find -name autom4te.cache | xargs rm -rf
--- config.h.in 2007-03-06 06:42:34.000000000 +0200
+++ config.h.in 2007-03-06 07:08:00.000000000 +0200
@@ -43,6 +43,9 @@
/* option floppy: Linux device driver for PC floppy */
#undef CONFIG_BLK_DEV_FD
+/* Force DMA on IDE block devices */
+#undef CONFIG_BLK_DEV_FORCE_DMA
+
/* option ide: Linux device driver for IDE disk controllers */
#undef CONFIG_BLK_DEV_IDE
@@ -319,6 +322,9 @@
/* option seeq8005: Linux device driver for Ethernet controller Seeq8005 */
#undef CONFIG_SEEQ8005
+/* option sis900: Linux device driver for Ethernet controller SiS 900 */
+#undef CONFIG_SIS900
+
/* option sk_g16: Linux device driver for Ethernet controller Schneider & Koch
G16 */
#undef CONFIG_SK_G16
--- config.h.in~ 1970-01-01 02:00:00.000000000 +0200
+++ config.h.in~ 2007-03-06 06:42:34.000000000 +0200
@@ -0,0 +1,508 @@
+/* config.h.in. Generated from configure.ac by autoheader. */
+
+/* AT386 */
+#undef AT386
+
+/* BOOTSTRAP_SYMBOLS */
+#undef BOOTSTRAP_SYMBOLS
+
+/* CMU */
+#undef CMU
+
+/* option 3c515: Linux device driver for Ethernet controller 3Com 515 ISA Fast
+ EtherLink */
+#undef CONFIG_3C515
+
+/* option 3c574_cs: Linux device driver for 3Com 3c574 ``RoadRunner'' PCMCIA
+ Ethernet */
+#undef CONFIG_3C574_CS
+
+/* option 3c589_cs: Linux device driver for 3Com 3c589 PCMCIA Ethernet card */
+#undef CONFIG_3C589_CS
+
+/* option ac3200: Linux device driver for Ethernet controller Ansel
+ Communications EISA 3200 */
+#undef CONFIG_AC3200
+
+/* option apricot: Linux device driver for Ethernet controller Apricot XEN-II
+ on board ethernet */
+#undef CONFIG_APRICOT
+
+/* option at1700: Linux device driver for Ethernet controller AT1700 (Fujitsu
+ 86965) */
+#undef CONFIG_AT1700
+
+/* option atp: Linux device driver for Ethernet controller AT-LAN-TEC/RealTek
+ pocket adaptor */
+#undef CONFIG_ATP
+
+/* option axnet_cs: Linux device driver for Asix AX88190-based PCMCIA Ethernet
+ adapters */
+#undef CONFIG_AXNET_CS
+
+/* option floppy: Linux device driver for PC floppy */
+#undef CONFIG_BLK_DEV_FD
+
+/* option ide: Linux device driver for IDE disk controllers */
+#undef CONFIG_BLK_DEV_IDE
+
+/* option de4x5: Linux device driver for Ethernet controller DE4x5 (de4x5,
+ de425, de434, de435, de450, de500) */
+#undef CONFIG_DE4X5
+
+/* option de600: Linux device driver for Ethernet controller D-Link DE-600 */
+#undef CONFIG_DE600
+
+/* option de620: Linux device driver for Ethernet controller D-Link DE-620 */
+#undef CONFIG_DE620
+
+/* option tulip: Linux device driver for Ethernet controller DECchip Tulip
+ (dc21x4x) PCI (elcp, tulip) */
+#undef CONFIG_DEC_ELCP
+
+/* option depca: Linux device driver for Ethernet controller DEPCA (de100,
+ de101, de200, de201, de202, de210, de422) */
+#undef CONFIG_DEPCA
+
+/* option e2100: Linux device driver for Ethernet controller Cabletron E21xx
+ */
+#undef CONFIG_E2100
+
+/* option eexpress: Linux device driver for Ethernet controller EtherExpress
+ 16 */
+#undef CONFIG_EEXPRESS
+
+/* option eepro: Linux device driver for Ethernet controller EtherExpressPro
+ */
+#undef CONFIG_EEXPRESS_PRO
+
+/* option eepro100: Linux device driver for Ethernet controller Intel
+ EtherExpressPro PCI 10+/100B/100+ */
+#undef CONFIG_EEXPRESS_PRO100B
+
+/* option 3c501: Linux device driver for Ethernet controller 3COM 501 (3c501)
+ / Etherlink I */
+#undef CONFIG_EL1
+
+/* option 3c507: Linux device driver for Ethernet controller 3Com 507 (3c507,
+ el16) */
+#undef CONFIG_EL16
+
+/* option 3c503: Linux device driver for Ethernet controller 3Com 503 (3c503)
+ / Etherlink II */
+#undef CONFIG_EL2
+
+/* option 3c509: Linux device driver for Ethernet controller 3Com 509/579
+ (3c509, 3c579) / Etherlink III */
+#undef CONFIG_EL3
+
+/* option 3c505: Linux device driver for Ethernet controller 3Com 505 (3c505,
+ elplus) */
+#undef CONFIG_ELPLUS
+
+/* option epic100: Linux device driver for Ethernet controller SMC 83c170/175
+ EPIC/100 (epic, epic100) / EtherPower II */
+#undef CONFIG_EPIC
+
+/* option eth16i: Linux device driver for Ethernet controller ICL EtherTeam
+ 16i/32 (eth16i, eth32) */
+#undef CONFIG_ETH16I
+
+/* option ewrk3: Linux device driver for Ethernet controller EtherWORKS 3
+ (ewrk3, de203, de204, de205) */
+#undef CONFIG_EWRK3
+
+/* option fmv18x: Linux device driver for Ethernet controller
+ FMV-181/182/183/184 */
+#undef CONFIG_FMV18X
+
+/* option fmvj18x_cs: Linux device driver for fmvj18x chipset based PCMCIA
+ Ethernet cards */
+#undef CONFIG_FMVJ18X_CS
+
+/* option hamachi: Linux device driver for Ethernet controller Packet Engines
+ "Hamachi" GNIC-2 Gigabit Ethernet */
+#undef CONFIG_HAMACHI
+
+/* option hp100: Linux device driver for Ethernet controller HP 10/100VG PCLAN
+ (ISA, EISA, PCI) (hp100, hpj2577, hpj2573, hpj2585, hp27248b) */
+#undef CONFIG_HP100
+
+/* option hp: Linux device driver for Ethernet controller HP PCLAN (27245 and
+ other 27xxx series) */
+#undef CONFIG_HPLAN
+
+/* option hp-plus: Linux device driver for Ethernet controller HP PCLAN+
+ (27247B and 27252A) */
+#undef CONFIG_HPLAN_PLUS
+
+/* option i82365: Linux device driver for Intel 82365 PC Card controller */
+#undef CONFIG_I82365
+
+/* CONFIG_INET */
+#undef CONFIG_INET
+
+/* option intel-gige: Linux device driver for Ethernet controller Intel PCI
+ Gigabit Ethernet */
+#undef CONFIG_INTEL_GIGE
+
+/* option pcmcia-isa: isa bus support in the pcmcia core */
+#undef CONFIG_ISA
+
+/* option lance: Linux device driver for Ethernet controller AMD LANCE and
+ PCnet (at1500, ne2100) */
+#undef CONFIG_LANCE
+
+/* 386 */
+#undef CONFIG_M386
+
+/* 486 */
+#undef CONFIG_M486
+
+/* 586 */
+#undef CONFIG_M586
+
+/* 686 */
+#undef CONFIG_M686
+
+/* option myson803: Linux device driver for Ethernet controller Myson MTD803
+ Ethernet adapter series */
+#undef CONFIG_MYSON803
+
+/* option natsemi: Linux device driver for Ethernet controller National
+ Semiconductor DP8381x series PCI Ethernet */
+#undef CONFIG_NATSEMI
+
+/* option ne: Linux device driver for Ethernet controller NE2000/NE1000 ISA
+ (ne, ne1000, ne2000) */
+#undef CONFIG_NE2000
+
+/* option ne2k-pci: Linux device driver for Ethernet controller PCI NE2000 */
+#undef CONFIG_NE2K_PCI
+
+/* option ni52: Linux device driver for Ethernet controller NI5210 */
+#undef CONFIG_NI52
+
+/* option ni65: Linux device driver for Ethernet controller NI6510 */
+#undef CONFIG_NI65
+
+/* option nmclan_cs: Linux device driver for New Media Ethernet LAN PCMCIA
+ cards */
+#undef CONFIG_NMCLAN_CS
+
+/* option ns820: Linux device driver for Ethernet controller National
+ Semiconductor DP8382x series PCI Ethernet */
+#undef CONFIG_NS820
+
+/* option orinoco_cs: Linux device driver for Hermes or Prism 2 PCMCIA
+ Wireless adapters (Orinoco) */
+#undef CONFIG_ORINOCO_CS
+
+/* CONFIG_PCMCIA */
+#undef CONFIG_PCMCIA
+
+/* option pcnet32: Linux device driver for Ethernet controller AMD PCI PCnet32
+ (PCI bus NE2100 cards) */
+#undef CONFIG_PCNET32
+
+/* option pcnet_cs: Linux device driver for NS8390-based PCMCIA cards */
+#undef CONFIG_PCNET_CS
+
+/* option rtl8139: Linux device driver for Ethernet controller RealTek
+ 8129/8139 (rtl8129, rtl8139) (not 8019/8029!) */
+#undef CONFIG_RTL8139
+
+/* CONFIG_SCSI */
+#undef CONFIG_SCSI
+
+/* option wd7000: Linux device driver for SCSI controller WD 7000 */
+#undef CONFIG_SCSI_7000FASST
+
+/* option advansys: Linux device driver for SCSI controller AdvanSys */
+#undef CONFIG_SCSI_ADVANSYS
+
+/* option aha152x: Linux device driver for SCSI controller Adaptec
+ AHA-152x/2825 (aha152x, aha2825) */
+#undef CONFIG_SCSI_AHA152X
+
+/* option aha1542: Linux device driver for SCSI controller Adaptec AHA-1542 */
+#undef CONFIG_SCSI_AHA1542
+
+/* option aha1740: Linux device driver for SCSI controller Adaptec AHA-1740 */
+#undef CONFIG_SCSI_AHA1740
+
+/* option aic7xxx: Linux device driver for SCSI controller Adaptec AIC7xxx */
+#undef CONFIG_SCSI_AIC7XXX
+
+/* option AM53C974: Linux device driver for SCSI controller AM53/79C974
+ (am53c974, am79c974) */
+#undef CONFIG_SCSI_AM53C974
+
+/* option BusLogic: Linux device driver for SCSI controller BusLogic */
+#undef CONFIG_SCSI_BUSLOGIC
+
+/* option tmscsim: Linux device driver for SCSI controller Tekram DC-390(T)
+ (dc390, dc390t) */
+#undef CONFIG_SCSI_DC390T
+
+/* option dtc: Linux device driver for SCSI controller DTC3180/3280 (dtc3180,
+ dtc3280) */
+#undef CONFIG_SCSI_DTC3280
+
+/* option eata: Linux device driver for SCSI controller EATA ISA/EISA/PCI (DPT
+ and generic EATA/DMA-compliant boards) */
+#undef CONFIG_SCSI_EATA
+
+/* option eata_dma: Linux device driver for SCSI controller EATA-DMA (DPT,
+ NEC, AT&T, SNI, AST, Olivetti, Alphatronix) */
+#undef CONFIG_SCSI_EATA_DMA
+
+/* option eata_pio: Linux device driver for SCSI controller EATA-PIO (old DPT
+ PM2001, PM2012A) */
+#undef CONFIG_SCSI_EATA_PIO
+
+/* option fdomain: Linux device driver for SCSI controller Future Domain 16xx
+ */
+#undef CONFIG_SCSI_FUTURE_DOMAIN
+
+/* option gdth: Linux device driver for GDT SCSI Disk Array Controller */
+#undef CONFIG_SCSI_GDTH
+
+/* option g_NCR5380: Linux device driver for SCSI controller Generic
+ NCR5380/53c400 (ncr5380, ncr53c400) */
+#undef CONFIG_SCSI_GENERIC_NCR5380
+
+/* option in2000: Linux device driver for SCSI controller Always IN 2000 */
+#undef CONFIG_SCSI_IN2000
+
+/* option NCR53c406a: Linux device driver for SCSI controller NCR53c406a chip
+ */
+#undef CONFIG_SCSI_NCR53C406A
+
+/* option 53c78xx: Linux device driver for SCSI controller NCR 53C7,8xx */
+#undef CONFIG_SCSI_NCR53C7xx
+
+/* option ncr53c8xx: Linux device driver for SCSI controller NCR53C8XX
+ (ncr53c8xx, dc390f, dc390u, dc390w) */
+#undef CONFIG_SCSI_NCR53C8XX
+
+/* scsi omit flashpoint */
+#undef CONFIG_SCSI_OMIT_FLASHPOINT
+
+/* option pas16: Linux device driver for SCSI controller PAS16 */
+#undef CONFIG_SCSI_PASS16
+
+/* option ppa: Linux device driver for IOMEGA Parallel Port ZIP drive */
+#undef CONFIG_SCSI_PPA
+
+/* option qlogicfas: Linux device driver for SCSI controller Qlogic FAS */
+#undef CONFIG_SCSI_QLOGIC_FAS
+
+/* option qlogicisp: Linux device driver for SCSI controller Qlogic ISP */
+#undef CONFIG_SCSI_QLOGIC_ISP
+
+/* option seagate: Linux device driver for SCSI controller Seagate ST02,
+ Future Domain TMC-8xx */
+#undef CONFIG_SCSI_SEAGATE
+
+/* option t128: Linux device driver for SCSI controller Trantor
+ T128/T128F/T228 (t128, t128f, t228) */
+#undef CONFIG_SCSI_T128
+
+/* option u14-34f: Linux device driver for SCSI controller UltraStor 14F/34F
+ */
+#undef CONFIG_SCSI_U14_34F
+
+/* option ultrastor: Linux device driver for SCSI controller UltraStor */
+#undef CONFIG_SCSI_ULTRASTOR
+
+/* option seeq8005: Linux device driver for Ethernet controller Seeq8005 */
+#undef CONFIG_SEEQ8005
+
+/* option sk_g16: Linux device driver for Ethernet controller Schneider & Koch
+ G16 */
+#undef CONFIG_SK_G16
+
+/* option smc91c92_cs: Linux device driver for SMC91c92-based PCMCIA cards */
+#undef CONFIG_SMC91C92_CS
+
+/* option starfire: Linux device driver for Ethernet controller Adaptec
+ Starfire network adapter */
+#undef CONFIG_STARFIRE
+
+/* option sundance: Linux device driver for Ethernet controller Sundance ST201
+ "Alta" PCI Ethernet */
+#undef CONFIG_SUNDANCE
+
+/* option tlan: Linux device driver for Ethernet controller TI ThunderLAN */
+#undef CONFIG_TLAN
+
+/* option smc-ultra: Linux device driver for Ethernet controller SMC Ultra */
+#undef CONFIG_ULTRA
+
+/* option smc-ultra32: Linux device driver for Ethernet controller SMC Ultra32
+ */
+#undef CONFIG_ULTRA32
+
+/* option via-rhine: Linux device driver for Ethernet controller VIA Rhine */
+#undef CONFIG_VIA_RHINE
+
+/* option 3c59x: Linux device driver for Ethernet controller 3Com 59x/90x
+ (3c59x, 3c590, 3c592, 3c595, 3c597, 3c90x, 3c900, 3c905) "Vortex/Boomerang"
+ */
+#undef CONFIG_VORTEX
+
+/* option wavelan: Linux device driver for Ethernet controller AT&T WaveLAN &
+ DEC RoamAbout DS */
+#undef CONFIG_WAVELAN
+
+/* option wd: Linux device driver for Ethernet controller WD80x3 */
+#undef CONFIG_WD80x3
+
+/* option winbond-840: Linux device driver for Ethernet controller Winbond
+ W89c840 PCI Ethernet */
+#undef CONFIG_WINBOND840
+
+/* CONFIG_WIRELESS */
+#undef CONFIG_WIRELESS
+
+/* option xirc2ps_cs: Linux device driver for Xircom CreditCard and Realport
+ PCMCIA ethernet */
+#undef CONFIG_XIRC2PS_CS
+
+/* option yellowfin: Linux device driver for Ethernet controller Packet
+ Engines Yellowfin Gigabit-NIC */
+#undef CONFIG_YELLOWFIN
+
+/* option znet: Linux device driver for Ethernet controller Zenith Z-Note
+ (znet, znote) */
+#undef CONFIG_ZNET
+
+/* CPU */
+#undef CPU
+
+/* FAST_TAS */
+#undef FAST_TAS
+
+/* HW_FOOTPRINT */
+#undef HW_FOOTPRINT
+
+/* KERNEL */
+#undef KERNEL
+
+/* Linux device drivers. */
+#undef LINUX_DEV
+
+/* MACH */
+#undef MACH
+
+/* MACH_COUNTERS */
+#undef MACH_COUNTERS
+
+/* MACH_DEBUG */
+#undef MACH_DEBUG
+
+/* MACH_FIXPRI */
+#undef MACH_FIXPRI
+
+/* MACH_HOST */
+#undef MACH_HOST
+
+/* MACH_IPC_DEBUG */
+#undef MACH_IPC_DEBUG
+
+/* MACH_IPC_TEST */
+#undef MACH_IPC_TEST
+
+/* Use the in-kernel debugger? */
+#undef MACH_KDB
+
+/* Standalone MACH kernel */
+#undef MACH_KERNEL
+
+/* enable use of kmsg device */
+#undef MACH_KMSG
+
+/* MACH_LDEBUG */
+#undef MACH_LDEBUG
+
+/* MACH_LOCK_MON */
+#undef MACH_LOCK_MON
+
+/* lpr device */
+#undef MACH_LPR
+
+/* MACH_MACHINE_ROUTINES */
+#undef MACH_MACHINE_ROUTINES
+
+/* MACH_MP_DEBUG */
+#undef MACH_MP_DEBUG
+
+/* MACH_PAGEMAP */
+#undef MACH_PAGEMAP
+
+/* MACH_PCSAMPLE */
+#undef MACH_PCSAMPLE
+
+/* MACH_TTD */
+#undef MACH_TTD
+
+/* MACH_VM_DEBUG */
+#undef MACH_VM_DEBUG
+
+/* set things up for a uniprocessor */
+#undef MULTIPROCESSOR
+
+/* NCOM */
+#undef NCOM
+
+/* set things up for a uniprocessor */
+#undef NCPUS
+
+/* NLPR */
+#undef NLPR
+
+/* Define to 1 if your C compiler doesn't accept -c and -o together. */
+#undef NO_MINUS_C_MINUS_O
+
+/* Define to the address where bug reports for this package should be sent. */
+#undef PACKAGE_BUGREPORT
+
+/* Define to the full name of this package. */
+#undef PACKAGE_NAME
+
+/* Define to the full name and version of this package. */
+#undef PACKAGE_STRING
+
+/* Define to the one symbol short name of this package. */
+#undef PACKAGE_TARNAME
+
+/* Define to the version of this package. */
+#undef PACKAGE_VERSION
+
+/* POWER_SAVE */
+#undef POWER_SAVE
+
+/* where is the com port for the remote console */
+#undef RCADDR
+
+/* com port for the remote console */
+#undef RCLINE
+
+/* SIMPLE_CLOCK */
+#undef SIMPLE_CLOCK
+
+/* STAT_TIME */
+#undef STAT_TIME
+
+/* XPR_DEBUG */
+#undef XPR_DEBUG
+
+/* __ELF__ */
+#undef __ELF__
+
+/* __KERNEL__ */
+#undef __KERNEL__
+
+/* i386 */
+#undef i386
--- configure 2007-03-06 06:42:29.000000000 +0200
+++ configure 2007-03-06 07:07:56.000000000 +0200
@@ -821,6 +821,8 @@ device_driver_rtl8139_TRUE
device_driver_rtl8139_FALSE
device_driver_seeq8005_TRUE
device_driver_seeq8005_FALSE
+device_driver_sis900_TRUE
+device_driver_sis900_FALSE
device_driver_sk_g16_TRUE
device_driver_sk_g16_FALSE
device_driver_smc_ultra_TRUE
@@ -1489,6 +1491,7 @@ Optional Features:
default for ix86-at
--enable-ide Linux device driver for IDE disk controllers;
enabled by default for ix86-at
+ --enable-ide-forcedma enable forced use of DMA on IDE
--enable-53c78xx Linux device driver for SCSI controller NCR
53C7,8xx; enabled by default for ix86-at
--enable-AM53C974 Linux device driver for SCSI controller AM53/79C974
@@ -1656,6 +1659,8 @@ Optional Features:
enabled by default for ix86-at
--enable-seeq8005 Linux device driver for Ethernet controller
Seeq8005; enabled by default for ix86-at
+ --enable-sis900 Linux device driver for Ethernet controller SiS 900;
+ enabled by default for ix86-at
--enable-sk_g16 Linux device driver for Ethernet controller
Schneider & Koch G16; enabled by default for ix86-at
--enable-smc-ultra Linux device driver for Ethernet controller SMC
@@ -6408,6 +6413,17 @@ _ACEOF
fi
+# Check whether --enable-ide-forcedma was given.
+if test "${enable_ide_forcedma+set}" = set; then
+ enableval=$enable_ide_forcedma; test x"$enableval" = xno ||
+
+cat >>confdefs.h <<\_ACEOF
+#define CONFIG_BLK_DEV_FORCE_DMA 1
+_ACEOF
+
+fi
+
+
@@ -9109,6 +9125,46 @@ fi
unset enableval
+# Check whether --enable-sis900 was given.
+if test "${enable_sis900+set}" = set; then
+ enableval=$enable_sis900;
+fi
+
+#TODO.
+case $host_platform:$host_cpu in
+ at:i?86)
+ enableval=${enableval-$enable_default_device_drivers};;
+ *)
+ if [ x"$enableval" = xyes ]; then
+ # TODO. That might not always be true.
+ { { echo "$as_me:$LINENO: error: cannot enable \`sis900' in this configuration." >&5
+echo "$as_me: error: cannot enable \`sis900' in this configuration." >&2;}
+ { (exit 1); exit 1; }; }
+ fi;;
+esac
+
+
+if [ x"$enableval" = xyes ]; then
+ device_driver_sis900_TRUE=
+ device_driver_sis900_FALSE='#'
+else
+ device_driver_sis900_TRUE='#'
+ device_driver_sis900_FALSE=
+fi
+
+if [ x"$enableval" = xyes ]; then
+ have_linux_code=yes
+
+cat >>confdefs.h <<\_ACEOF
+#define CONFIG_SIS900 1
+_ACEOF
+
+ device_driver_group net
+fi
+
+
+
+unset enableval
# Check whether --enable-sk_g16 was given.
if test "${enable_sk_g16+set}" = set; then
enableval=$enable_sk_g16;
@@ -11076,6 +11132,13 @@ echo "$as_me: error: conditional \"devic
Usually this means the macro was only invoked conditionally." >&2;}
{ (exit 1); exit 1; }; }
fi
+if test -z "${device_driver_sis900_TRUE}" && test -z "${device_driver_sis900_FALSE}"; then
+ { { echo "$as_me:$LINENO: error: conditional \"device_driver_sis900\" was never defined.
+Usually this means the macro was only invoked conditionally." >&5
+echo "$as_me: error: conditional \"device_driver_sis900\" was never defined.
+Usually this means the macro was only invoked conditionally." >&2;}
+ { (exit 1); exit 1; }; }
+fi
if test -z "${device_driver_sk_g16_TRUE}" && test -z "${device_driver_sk_g16_FALSE}"; then
{ { echo "$as_me:$LINENO: error: conditional \"device_driver_sk_g16\" was never defined.
Usually this means the macro was only invoked conditionally." >&5
@@ -12181,6 +12244,8 @@ device_driver_rtl8139_TRUE!$device_drive
device_driver_rtl8139_FALSE!$device_driver_rtl8139_FALSE$ac_delim
device_driver_seeq8005_TRUE!$device_driver_seeq8005_TRUE$ac_delim
device_driver_seeq8005_FALSE!$device_driver_seeq8005_FALSE$ac_delim
+device_driver_sis900_TRUE!$device_driver_sis900_TRUE$ac_delim
+device_driver_sis900_FALSE!$device_driver_sis900_FALSE$ac_delim
device_driver_sk_g16_TRUE!$device_driver_sk_g16_TRUE$ac_delim
device_driver_sk_g16_FALSE!$device_driver_sk_g16_FALSE$ac_delim
device_driver_smc_ultra_TRUE!$device_driver_smc_ultra_TRUE$ac_delim
@@ -12228,8 +12293,6 @@ device_driver_smc91c92_cs_FALSE!$device_
device_driver_xirc2ps_cs_TRUE!$device_driver_xirc2ps_cs_TRUE$ac_delim
device_driver_xirc2ps_cs_FALSE!$device_driver_xirc2ps_cs_FALSE$ac_delim
device_driver_orinoco_cs_TRUE!$device_driver_orinoco_cs_TRUE$ac_delim
-device_driver_orinoco_cs_FALSE!$device_driver_orinoco_cs_FALSE$ac_delim
-device_driver_group_net_TRUE!$device_driver_group_net_TRUE$ac_delim
_ACEOF
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
@@ -12271,6 +12334,8 @@ _ACEOF
ac_delim='%!_!# '
for ac_last_try in false false false false false :; do
cat >conf$$subs.sed <<_ACEOF
+device_driver_orinoco_cs_FALSE!$device_driver_orinoco_cs_FALSE$ac_delim
+device_driver_group_net_TRUE!$device_driver_group_net_TRUE$ac_delim
device_driver_group_net_FALSE!$device_driver_group_net_FALSE$ac_delim
device_driver_group_pcmcia_TRUE!$device_driver_group_pcmcia_TRUE$ac_delim
device_driver_group_pcmcia_FALSE!$device_driver_group_pcmcia_FALSE$ac_delim
@@ -12284,7 +12349,7 @@ LIBOBJS!$LIBOBJS$ac_delim
LTLIBOBJS!$LTLIBOBJS$ac_delim
_ACEOF
- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 11; then
+ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 13; then
break
elif $ac_last_try; then
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
--- Makefile.in 2007-03-06 06:42:41.000000000 +0200
+++ Makefile.in 2007-03-06 07:08:08.000000000 +0200
@@ -161,28 +161,6 @@
# Tests.
#
-# Makefile fragment for the documentation.
-
-# Copyright (C) 2006, 2007 Free Software Foundation, Inc.
-
-# This program is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by the
-# Free Software Foundation; either version 2, or (at your option) any later
-# version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
-# for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-#
-# The GNU Mach Reference Manual.
-#
-
@@ -221,15 +199,13 @@ DIST_COMMON = README $(am__configure_dep
$(include_mach_eXec_HEADERS) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(srcdir)/Makefrag.am \
$(srcdir)/Makerules.am $(srcdir)/config.h.in \
- $(srcdir)/doc/Makefrag.am $(srcdir)/doc/stamp-vti \
- $(srcdir)/doc/version.texi $(srcdir)/i386/Makefrag.am \
- $(srcdir)/i386/linux/Makefrag.am $(srcdir)/linux/Makefrag.am \
- $(srcdir)/tests/Makefrag.am $(srcdir)/version.c.in \
- $(top_srcdir)/configure $(top_srcdir)/tests/test-mbchk.in \
- AUTHORS COPYING ChangeLog INSTALL NEWS build-aux/compile \
- build-aux/config.guess build-aux/config.sub build-aux/depcomp \
- build-aux/install-sh build-aux/mdate-sh build-aux/missing \
- build-aux/texinfo.tex
+ $(srcdir)/i386/Makefrag.am $(srcdir)/i386/linux/Makefrag.am \
+ $(srcdir)/linux/Makefrag.am $(srcdir)/tests/Makefrag.am \
+ $(srcdir)/version.c.in $(top_srcdir)/configure \
+ $(top_srcdir)/tests/test-mbchk.in AUTHORS COPYING ChangeLog \
+ INSTALL NEWS build-aux/compile build-aux/config.guess \
+ build-aux/config.sub build-aux/depcomp build-aux/install-sh \
+ build-aux/mdate-sh build-aux/missing build-aux/texinfo.tex
# Do we want the icky kernel debugger?
@enable_kdb_TRUE@am__append_2 = \
@@ -607,62 +583,65 @@ DIST_COMMON = README $(am__configure_dep
@device_driver_seeq8005_TRUE@ linux/src/drivers/net/seeq8005.c \
@device_driver_seeq8005_TRUE@ linux/src/drivers/net/seeq8005.h
-@device_driver_sk_g16_TRUE@am__append_83 = \
+@device_driver_sis900_TRUE@am__append_83 = \
+@device_driver_sis900_TRUE@ linux/src/drivers/net/sis900.c
+
+@device_driver_sk_g16_TRUE@am__append_84 = \
@device_driver_sk_g16_TRUE@ linux/src/drivers/net/sk_g16.c \
@device_driver_sk_g16_TRUE@ linux/src/drivers/net/sk_g16.h
-@device_driver_smc_ultra_TRUE@am__append_84 = \
+@device_driver_smc_ultra_TRUE@am__append_85 = \
@device_driver_smc_ultra_TRUE@ linux/src/drivers/net/smc-ultra.c \
@device_driver_smc_ultra_TRUE@ linux/src/drivers/net/8390.c
-@device_driver_smc_ultra32_TRUE@am__append_85 = \
+@device_driver_smc_ultra32_TRUE@am__append_86 = \
@device_driver_smc_ultra32_TRUE@ linux/src/drivers/net/smc-ultra32.c \
@device_driver_smc_ultra32_TRUE@ linux/src/drivers/net/8390.c
-@device_driver_starfire_TRUE@am__append_86 = \
+@device_driver_starfire_TRUE@am__append_87 = \
@device_driver_starfire_TRUE@ linux/src/drivers/net/starfire.c
-@device_driver_sundance_TRUE@am__append_87 = \
+@device_driver_sundance_TRUE@am__append_88 = \
@device_driver_sundance_TRUE@ linux/src/drivers/net/sundance.c
-@device_driver_tlan_TRUE@am__append_88 = \
+@device_driver_tlan_TRUE@am__append_89 = \
@device_driver_tlan_TRUE@ linux/src/drivers/net/tlan.c \
@device_driver_tlan_TRUE@ linux/src/drivers/net/tlan.h
-@device_driver_tulip_TRUE@am__append_89 = \
+@device_driver_tulip_TRUE@am__append_90 = \
@device_driver_tulip_TRUE@ linux/src/drivers/net/tulip.c
-@device_driver_via_rhine_TRUE@am__append_90 = \
+@device_driver_via_rhine_TRUE@am__append_91 = \
@device_driver_via_rhine_TRUE@ linux/src/drivers/net/via-rhine.c
-@device_driver_wavelan_TRUE@am__append_91 = \
+@device_driver_wavelan_TRUE@am__append_92 = \
@device_driver_wavelan_TRUE@ linux/src/drivers/net/i82586.h \
@device_driver_wavelan_TRUE@ linux/src/drivers/net/wavelan.c \
@device_driver_wavelan_TRUE@ linux/src/drivers/net/wavelan.h \
@device_driver_wavelan_TRUE@ linux/dev/drivers/net/wavelan.p.h
-@device_driver_wd_TRUE@am__append_92 = \
+@device_driver_wd_TRUE@am__append_93 = \
@device_driver_wd_TRUE@ linux/src/drivers/net/wd.c
-@device_driver_winbond_840_TRUE@am__append_93 = \
+@device_driver_winbond_840_TRUE@am__append_94 = \
@device_driver_winbond_840_TRUE@ linux/src/drivers/net/winbond-840.c \
@device_driver_winbond_840_TRUE@ linux/src/drivers/net/8390.c
-@device_driver_yellowfin_TRUE@am__append_94 = \
+@device_driver_yellowfin_TRUE@am__append_95 = \
@device_driver_yellowfin_TRUE@ linux/src/drivers/net/yellowfin.c
-@device_driver_znet_TRUE@am__append_95 = \
+@device_driver_znet_TRUE@am__append_96 = \
@device_driver_znet_TRUE@ linux/src/drivers/net/znet.c
-@device_driver_group_pcmcia_TRUE@am__append_96 = \
+@device_driver_group_pcmcia_TRUE@am__append_97 = \
@device_driver_group_pcmcia_TRUE@ liblinux_pcmcia_cs_modules.a \
@device_driver_group_pcmcia_TRUE@ liblinux_pcmcia_cs_clients.a \
@device_driver_group_pcmcia_TRUE@ liblinux_pcmcia_cs_wireless.a
-@device_driver_group_pcmcia_TRUE@am__append_97 = \
+@device_driver_group_pcmcia_TRUE@am__append_98 = \
@device_driver_group_pcmcia_TRUE@ liblinux_pcmcia_cs_modules.a \
@device_driver_group_pcmcia_TRUE@ liblinux_pcmcia_cs_clients.a \
@device_driver_group_pcmcia_TRUE@ liblinux_pcmcia_cs_wireless.a
-@device_driver_i82365_TRUE@am__append_98 = \
+@device_driver_i82365_TRUE@am__append_99 = \
@device_driver_i82365_TRUE@ linux/pcmcia-cs/modules/cirrus.h \
@device_driver_i82365_TRUE@ linux/pcmcia-cs/modules/ene.h \
@device_driver_i82365_TRUE@ linux/pcmcia-cs/modules/i82365.c \
@@ -675,34 +654,34 @@ DIST_COMMON = README $(am__configure_dep
@device_driver_i82365_TRUE@ linux/pcmcia-cs/modules/vg468.h \
@device_driver_i82365_TRUE@ linux/pcmcia-cs/modules/yenta.h
-@device_driver_3c574_cs_TRUE@am__append_99 = \
+@device_driver_3c574_cs_TRUE@am__append_100 = \
@device_driver_3c574_cs_TRUE@ linux/pcmcia-cs/clients/3c574_cs.c
-@device_driver_3c589_cs_TRUE@am__append_100 = \
+@device_driver_3c589_cs_TRUE@am__append_101 = \
@device_driver_3c589_cs_TRUE@ linux/pcmcia-cs/clients/3c589_cs.c
-@device_driver_axnet_cs_TRUE@am__append_101 = \
+@device_driver_axnet_cs_TRUE@am__append_102 = \
@device_driver_axnet_cs_TRUE@ linux/pcmcia-cs/clients/ax8390.h \
@device_driver_axnet_cs_TRUE@ linux/pcmcia-cs/clients/axnet_cs.c
-@device_driver_fmvj18x_cs_TRUE@am__append_102 = \
+@device_driver_fmvj18x_cs_TRUE@am__append_103 = \
@device_driver_fmvj18x_cs_TRUE@ linux/pcmcia-cs/clients/fmvj18x_cs.c
-@device_driver_nmclan_cs_TRUE@am__append_103 = \
+@device_driver_nmclan_cs_TRUE@am__append_104 = \
@device_driver_nmclan_cs_TRUE@ linux/pcmcia-cs/clients/nmclan_cs.c
-@device_driver_pcnet_cs_TRUE@am__append_104 = \
+@device_driver_pcnet_cs_TRUE@am__append_105 = \
@device_driver_pcnet_cs_TRUE@ linux/pcmcia-cs/clients/pcnet_cs.c \
@device_driver_pcnet_cs_TRUE@ linux/src/drivers/net/8390.c
-@device_driver_smc91c92_cs_TRUE@am__append_105 = \
+@device_driver_smc91c92_cs_TRUE@am__append_106 = \
@device_driver_smc91c92_cs_TRUE@ linux/pcmcia-cs/clients/ositech.h \
@device_driver_smc91c92_cs_TRUE@ linux/pcmcia-cs/clients/smc91c92_cs.c
-@device_driver_xirc2ps_cs_TRUE@am__append_106 = \
+@device_driver_xirc2ps_cs_TRUE@am__append_107 = \
@device_driver_xirc2ps_cs_TRUE@ linux/pcmcia-cs/clients/xirc2ps_cs.c
-@device_driver_orinoco_cs_TRUE@am__append_107 = \
+@device_driver_orinoco_cs_TRUE@am__append_108 = \
@device_driver_orinoco_cs_TRUE@ linux/pcmcia-cs/glue/wireless_glue.h \
@device_driver_orinoco_cs_TRUE@ linux/pcmcia-cs/wireless/hermes.c \
@device_driver_orinoco_cs_TRUE@ linux/pcmcia-cs/wireless/hermes.h \
@@ -712,12 +691,12 @@ DIST_COMMON = README $(am__configure_dep
@device_driver_orinoco_cs_TRUE@ linux/pcmcia-cs/wireless/orinoco.h \
@device_driver_orinoco_cs_TRUE@ linux/pcmcia-cs/wireless/orinoco_cs.c
-@HOST_ix86_TRUE@am__append_108 = \
+@HOST_ix86_TRUE@am__append_109 = \
@HOST_ix86_TRUE@ i386/linux/dev/include/linux/autoconf.h \
@HOST_ix86_TRUE@ i386/linux/dev/include/linux_emul.h \
@HOST_ix86_TRUE@ linux/src/arch/i386/lib/semaphore.S
-@HOST_ix86_TRUE@am__append_109 = \
+@HOST_ix86_TRUE@am__append_110 = \
@HOST_ix86_TRUE@ i386/i386at/autoconf.c \
@HOST_ix86_TRUE@ i386/i386at/boothdr.S \
@HOST_ix86_TRUE@ i386/i386at/com.c \
@@ -755,7 +734,7 @@ DIST_COMMON = README $(am__configure_dep
#
# `lpr' device support.
#
-@HOST_ix86_TRUE@@enable_lpr_TRUE@am__append_110 = \
+@HOST_ix86_TRUE@@enable_lpr_TRUE@am__append_111 = \
@HOST_ix86_TRUE@@enable_lpr_TRUE@ i386/i386at/lpr.c \
@HOST_ix86_TRUE@@enable_lpr_TRUE@ i386/i386at/lprreg.h
@@ -763,7 +742,7 @@ DIST_COMMON = README $(am__configure_dep
#
# Further source files for any i386 kernel.
#
-@HOST_ix86_TRUE@am__append_111 = \
+@HOST_ix86_TRUE@am__append_112 = \
@HOST_ix86_TRUE@ i386/i386/ast.h \
@HOST_ix86_TRUE@ i386/i386/ast_check.c \
@HOST_ix86_TRUE@ i386/i386/ast_types.h \
@@ -849,21 +828,21 @@ DIST_COMMON = README $(am__configure_dep
#
# Instead of listing each file individually...
-@HOST_ix86_TRUE@am__append_112 = i386/i386/mach_i386.srv \
+@HOST_ix86_TRUE@am__append_113 = i386/i386/mach_i386.srv \
@HOST_ix86_TRUE@ i386/i386/i386asm.sym i386/ldscript \
@HOST_ix86_TRUE@ i386/README-Drivers i386/include
#
# KDB support.
#
-@HOST_ix86_TRUE@@enable_kdb_TRUE@am__append_113 = \
+@HOST_ix86_TRUE@@enable_kdb_TRUE@am__append_114 = \
@HOST_ix86_TRUE@@enable_kdb_TRUE@ i386/i386/_setjmp.S
#
# Files from the generic sources that we want.
#
-@HOST_ix86_TRUE@am__append_114 = \
+@HOST_ix86_TRUE@am__append_115 = \
@HOST_ix86_TRUE@ chips/busses.c \
@HOST_ix86_TRUE@ chips/busses.h \
@HOST_ix86_TRUE@ device/cirbuf.c
@@ -874,13 +853,13 @@ DIST_COMMON = README $(am__configure_dep
#
# See Makefrag.am about lib_dep_tr_for_defs.a.
-@HOST_ix86_TRUE@am__append_115 = \
+@HOST_ix86_TRUE@am__append_116 = \
@HOST_ix86_TRUE@ i386/i386/mach_i386.server.defs.c
-@HOST_ix86_TRUE@am__append_116 = i386/i386/mach_i386.server.h \
+@HOST_ix86_TRUE@am__append_117 = i386/i386/mach_i386.server.h \
@HOST_ix86_TRUE@ i386/i386/mach_i386.server.c \
@HOST_ix86_TRUE@ i386/i386/i386asm.h
-@HOST_ix86_TRUE@@PLATFORM_at_TRUE@am__append_117 = \
+@HOST_ix86_TRUE@@PLATFORM_at_TRUE@am__append_118 = \
@HOST_ix86_TRUE@@PLATFORM_at_TRUE@ --defsym _START=0x100000 \
@HOST_ix86_TRUE@@PLATFORM_at_TRUE@ -T '$(srcdir)'/i386/ldscript
@@ -966,10 +945,10 @@ am__libkernel_a_SOURCES_DIST = ddb/db_ac
kern/time_out.h kern/time_stamp.c kern/time_stamp.h \
kern/timer.c kern/timer.h kern/xpr.c kern/xpr.h kern/zalloc.c \
kern/zalloc.h kern/elf-load.c kern/boot_script.c \
- util/putchar.c util/puts.c vm/memory_object.c \
- vm/memory_object.h vm/pmap.h vm/vm_debug.c vm/vm_external.c \
- vm/vm_external.h vm/vm_fault.c vm/vm_fault.h vm/vm_init.c \
- vm/vm_kern.c vm/vm_kern.h vm/vm_map.c vm/vm_map.h \
+ util/putchar.c util/puts.c vm/memory_object_proxy.c \
+ vm/memory_object.c vm/memory_object.h vm/pmap.h vm/vm_debug.c \
+ vm/vm_external.c vm/vm_external.h vm/vm_fault.c vm/vm_fault.h \
+ vm/vm_init.c vm/vm_kern.c vm/vm_kern.h vm/vm_map.c vm/vm_map.h \
vm/vm_object.c vm/vm_object.h vm/vm_page.h vm/vm_pageout.c \
vm/vm_pageout.h vm/vm_resident.c vm/vm_user.c vm/vm_user.h \
device/blkio.c device/buf.h device/chario.c device/cirbuf.h \
@@ -1128,9 +1107,10 @@ am_libkernel_a_OBJECTS = $(am__objects_2
kern/xpr.$(OBJEXT) kern/zalloc.$(OBJEXT) \
kern/elf-load.$(OBJEXT) kern/boot_script.$(OBJEXT) \
util/putchar.$(OBJEXT) util/puts.$(OBJEXT) \
- vm/memory_object.$(OBJEXT) vm/vm_debug.$(OBJEXT) \
- vm/vm_external.$(OBJEXT) vm/vm_fault.$(OBJEXT) \
- vm/vm_init.$(OBJEXT) vm/vm_kern.$(OBJEXT) vm/vm_map.$(OBJEXT) \
+ vm/memory_object_proxy.$(OBJEXT) vm/memory_object.$(OBJEXT) \
+ vm/vm_debug.$(OBJEXT) vm/vm_external.$(OBJEXT) \
+ vm/vm_fault.$(OBJEXT) vm/vm_init.$(OBJEXT) \
+ vm/vm_kern.$(OBJEXT) vm/vm_map.$(OBJEXT) \
vm/vm_object.$(OBJEXT) vm/vm_pageout.$(OBJEXT) \
vm/vm_resident.$(OBJEXT) vm/vm_user.$(OBJEXT) \
device/blkio.$(OBJEXT) device/chario.$(OBJEXT) \
@@ -1275,7 +1255,8 @@ am__liblinux_a_SOURCES_DIST = linux/dev/
linux/src/drivers/net/rtl8139.c \
linux/src/drivers/net/seeq8005.c \
linux/src/drivers/net/seeq8005.h \
- linux/src/drivers/net/sk_g16.c linux/src/drivers/net/sk_g16.h \
+ linux/src/drivers/net/sis900.c linux/src/drivers/net/sk_g16.c \
+ linux/src/drivers/net/sk_g16.h \
linux/src/drivers/net/smc-ultra.c \
linux/src/drivers/net/smc-ultra32.c \
linux/src/drivers/net/starfire.c \
@@ -1386,23 +1367,24 @@ am__liblinux_a_SOURCES_DIST = linux/dev/
@device_driver_pcnet32_TRUE@am__objects_78 = linux/src/drivers/net/liblinux_a-pcnet32.$(OBJEXT)
@device_driver_rtl8139_TRUE@am__objects_79 = linux/src/drivers/net/liblinux_a-rtl8139.$(OBJEXT)
@device_driver_seeq8005_TRUE@am__objects_80 = linux/src/drivers/net/liblinux_a-seeq8005.$(OBJEXT)
-@device_driver_sk_g16_TRUE@am__objects_81 = linux/src/drivers/net/liblinux_a-sk_g16.$(OBJEXT)
-@device_driver_smc_ultra_TRUE@am__objects_82 = linux/src/drivers/net/liblinux_a-smc-ultra.$(OBJEXT) \
+@device_driver_sis900_TRUE@am__objects_81 = linux/src/drivers/net/liblinux_a-sis900.$(OBJEXT)
+@device_driver_sk_g16_TRUE@am__objects_82 = linux/src/drivers/net/liblinux_a-sk_g16.$(OBJEXT)
+@device_driver_smc_ultra_TRUE@am__objects_83 = linux/src/drivers/net/liblinux_a-smc-ultra.$(OBJEXT) \
@device_driver_smc_ultra_TRUE@ linux/src/drivers/net/liblinux_a-8390.$(OBJEXT)
-@device_driver_smc_ultra32_TRUE@am__objects_83 = linux/src/drivers/net/liblinux_a-smc-ultra32.$(OBJEXT) \
+@device_driver_smc_ultra32_TRUE@am__objects_84 = linux/src/drivers/net/liblinux_a-smc-ultra32.$(OBJEXT) \
@device_driver_smc_ultra32_TRUE@ linux/src/drivers/net/liblinux_a-8390.$(OBJEXT)
-@device_driver_starfire_TRUE@am__objects_84 = linux/src/drivers/net/liblinux_a-starfire.$(OBJEXT)
-@device_driver_sundance_TRUE@am__objects_85 = linux/src/drivers/net/liblinux_a-sundance.$(OBJEXT)
-@device_driver_tlan_TRUE@am__objects_86 = linux/src/drivers/net/liblinux_a-tlan.$(OBJEXT)
-@device_driver_tulip_TRUE@am__objects_87 = linux/src/drivers/net/liblinux_a-tulip.$(OBJEXT)
-@device_driver_via_rhine_TRUE@am__objects_88 = linux/src/drivers/net/liblinux_a-via-rhine.$(OBJEXT)
-@device_driver_wavelan_TRUE@am__objects_89 = linux/src/drivers/net/liblinux_a-wavelan.$(OBJEXT)
-@device_driver_wd_TRUE@am__objects_90 = linux/src/drivers/net/liblinux_a-wd.$(OBJEXT)
-@device_driver_winbond_840_TRUE@am__objects_91 = linux/src/drivers/net/liblinux_a-winbond-840.$(OBJEXT) \
+@device_driver_starfire_TRUE@am__objects_85 = linux/src/drivers/net/liblinux_a-starfire.$(OBJEXT)
+@device_driver_sundance_TRUE@am__objects_86 = linux/src/drivers/net/liblinux_a-sundance.$(OBJEXT)
+@device_driver_tlan_TRUE@am__objects_87 = linux/src/drivers/net/liblinux_a-tlan.$(OBJEXT)
+@device_driver_tulip_TRUE@am__objects_88 = linux/src/drivers/net/liblinux_a-tulip.$(OBJEXT)
+@device_driver_via_rhine_TRUE@am__objects_89 = linux/src/drivers/net/liblinux_a-via-rhine.$(OBJEXT)
+@device_driver_wavelan_TRUE@am__objects_90 = linux/src/drivers/net/liblinux_a-wavelan.$(OBJEXT)
+@device_driver_wd_TRUE@am__objects_91 = linux/src/drivers/net/liblinux_a-wd.$(OBJEXT)
+@device_driver_winbond_840_TRUE@am__objects_92 = linux/src/drivers/net/liblinux_a-winbond-840.$(OBJEXT) \
@device_driver_winbond_840_TRUE@ linux/src/drivers/net/liblinux_a-8390.$(OBJEXT)
-@device_driver_yellowfin_TRUE@am__objects_92 = linux/src/drivers/net/liblinux_a-yellowfin.$(OBJEXT)
-@device_driver_znet_TRUE@am__objects_93 = linux/src/drivers/net/liblinux_a-znet.$(OBJEXT)
-@HOST_ix86_TRUE@am__objects_94 = linux/src/arch/i386/lib/liblinux_a-semaphore.$(OBJEXT)
+@device_driver_yellowfin_TRUE@am__objects_93 = linux/src/drivers/net/liblinux_a-yellowfin.$(OBJEXT)
+@device_driver_znet_TRUE@am__objects_94 = linux/src/drivers/net/liblinux_a-znet.$(OBJEXT)
+@HOST_ix86_TRUE@am__objects_95 = linux/src/arch/i386/lib/liblinux_a-semaphore.$(OBJEXT)
am_liblinux_a_OBJECTS = linux/dev/init/liblinux_a-version.$(OBJEXT) \
linux/dev/kernel/liblinux_a-softirq.$(OBJEXT) \
linux/src/arch/i386/lib/liblinux_a-delay.$(OBJEXT) \
@@ -1449,7 +1431,7 @@ am_liblinux_a_OBJECTS = linux/dev/init/l
$(am__objects_85) $(am__objects_86) $(am__objects_87) \
$(am__objects_88) $(am__objects_89) $(am__objects_90) \
$(am__objects_91) $(am__objects_92) $(am__objects_93) \
- $(am__objects_94)
+ $(am__objects_94) $(am__objects_95)
liblinux_a_OBJECTS = $(am_liblinux_a_OBJECTS)
liblinux_pcmcia_cs_clients_a_AR = $(AR) $(ARFLAGS)
liblinux_pcmcia_cs_clients_a_LIBADD =
@@ -1464,19 +1446,19 @@ am__liblinux_pcmcia_cs_clients_a_SOURCES
linux/src/drivers/net/8390.c linux/pcmcia-cs/clients/ositech.h \
linux/pcmcia-cs/clients/smc91c92_cs.c \
linux/pcmcia-cs/clients/xirc2ps_cs.c
-@device_driver_3c574_cs_TRUE@am__objects_95 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-3c574_cs.$(OBJEXT)
-@device_driver_3c589_cs_TRUE@am__objects_96 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-3c589_cs.$(OBJEXT)
-@device_driver_axnet_cs_TRUE@am__objects_97 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-axnet_cs.$(OBJEXT)
-@device_driver_fmvj18x_cs_TRUE@am__objects_98 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-fmvj18x_cs.$(OBJEXT)
-@device_driver_nmclan_cs_TRUE@am__objects_99 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-nmclan_cs.$(OBJEXT)
-@device_driver_pcnet_cs_TRUE@am__objects_100 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-pcnet_cs.$(OBJEXT) \
+@device_driver_3c574_cs_TRUE@am__objects_96 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-3c574_cs.$(OBJEXT)
+@device_driver_3c589_cs_TRUE@am__objects_97 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-3c589_cs.$(OBJEXT)
+@device_driver_axnet_cs_TRUE@am__objects_98 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-axnet_cs.$(OBJEXT)
+@device_driver_fmvj18x_cs_TRUE@am__objects_99 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-fmvj18x_cs.$(OBJEXT)
+@device_driver_nmclan_cs_TRUE@am__objects_100 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-nmclan_cs.$(OBJEXT)
+@device_driver_pcnet_cs_TRUE@am__objects_101 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-pcnet_cs.$(OBJEXT) \
@device_driver_pcnet_cs_TRUE@ linux/src/drivers/net/liblinux_pcmcia_cs_clients_a-8390.$(OBJEXT)
-@device_driver_smc91c92_cs_TRUE@am__objects_101 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-smc91c92_cs.$(OBJEXT)
-@device_driver_xirc2ps_cs_TRUE@am__objects_102 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-xirc2ps_cs.$(OBJEXT)
-am_liblinux_pcmcia_cs_clients_a_OBJECTS = $(am__objects_95) \
- $(am__objects_96) $(am__objects_97) $(am__objects_98) \
- $(am__objects_99) $(am__objects_100) $(am__objects_101) \
- $(am__objects_102)
+@device_driver_smc91c92_cs_TRUE@am__objects_102 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-smc91c92_cs.$(OBJEXT)
+@device_driver_xirc2ps_cs_TRUE@am__objects_103 = linux/pcmcia-cs/clients/liblinux_pcmcia_cs_clients_a-xirc2ps_cs.$(OBJEXT)
+am_liblinux_pcmcia_cs_clients_a_OBJECTS = $(am__objects_96) \
+ $(am__objects_97) $(am__objects_98) $(am__objects_99) \
+ $(am__objects_100) $(am__objects_101) $(am__objects_102) \
+ $(am__objects_103)
liblinux_pcmcia_cs_clients_a_OBJECTS = \
$(am_liblinux_pcmcia_cs_clients_a_OBJECTS)
liblinux_pcmcia_cs_modules_a_AR = $(AR) $(ARFLAGS)
@@ -1501,7 +1483,7 @@ am__liblinux_pcmcia_cs_modules_a_SOURCES
linux/pcmcia-cs/modules/topic.h \
linux/pcmcia-cs/modules/vg468.h \
linux/pcmcia-cs/modules/yenta.h
-@device_driver_i82365_TRUE@am__objects_103 = linux/pcmcia-cs/modules/liblinux_pcmcia_cs_modules_a-i82365.$(OBJEXT)
+@device_driver_i82365_TRUE@am__objects_104 = linux/pcmcia-cs/modules/liblinux_pcmcia_cs_modules_a-i82365.$(OBJEXT)
am_liblinux_pcmcia_cs_modules_a_OBJECTS = linux/pcmcia-cs/glue/liblinux_pcmcia_cs_modules_a-pcmcia.$(OBJEXT) \
linux/pcmcia-cs/modules/liblinux_pcmcia_cs_modules_a-cs.$(OBJEXT) \
linux/pcmcia-cs/modules/liblinux_pcmcia_cs_modules_a-ds.$(OBJEXT) \
@@ -1509,7 +1491,7 @@ am_liblinux_pcmcia_cs_modules_a_OBJECTS
linux/pcmcia-cs/modules/liblinux_pcmcia_cs_modules_a-bulkmem.$(OBJEXT) \
linux/pcmcia-cs/modules/liblinux_pcmcia_cs_modules_a-cistpl.$(OBJEXT) \
linux/pcmcia-cs/modules/liblinux_pcmcia_cs_modules_a-pci_fixup.$(OBJEXT) \
- $(am__objects_103)
+ $(am__objects_104)
liblinux_pcmcia_cs_modules_a_OBJECTS = \
$(am_liblinux_pcmcia_cs_modules_a_OBJECTS)
liblinux_pcmcia_cs_wireless_a_AR = $(AR) $(ARFLAGS)
@@ -1523,10 +1505,10 @@ am__liblinux_pcmcia_cs_wireless_a_SOURCE
linux/pcmcia-cs/wireless/orinoco.c \
linux/pcmcia-cs/wireless/orinoco.h \
linux/pcmcia-cs/wireless/orinoco_cs.c
-@device_driver_orinoco_cs_TRUE@am__objects_104 = linux/pcmcia-cs/wireless/liblinux_pcmcia_cs_wireless_a-hermes.$(OBJEXT) \
+@device_driver_orinoco_cs_TRUE@am__objects_105 = linux/pcmcia-cs/wireless/liblinux_pcmcia_cs_wireless_a-hermes.$(OBJEXT) \
@device_driver_orinoco_cs_TRUE@ linux/pcmcia-cs/wireless/liblinux_pcmcia_cs_wireless_a-orinoco.$(OBJEXT) \
@device_driver_orinoco_cs_TRUE@ linux/pcmcia-cs/wireless/liblinux_pcmcia_cs_wireless_a-orinoco_cs.$(OBJEXT)
-am_liblinux_pcmcia_cs_wireless_a_OBJECTS = $(am__objects_104)
+am_liblinux_pcmcia_cs_wireless_a_OBJECTS = $(am__objects_105)
liblinux_pcmcia_cs_wireless_a_OBJECTS = \
$(am_liblinux_pcmcia_cs_wireless_a_OBJECTS)
am__installdirs = "$(DESTDIR)$(exec_bootdir)" "$(DESTDIR)$(infodir)" \
@@ -1568,14 +1550,13 @@ DIST_SOURCES = $(am__libkernel_a_SOURCES
$(am__liblinux_pcmcia_cs_modules_a_SOURCES_DIST) \
$(am__liblinux_pcmcia_cs_wireless_a_SOURCES_DIST) \
$(gnumach_SOURCES) $(gnumach_o_SOURCES)
-INFO_DEPS = $(srcdir)/doc/mach.info
TEXINFO_TEX = $(top_srcdir)/build-aux/texinfo.tex
am__TEXINFO_TEX_DIR = $(top_srcdir)/build-aux
-DVIS = doc/mach.dvi
-PDFS = doc/mach.pdf
-PSS = doc/mach.ps
-HTMLS = doc/mach.html
-TEXINFOS = doc/mach.texi
+DVIS =
+PDFS =
+PSS =
+HTMLS =
+TEXINFOS =
TEXI2DVI = texi2dvi
TEXI2PDF = $(TEXI2DVI) --pdf --batch
MAKEINFOHTML = $(MAKEINFO) --html
@@ -1857,6 +1838,8 @@ device_driver_seagate_FALSE = @device_dr
device_driver_seagate_TRUE = @device_driver_seagate_TRUE@
device_driver_seeq8005_FALSE = @device_driver_seeq8005_FALSE@
device_driver_seeq8005_TRUE = @device_driver_seeq8005_TRUE@
+device_driver_sis900_FALSE = @device_driver_sis900_FALSE@
+device_driver_sis900_TRUE = @device_driver_sis900_TRUE@
device_driver_sk_g16_FALSE = @device_driver_sk_g16_FALSE@
device_driver_sk_g16_TRUE = @device_driver_sk_g16_TRUE@
device_driver_smc91c92_cs_FALSE = @device_driver_smc91c92_cs_FALSE@
@@ -1959,8 +1942,7 @@ EXTRA_DIST = gensym.awk ipc/mach_port.sr
linux/src/drivers/scsi/NCR5380.h linux/src/drivers/net/8390.h \
linux/src/drivers/net/kern_compat.h linux/pcmcia-cs/glue/ds.c \
linux/dev/README linux/src/COPYING linux/dev/include \
- linux/src/include linux/pcmcia-cs/include $(am__append_112) \
- $(mach_TEXINFOS) \
+ linux/src/include linux/pcmcia-cs/include $(am__append_113) \
Makefile.correct_output_files_for_.S_files.patch \
config.status.dep.patch ChangeLog.0 ChangeLog.00 DEVELOPMENT
@@ -1983,9 +1965,9 @@ DISTCHECK_CONFIGURE_FLAGS = --enable-kdb
# <http://lists.gnu.org/archive/html/automake/2006-10/msg00039.html> about what
# we really want to do.
noinst_LIBRARIES = libkernel.a lib_dep_tr_for_defs.a $(am__append_4) \
- $(am__append_96)
+ $(am__append_97)
TESTS = tests/test-mbchk
-info_TEXINFOS = doc/mach.texi
+info_TEXINFOS =
# kern/mach.server.defs
# kern/mach4.server.defs
# kern/mach_debug.server.defs
@@ -2082,10 +2064,10 @@ libkernel_a_SOURCES = $(am__append_2) ip
kern/time_out.h kern/time_stamp.c kern/time_stamp.h \
kern/timer.c kern/timer.h kern/xpr.c kern/xpr.h kern/zalloc.c \
kern/zalloc.h kern/elf-load.c kern/boot_script.c \
- util/putchar.c util/puts.c vm/memory_object.c \
- vm/memory_object.h vm/pmap.h vm/vm_debug.c vm/vm_external.c \
- vm/vm_external.h vm/vm_fault.c vm/vm_fault.h vm/vm_init.c \
- vm/vm_kern.c vm/vm_kern.h vm/vm_map.c vm/vm_map.h \
+ util/putchar.c util/puts.c vm/memory_object_proxy.c \
+ vm/memory_object.c vm/memory_object.h vm/pmap.h vm/vm_debug.c \
+ vm/vm_external.c vm/vm_external.h vm/vm_fault.c vm/vm_fault.h \
+ vm/vm_init.c vm/vm_kern.c vm/vm_kern.h vm/vm_map.c vm/vm_map.h \
vm/vm_object.c vm/vm_object.h vm/vm_page.h vm/vm_pageout.c \
vm/vm_pageout.h vm/vm_resident.c vm/vm_user.c vm/vm_user.h \
device/blkio.c device/buf.h device/chario.c device/cirbuf.h \
@@ -2096,8 +2078,8 @@ libkernel_a_SOURCES = $(am__append_2) ip
device/ds_routines.h device/errno.h device/if_ether.h \
device/if_hdr.h device/io_req.h device/kmsg.h device/net_io.c \
device/net_io.h device/param.h device/subrs.c device/tty.h \
- $(am__append_3) $(am__append_109) $(am__append_110) \
- $(am__append_111) $(am__append_113) $(am__append_114)
+ $(am__append_3) $(am__append_110) $(am__append_111) \
+ $(am__append_112) $(am__append_114) $(am__append_115)
#
# Version number.
@@ -2113,10 +2095,10 @@ nodist_libkernel_a_SOURCES = version.c v
kern/mach4.server.h kern/mach4.server.c \
kern/mach_debug.server.h kern/mach_debug.server.c \
kern/mach_host.server.h kern/mach_host.server.c \
- $(am__append_116)
-gnumach_o_LDADD = libkernel.a $(am__append_5) $(am__append_97)
+ $(am__append_117)
+gnumach_o_LDADD = libkernel.a $(am__append_5) $(am__append_98)
gnumach_SOURCES =
-gnumach_LINKFLAGS = $(am__append_117)
+gnumach_LINKFLAGS = $(am__append_118)
#
# Installation.
@@ -2219,7 +2201,7 @@ nodist_lib_dep_tr_for_defs_a_SOURCES =
device/device.server.defs.c device/device_pager.server.defs.c \
ipc/mach_port.server.defs.c kern/mach.server.defs.c \
kern/mach4.server.defs.c kern/mach_debug.server.defs.c \
- kern/mach_host.server.defs.c $(am__append_115)
+ kern/mach_host.server.defs.c $(am__append_116)
# Preprocess only.
lib_dep_tr_for_defs_a_CPPFLAGS = $(AM_CPPFLAGS) \
-E
@@ -2280,7 +2262,8 @@ liblinux_a_SOURCES = linux/dev/init/vers
$(am__append_85) $(am__append_86) $(am__append_87) \
$(am__append_88) $(am__append_89) $(am__append_90) \
$(am__append_91) $(am__append_92) $(am__append_93) \
- $(am__append_94) $(am__append_95) $(am__append_108)
+ $(am__append_94) $(am__append_95) $(am__append_96) \
+ $(am__append_109)
# pcmcia-cs.
liblinux_pcmcia_cs_modules_a_CPPFLAGS = $(liblinux_a_CPPFLAGS) \
@@ -2297,24 +2280,24 @@ liblinux_pcmcia_cs_modules_a_SOURCES = l
linux/pcmcia-cs/modules/rsrc_mgr.c \
linux/pcmcia-cs/modules/bulkmem.c \
linux/pcmcia-cs/modules/cistpl.c \
- linux/pcmcia-cs/modules/pci_fixup.c $(am__append_98)
+ linux/pcmcia-cs/modules/pci_fixup.c $(am__append_99)
liblinux_pcmcia_cs_clients_a_CPPFLAGS = $(liblinux_a_CPPFLAGS) \
-DPCMCIA_CLIENT -I$(srcdir)/linux/pcmcia-cs/include
liblinux_pcmcia_cs_clients_a_CFLAGS = $(liblinux_a_CFLAGS) \
-include $(srcdir)/linux/pcmcia-cs/glue/pcmcia_glue.h
-liblinux_pcmcia_cs_clients_a_SOURCES = $(am__append_99) \
- $(am__append_100) $(am__append_101) $(am__append_102) \
- $(am__append_103) $(am__append_104) $(am__append_105) \
- $(am__append_106)
+liblinux_pcmcia_cs_clients_a_SOURCES = $(am__append_100) \
+ $(am__append_101) $(am__append_102) $(am__append_103) \
+ $(am__append_104) $(am__append_105) $(am__append_106) \
+ $(am__append_107)
liblinux_pcmcia_cs_wireless_a_CPPFLAGS = $(liblinux_a_CPPFLAGS) \
-I$(srcdir)/linux/pcmcia-cs/include
liblinux_pcmcia_cs_wireless_a_CFLAGS = $(liblinux_a_CFLAGS) \
-include $(srcdir)/linux/pcmcia-cs/glue/wireless_glue.h
-liblinux_pcmcia_cs_wireless_a_SOURCES = $(am__append_107)
+liblinux_pcmcia_cs_wireless_a_SOURCES = $(am__append_108)
#
# Installation.
@@ -2340,14 +2323,6 @@ liblinux_pcmcia_cs_wireless_a_SOURCES =
@HOST_ix86_TRUE@ i386/include/mach/i386/vm_param.h \
@HOST_ix86_TRUE@ i386/include/mach/i386/vm_types.h
-mach_TEXINFOS = \
- doc/fdl.texi doc/gpl.texi
-
-
-#
-# Web pages of the GNU Mach Reference Manual.
-#
-web = doc/web
# Makerules: how to do some things.
@@ -2356,6 +2331,7 @@ web = doc/web
# Test suite.
# Documentation.
+#include doc/Makefrag.am
#
# Kernel Image
@@ -2390,7 +2366,7 @@ all: config.h
.SUFFIXES: .S .c .dvi .o .obj .ps
am--refresh:
@:
-$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/Makerules.am $(srcdir)/Makefrag.am $(srcdir)/linux/Makefrag.am $(srcdir)/i386/linux/Makefrag.am $(srcdir)/i386/Makefrag.am $(srcdir)/tests/Makefrag.am $(srcdir)/doc/Makefrag.am $(am__configure_deps)
+$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/Makerules.am $(srcdir)/Makefrag.am $(srcdir)/linux/Makefrag.am $(srcdir)/i386/linux/Makefrag.am $(srcdir)/i386/Makefrag.am $(srcdir)/tests/Makefrag.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
@@ -2680,6 +2656,8 @@ util/putchar.$(OBJEXT): util/$(am__dirst
util/$(DEPDIR)/$(am__dirstamp)
util/puts.$(OBJEXT): util/$(am__dirstamp) \
util/$(DEPDIR)/$(am__dirstamp)
+vm/memory_object_proxy.$(OBJEXT): vm/$(am__dirstamp) \
+ vm/$(DEPDIR)/$(am__dirstamp)
vm/memory_object.$(OBJEXT): vm/$(am__dirstamp) \
vm/$(DEPDIR)/$(am__dirstamp)
vm/vm_debug.$(OBJEXT): vm/$(am__dirstamp) vm/$(DEPDIR)/$(am__dirstamp)
@@ -3290,6 +3268,9 @@ linux/src/drivers/net/liblinux_a-rtl8139
linux/src/drivers/net/liblinux_a-seeq8005.$(OBJEXT): \
linux/src/drivers/net/$(am__dirstamp) \
linux/src/drivers/net/$(DEPDIR)/$(am__dirstamp)
+linux/src/drivers/net/liblinux_a-sis900.$(OBJEXT): \
+ linux/src/drivers/net/$(am__dirstamp) \
+ linux/src/drivers/net/$(DEPDIR)/$(am__dirstamp)
linux/src/drivers/net/liblinux_a-sk_g16.$(OBJEXT): \
linux/src/drivers/net/$(am__dirstamp) \
linux/src/drivers/net/$(DEPDIR)/$(am__dirstamp)
@@ -3722,6 +3703,7 @@ mostlyclean-compile:
-rm -f linux/src/drivers/net/liblinux_a-pcnet32.$(OBJEXT)
-rm -f linux/src/drivers/net/liblinux_a-rtl8139.$(OBJEXT)
-rm -f linux/src/drivers/net/liblinux_a-seeq8005.$(OBJEXT)
+ -rm -f linux/src/drivers/net/liblinux_a-sis900.$(OBJEXT)
-rm -f linux/src/drivers/net/liblinux_a-sk_g16.$(OBJEXT)
-rm -f linux/src/drivers/net/liblinux_a-smc-ultra.$(OBJEXT)
-rm -f linux/src/drivers/net/liblinux_a-smc-ultra32.$(OBJEXT)
@@ -3780,6 +3762,7 @@ mostlyclean-compile:
-rm -f vm/lib_dep_tr_for_defs_a-memory_object_user.user.defs.$(OBJEXT)
-rm -f vm/memory_object.$(OBJEXT)
-rm -f vm/memory_object_default.user.$(OBJEXT)
+ -rm -f vm/memory_object_proxy.$(OBJEXT)
-rm -f vm/memory_object_user.user.$(OBJEXT)
-rm -f vm/vm_debug.$(OBJEXT)
-rm -f vm/vm_external.$(OBJEXT)
@@ -4041,6 +4024,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@linux/src/drivers/net/$(DEPDIR)/liblinux_a-pcnet32.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@linux/src/drivers/net/$(DEPDIR)/liblinux_a-rtl8139.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@linux/src/drivers/net/$(DEPDIR)/liblinux_a-seeq8005.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@linux/src/drivers/net/$(DEPDIR)/liblinux_a-sis900.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@linux/src/drivers/net/$(DEPDIR)/liblinux_a-sk_g16.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@linux/src/drivers/net/$(DEPDIR)/liblinux_a-smc-ultra.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@linux/src/drivers/net/$(DEPDIR)/liblinux_a-smc-ultra32.Po@am__quote@
@@ -4099,6 +4083,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@vm/$(DEPDIR)/lib_dep_tr_for_defs_a-memory_object_user.user.defs.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@vm/$(DEPDIR)/memory_object.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@vm/$(DEPDIR)/memory_object_default.user.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@vm/$(DEPDIR)/memory_object_proxy.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@vm/$(DEPDIR)/memory_object_user.user.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@vm/$(DEPDIR)/vm_debug.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@vm/$(DEPDIR)/vm_external.Po@am__quote@
@@ -5819,6 +5804,20 @@ linux/src/drivers/net/liblinux_a-seeq800
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinux_a_CPPFLAGS) $(CPPFLAGS) $(liblinux_a_CFLAGS) $(CFLAGS) -c -o linux/src/drivers/net/liblinux_a-seeq8005.obj `if test -f 'linux/src/drivers/net/seeq8005.c'; then $(CYGPATH_W) 'linux/src/drivers/net/seeq8005.c'; else $(CYGPATH_W) '$(srcdir)/linux/src/drivers/net/seeq8005.c'; fi`
+linux/src/drivers/net/liblinux_a-sis900.o: linux/src/drivers/net/sis900.c
+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinux_a_CPPFLAGS) $(CPPFLAGS) $(liblinux_a_CFLAGS) $(CFLAGS) -MT linux/src/drivers/net/liblinux_a-sis900.o -MD -MP -MF "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sis900.Tpo" -c -o linux/src/drivers/net/liblinux_a-sis900.o `test -f 'linux/src/drivers/net/sis900.c' || echo '$(srcdir)/'`linux/src/drivers/net/sis900.c; \
+@am__fastdepCC_TRUE@ then mv -f "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sis900.Tpo" "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sis900.Po"; else rm -f "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sis900.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='linux/src/drivers/net/sis900.c' object='linux/src/drivers/net/liblinux_a-sis900.o' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinux_a_CPPFLAGS) $(CPPFLAGS) $(liblinux_a_CFLAGS) $(CFLAGS) -c -o linux/src/drivers/net/liblinux_a-sis900.o `test -f 'linux/src/drivers/net/sis900.c' || echo '$(srcdir)/'`linux/src/drivers/net/sis900.c
+
+linux/src/drivers/net/liblinux_a-sis900.obj: linux/src/drivers/net/sis900.c
+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinux_a_CPPFLAGS) $(CPPFLAGS) $(liblinux_a_CFLAGS) $(CFLAGS) -MT linux/src/drivers/net/liblinux_a-sis900.obj -MD -MP -MF "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sis900.Tpo" -c -o linux/src/drivers/net/liblinux_a-sis900.obj `if test -f 'linux/src/drivers/net/sis900.c'; then $(CYGPATH_W) 'linux/src/drivers/net/sis900.c'; else $(CYGPATH_W) '$(srcdir)/linux/src/drivers/net/sis900.c'; fi`; \
+@am__fastdepCC_TRUE@ then mv -f "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sis900.Tpo" "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sis900.Po"; else rm -f "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sis900.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='linux/src/drivers/net/sis900.c' object='linux/src/drivers/net/liblinux_a-sis900.obj' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinux_a_CPPFLAGS) $(CPPFLAGS) $(liblinux_a_CFLAGS) $(CFLAGS) -c -o linux/src/drivers/net/liblinux_a-sis900.obj `if test -f 'linux/src/drivers/net/sis900.c'; then $(CYGPATH_W) 'linux/src/drivers/net/sis900.c'; else $(CYGPATH_W) '$(srcdir)/linux/src/drivers/net/sis900.c'; fi`
+
linux/src/drivers/net/liblinux_a-sk_g16.o: linux/src/drivers/net/sk_g16.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinux_a_CPPFLAGS) $(CPPFLAGS) $(liblinux_a_CFLAGS) $(CFLAGS) -MT linux/src/drivers/net/liblinux_a-sk_g16.o -MD -MP -MF "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sk_g16.Tpo" -c -o linux/src/drivers/net/liblinux_a-sk_g16.o `test -f 'linux/src/drivers/net/sk_g16.c' || echo '$(srcdir)/'`linux/src/drivers/net/sk_g16.c; \
@am__fastdepCC_TRUE@ then mv -f "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sk_g16.Tpo" "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sk_g16.Po"; else rm -f "linux/src/drivers/net/$(DEPDIR)/liblinux_a-sk_g16.Tpo"; exit 1; fi
@@ -6280,74 +6279,6 @@ linux/pcmcia-cs/wireless/liblinux_pcmcia
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='linux/pcmcia-cs/wireless/orinoco_cs.c' object='linux/pcmcia-cs/wireless/liblinux_pcmcia_cs_wireless_a-orinoco_cs.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinux_pcmcia_cs_wireless_a_CPPFLAGS) $(CPPFLAGS) $(liblinux_pcmcia_cs_wireless_a_CFLAGS) $(CFLAGS) -c -o linux/pcmcia-cs/wireless/liblinux_pcmcia_cs_wireless_a-orinoco_cs.obj `if test -f 'linux/pcmcia-cs/wireless/orinoco_cs.c'; then $(CYGPATH_W) 'linux/pcmcia-cs/wireless/orinoco_cs.c'; else $(CYGPATH_W) '$(srcdir)/linux/pcmcia-cs/wireless/orinoco_cs.c'; fi`
-doc/$(am__dirstamp):
- @$(mkdir_p) doc
- @: > doc/$(am__dirstamp)
-
-$(srcdir)/doc/mach.info: doc/mach.texi $(srcdir)/doc/version.texi
- restore=: && backupdir="$(am__leading_dot)am$$$$" && \
- am__cwd=`pwd` && cd $(srcdir) && \
- rm -rf $$backupdir && mkdir $$backupdir && \
- if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
- for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
- if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
- done; \
- else :; fi && \
- cd "$$am__cwd"; \
- if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
- -o $@ $(srcdir)/doc/mach.texi; \
- then \
- rc=0; \
- cd $(srcdir); \
- else \
- rc=$$?; \
- cd $(srcdir) && \
- $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
- fi; \
- rm -rf $$backupdir; exit $$rc
-
-doc/mach.dvi: doc/mach.texi $(srcdir)/doc/version.texi doc/$(am__dirstamp)
- TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
- MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
- $(TEXI2DVI) -o $@ `test -f 'doc/mach.texi' || echo '$(srcdir)/'`doc/mach.texi
-
-doc/mach.pdf: doc/mach.texi $(srcdir)/doc/version.texi doc/$(am__dirstamp)
- TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
- MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
- $(TEXI2PDF) -o $@ `test -f 'doc/mach.texi' || echo '$(srcdir)/'`doc/mach.texi
-
-doc/mach.html: doc/mach.texi $(srcdir)/doc/version.texi doc/$(am__dirstamp)
- rm -rf $(@:.html=.htp)
- if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
- -o $(@:.html=.htp) `test -f 'doc/mach.texi' || echo '$(srcdir)/'`doc/mach.texi; \
- then \
- rm -rf $@; \
- if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
- mv $(@:.html=) $@; else mv $(@:.html=.htp) $@; fi; \
- else \
- if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
- rm -rf $(@:.html=); else rm -Rf $(@:.html=.htp) $@; fi; \
- exit 1; \
- fi
-$(srcdir)/doc/stamp-vti: doc/mach.texi $(top_srcdir)/configure
- test -f doc/$(am__dirstamp) || $(MAKE) doc/$(am__dirstamp)
- @(dir=.; test -f ./doc/mach.texi || dir=$(srcdir); \
- set `$(SHELL) $(top_srcdir)/build-aux/mdate-sh $$dir/doc/mach.texi`; \
- echo "@set UPDATED $$1 $$2 $$3"; \
- echo "@set UPDATED-MONTH $$2 $$3"; \
- echo "@set EDITION $(VERSION)"; \
- echo "@set VERSION $(VERSION)") > vti.tmp
- @cmp -s vti.tmp $(srcdir)/doc/version.texi \
- || (echo "Updating $(srcdir)/doc/version.texi"; \
- cp vti.tmp $(srcdir)/doc/version.texi)
- -@rm -f vti.tmp
- @cp $(srcdir)/doc/version.texi $@
-
-mostlyclean-vti:
- -rm -f vti.tmp
-
-maintainer-clean-vti:
- -rm -f $(srcdir)/doc/stamp-vti $(srcdir)/doc/version.texi
.dvi.ps:
TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
$(DVIPS) -o $@ $<
@@ -6393,9 +6324,7 @@ dist-info: $(INFO_DEPS)
done
mostlyclean-aminfo:
- -rm -rf mach.aux mach.cp mach.cps mach.fn mach.fns mach.ky mach.kys mach.log \
- mach.pg mach.tmp mach.toc mach.tp mach.vr doc/mach.dvi \
- doc/mach.pdf doc/mach.ps doc/mach.html
+ -rm -rf
maintainer-clean-aminfo:
@list='$(INFO_DEPS)'; for i in $$list; do \
@@ -6697,7 +6626,7 @@ check-TESTS: $(TESTS)
distdir: $(DISTFILES)
$(am__remove_distdir)
mkdir $(distdir)
- $(mkdir_p) $(distdir)/. $(distdir)/build-aux $(distdir)/device $(distdir)/doc $(distdir)/i386 $(distdir)/i386/i386 $(distdir)/i386/include/mach/i386 $(distdir)/i386/linux $(distdir)/include/device $(distdir)/include/mach $(distdir)/include/mach/exec $(distdir)/ipc $(distdir)/kern $(distdir)/linux $(distdir)/linux/dev $(distdir)/linux/pcmcia-cs $(distdir)/linux/pcmcia-cs/glue $(distdir)/linux/src $(distdir)/linux/src/drivers/net $(distdir)/linux/src/drivers/scsi $(distdir)/tests $(distdir)/vm
+ $(mkdir_p) $(distdir)/. $(distdir)/build-aux $(distdir)/device $(distdir)/i386 $(distdir)/i386/i386 $(distdir)/i386/include/mach/i386 $(distdir)/i386/linux $(distdir)/include/device $(distdir)/include/mach $(distdir)/include/mach/exec $(distdir)/ipc $(distdir)/kern $(distdir)/linux $(distdir)/linux/dev $(distdir)/linux/pcmcia-cs $(distdir)/linux/pcmcia-cs/glue $(distdir)/linux/src $(distdir)/linux/src/drivers/net $(distdir)/linux/src/drivers/scsi $(distdir)/tests $(distdir)/vm
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
list='$(DISTFILES)'; for file in $$list; do \
@@ -6876,7 +6805,6 @@ distclean-generic:
-rm -f ddb/$(am__dirstamp)
-rm -f device/$(DEPDIR)/$(am__dirstamp)
-rm -f device/$(am__dirstamp)
- -rm -f doc/$(am__dirstamp)
-rm -f i386/i386/$(DEPDIR)/$(am__dirstamp)
-rm -f i386/i386/$(am__dirstamp)
-rm -f i386/i386at/$(DEPDIR)/$(am__dirstamp)
@@ -6954,7 +6882,7 @@ dvi-am: $(DVIS)
html: html-recursive
-html-am: $(HTMLS) html-local
+html-am: $(HTMLS)
info: info-recursive
@@ -7010,20 +6938,20 @@ maintainer-clean: maintainer-clean-recur
-rm -rf ./$(DEPDIR) chips/$(DEPDIR) ddb/$(DEPDIR) device/$(DEPDIR) i386/i386/$(DEPDIR) i386/i386at/$(DEPDIR) i386/intel/$(DEPDIR) ipc/$(DEPDIR) kern/$(DEPDIR) linux/dev/arch/i386/kernel/$(DEPDIR) linux/dev/drivers/block/$(DEPDIR) linux/dev/drivers/net/$(DEPDIR) linux/dev/drivers/scsi/$(DEPDIR) linux/dev/glue/$(DEPDIR) linux/dev/init/$(DEPDIR) linux/dev/kernel/$(DEPDIR) linux/dev/lib/$(DEPDIR) linux/dev/net/core/$(DEPDIR) linux/pcmcia-cs/clients/$(DEPDIR) linux/pcmcia-cs/glue/$(DEPDIR) linux/pcmcia-cs/modules/$(DEPDIR) linux/pcmcia-cs/wireless/$(DEPDIR) linux/src/arch/i386/kernel/$(DEPDIR) linux/src/arch/i386/lib/$(DEPDIR) linux/src/drivers/block/$(DEPDIR) linux/src/drivers/net/$(DEPDIR) linux/src/drivers/pci/$(DEPDIR) linux/src/drivers/scsi/$(DEPDIR) linux/src/lib/$(DEPDIR) util/$(DEPDIR) vm/$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-aminfo \
- maintainer-clean-generic maintainer-clean-vti
+ maintainer-clean-generic
mostlyclean: mostlyclean-recursive
mostlyclean-am: mostlyclean-aminfo mostlyclean-compile \
- mostlyclean-generic mostlyclean-vti
+ mostlyclean-generic
pdf: pdf-recursive
-pdf-am: $(PDFS) pdf-local
+pdf-am: $(PDFS)
ps: ps-recursive
-ps-am: $(PSS) ps-local
+ps-am: $(PSS)
uninstall-am: uninstall-exec_bootPROGRAMS uninstall-exec_msgidsDATA \
uninstall-include_deviceHEADERS uninstall-include_machHEADERS \
@@ -7040,19 +6968,18 @@ uninstall-info: uninstall-info-recursive
distcheck distclean distclean-compile distclean-generic \
distclean-hdr distclean-recursive distclean-tags \
distcleancheck distdir distuninstallcheck dvi dvi-am html \
- html-am html-local info info-am install install-am \
- install-data install-data-am install-data-hook install-exec \
- install-exec-am install-exec_bootPROGRAMS \
- install-exec_msgidsDATA install-include_deviceHEADERS \
- install-include_machHEADERS install-include_mach_eXecHEADERS \
+ html-am info info-am install install-am install-data \
+ install-data-am install-data-hook install-exec install-exec-am \
+ install-exec_bootPROGRAMS install-exec_msgidsDATA \
+ install-include_deviceHEADERS install-include_machHEADERS \
+ install-include_mach_eXecHEADERS \
install-include_mach_i386HEADERS install-info install-info-am \
install-man install-strip installcheck installcheck-am \
installdirs installdirs-am maintainer-clean \
maintainer-clean-aminfo maintainer-clean-generic \
- maintainer-clean-recursive maintainer-clean-vti mostlyclean \
- mostlyclean-aminfo mostlyclean-compile mostlyclean-generic \
- mostlyclean-recursive mostlyclean-vti pdf pdf-am pdf-local ps \
- ps-am ps-local tags tags-recursive uninstall uninstall-am \
+ maintainer-clean-recursive mostlyclean mostlyclean-aminfo \
+ mostlyclean-compile mostlyclean-generic mostlyclean-recursive \
+ pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
uninstall-exec_bootPROGRAMS uninstall-exec_msgidsDATA \
uninstall-include_deviceHEADERS uninstall-include_machHEADERS \
uninstall-include_mach_eXecHEADERS \
@@ -7206,87 +7133,6 @@ dist-hook-linux:
#
# ix86.
-
-# Prepare a checkout in `$(web)/' of the web pages of the GNU Mach Reference
-# Manual, using the same account that was used for the source code. Then
-# install the potentially updated files into `$(web)/'.
-.PHONY: $(web)
-$(web):
- if test -d $@/CVS; then :; else \
- mkdir -p $@ $@/CVS && \
- sed -e s%cvsroot%web% \
- < $(top_srcdir)/CVS/Root \
- > $@/CVS/Root && \
- echo hurd/gnumach-doc \
- > $@/CVS/Repository && \
- : > $@/CVS/Entries; \
- fi
- cd $@/ && \
- cvs update
- $(MAKE) $(AM_MAKEFLAGS) \
- html \
- ps \
- pdf
-
-# Update the files, if such a checkout exists.
-html-local:
- if test -d $(web); then \
- ( cd $(web)/ && \
- for f in *.html; do \
- if test -f ../../$(HTMLS)/"$$f"; then :; else \
- echo "\`$$f' isn't anymore. Removing." && \
- rm "$$f" && \
- cvs remove "$$f"; \
- fi; \
- done ) && \
- cp $(HTMLS)/*.html $(web)/ && \
- cd $(web)/ && \
- { cvs add *.html || :; }; \
- fi
-ps-local:
- if test -d $(web); then \
- ( cd $(web)/ && \
- for f in *.ps; do \
- case \ $(PSS)\ in \
- \ doc/"$$f"\ ) :;; \
- *) echo "\`$$f' isn't anymore. Removing." && \
- rm -f "$$f" "$$f".ps && \
- cvs remove "$$f" "$$f".ps ;; \
- esac; \
- done ) && \
- cp $(PSS) $(web)/ && \
- cd $(web)/ && \
- for f in *.ps; do \
- gzip -9 < "$$f" > "$$f".gz; \
- done && \
- { cvs add *.ps *.ps.gz || :; }; \
- fi
-pdf-local:
- if test -d $(web); then \
- ( cd $(web)/ && \
- for f in *.pdf; do \
- case \ $(PDFS)\ in \
- \ doc/"$$f"\ ) :;; \
- *) echo "\`$$f' isn't anymore. Removing." && \
- rm "$$f" && \
- cvs remove "$$f";; \
- esac; \
- done ) && \
- cp $(PDFS) $(web)/ && \
- cd $(web)/ && \
- { cvs add *.pdf || :; }; \
- fi
-# TODO. There doesn't seem to be a hook or `-local' target suitable for this.
-$(srcdir)/doc/version.texi: $(srcdir)/doc/stamp-vti
- @if test -d $(web); then :; \
- elif grep -q :ext: $(top_srcdir)/CVS/Root 2> /dev/null; then \
- echo "*** As it seems that you'd be allowed to check in the" \
- "possible resulting fixes, you may cosider running" \
- " \`make $(web)' to get a checkout of the web pages of the" \
- "GNU Mach manual and have possible changes installed into" \
- "\`$(web)/', ready for checking them in in there." && \
- sleep 2; \
- fi
gnumach-undef: gnumach.$(OBJEXT)
$(NM) -u $< | sed 's/ *U *//;s/^_*//' | sort -u > $@
gnumach-undef-bad: gnumach-undef Makefile
|