~ubuntu-branches/ubuntu/lucid/libdebian-installer/lucid

« back to all changes in this revision

Viewing changes to src/system/subarch-mipsel-linux.c

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank, Bastian Blank, Martin Michlmayr, Colin Watson, Joey Hess
  • Date: 2006-05-31 23:02:10 UTC
  • Revision ID: james.westby@ubuntu.com-20060531230210-z3sc8766e7j7n9ci
Tags: 0.42
[ Bastian Blank ]
* Bump shared library revision to 6.
* Add small AVL tree implementation.

[ Martin Michlmayr ]
* Remove (incomplete) BAST and LAST support.
* Drop Riscstation since it's no longer supported in 2.6 kernels.
* Rename arm/riscpc to arm/rpc for consistency.

[ Colin Watson ]
* Fix Hurd detection at build time.

[ Joey Hess ]
* Move more resolver debug logging into ENABLE_EXTENSIVE_DEBUG ifdefs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
};
22
22
 
23
23
static struct cpu system_sibyte_sb1_cpu[] = {
24
 
        { "SiByte SB1", "sb1-swarm-bn" },
 
24
        { "SiByte SB1A", "sb1a-bcm91480b" },
 
25
        { "SiByte SB1 ", "sb1-bcm91250a" },
25
26
        { NULL, "unknown" }
26
27
};
27
28
 
30
31
        { NULL, "unknown" }
31
32
};
32
33
 
33
 
static struct cpu system_lasat_cpu[] = {
34
 
        { "R5000", "lasat" },
35
 
        { NULL, "unknown" }
36
 
};
37
 
 
38
 
static struct cpu system_xxs1500_cpu[] = {
39
 
        { "Au1500", "xxs1500" },
40
 
        { NULL, "unknown" }
41
 
};
42
 
 
43
 
static struct cpu system_sni_rm200c_cpu[] = {
44
 
        { "R4", "r4k-rm200c" },
45
 
        { NULL, "unknown" }
46
 
};
47
 
 
48
 
static struct cpu system_necddb_5074_cpu[] = {
49
 
        { "R5000", "r5000-ddb5074" },
50
 
        { NULL, "unknown" }
51
 
};
52
 
 
53
 
static struct cpu system_necddb_5476_cpu[] = {
54
 
        { "R5432", "r5432-ddb5476" },
55
 
        { NULL, "unknown" }
56
 
};
57
 
 
58
 
static struct cpu system_necddb_5477_cpu[] = {
59
 
        { "R5432", "r5432-ddb5477" },
60
 
        { "R5500", "r5500-ddb5477" },
61
 
        { NULL, "unknown" }
62
 
};
63
 
 
64
 
static struct cpu system_necddb_rockhopper_cpu[] = {
65
 
        { "R5432", "r5432-rockhopper" },
66
 
        { "R5500", "r5500-rockhopper" },
67
 
        { NULL, "unknown" }
68
 
};
69
 
 
70
 
static struct cpu system_necddb_rockhopper2_cpu[] = {
71
 
        { "R5432", "r5432-rockhopper2" },
72
 
        { "R5500", "r5500-rockhopper2" },
73
 
        { NULL, "unknown" }
74
 
};
75
 
 
76
34
static struct cpu system_bcm_bcm947xx_cpu[] = {
77
35
        /* 2.4 */
78
 
        { "BCM3302", "bcm947xx"},
79
 
        { "BCM4710", "bcm947xx"},
 
36
        { "BCM3302", "bcm947xx" },
 
37
        { "BCM4710", "bcm947xx" },
80
38
        /* 2.6 */
81
 
        { "Broadcom BCM3302", "bcm947xx"},
 
39
        { "Broadcom BCM3302", "bcm947xx" },
82
40
        { "Broadcom BCM4710", "bcm947xx" },
83
41
        { NULL, "unknown" }
84
 
}
 
42
};
85
43
 
86
44
/* add new system types here */
87
45
 
98
56
         *      "Digital Personal DECstation"
99
57
         */
100
58
        {"Digital ", system_dec_decs_cpu },
101
 
        /* match the Broadcom SWARM development board */
102
 
        {"SiByte BCM91250A", system_sibyte_sb1_cpu },
 
59
        /* match Broadcom SB1 development boards */
 
60
        {"SiByte BCM9", system_sibyte_sb1_cpu },
103
61
        /* match MIPS based Cobalt machines (with old kernels) */
104
62
        {"MIPS Cobalt", system_cobalt_cpu },
105
63
        /* match MIPS based Cobalt machines (with new kernels),
110
68
         *      "Cobalt Qube2"
111
69
         */
112
70
        {"Cobalt ", system_cobalt_cpu },
113
 
        /* LASAT Masquerade Pro */
114
 
        {"MQ Pro", system_lasat_cpu },
115
 
        /* MyCable xxs1500 board */
116
 
        {"XXS1500", system_xxs1500_cpu },
117
 
        /* SNI RM200C */
118
 
        {"SNI RM200_PCI", system_sni_rm200c_cpu },
119
 
        /* NEC development boards */
120
 
        {"NEC DDB Vrc-5074", system_necddb_5074_cpu },
121
 
        {"NEC DDB Vrc-5476", system_necddb_5476_cpu },
122
 
        {"NEC DDB Vrc-5477", system_necddb_5477_cpu },
123
 
        {"NEC Rockhopper", system_necddb_rockhopper_cpu },
124
 
        {"NEC RockhopperII", system_necddb_rockhopper2_cpu },
125
71
        /* Broadcom based APs/NAS */
126
72
        {"Broadcom BCM947XX", system_bcm_bcm947xx_cpu },
127
73
        /* add new system types here */