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

« back to all changes in this revision

Viewing changes to src/system/subarch-mips-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:
39
39
};
40
40
 
41
41
static struct cpu system_sibyte_sb1_cpu[] = {
42
 
        { "SiByte SB1", "sb1-swarm-bn" },
43
 
        { NULL, "unknown" }
44
 
};
45
 
 
46
 
static struct cpu system_sni_rm200c_cpu[] = {
47
 
        /* match various R4000 variants */
48
 
        { "R4", "r4k-rm200c" },
 
42
        { "SiByte SB1A", "sb1a-bcm91480b" },
 
43
        { "SiByte SB1 ", "sb1-bcm91250a" },
49
44
        { NULL, "unknown" }
50
45
};
51
46
 
56
51
};
57
52
 
58
53
static struct systype system_type[] = {
59
 
        /* match "SGI Indy" and "SGI Indigo2" */
 
54
        /* match "SGI Indy" and "SGI Indigo2" (ip22) */
60
55
        {"SGI Ind", system_sgi_ind_cpu },
61
56
        /* SGI Origin (ip27) */
62
57
        {"SGI Origin", system_sgi_origin_cpu },
63
58
        /* SGI O2 (ip32) */
64
59
        {"SGI IP32", system_sgi_o2_cpu },
65
60
        {"SGI O2", system_sgi_o2_cpu },
66
 
        /* match the Broadcom SWARM development board */
67
 
        {"SiByte BCM91250A", system_sibyte_sb1_cpu },
68
 
        /* SNI RM200C */
69
 
        {"SNI RM200_PCI", system_sni_rm200c_cpu },
 
61
        /* match Broadcom SB1 development boards */
 
62
        {"SiByte BCM9", system_sibyte_sb1_cpu },
70
63
        /* add new system types here */
71
64
        { NULL, system_unknown_cpu }
72
65
};