]> git.saurik.com Git - apple/xnu.git/blobdiff - SETUP/config/config.h
xnu-3789.41.3.tar.gz
[apple/xnu.git] / SETUP / config / config.h
index bcb0d3eebe8413598cf8739400605bcb6bb71d9b..3692c798abb645350806bec125e01be167b2f816 100644 (file)
@@ -68,27 +68,6 @@ struct file_list {
        short   f_special;              /* requires special make rule */
        char    *f_needs;
        char    *f_extra;               /* stuff to add to make line */
-       /*
-        * Random values:
-        *      swap space parameters for swap areas
-        *      root device, etc. for system specifications
-        */
-       union {
-               struct {                /* when swap specification */
-                       dev_t   fuw_swapdev;
-                       int     fuw_swapsize;
-               } fuw;
-               struct {                /* when system specification */
-                       dev_t   fus_rootdev;
-                       dev_t   fus_argdev;
-                       dev_t   fus_dumpdev;
-               } fus;
-       } fun;
-#define        f_swapdev       fun.fuw.fuw_swapdev
-#define        f_swapsize      fun.fuw.fuw_swapsize
-#define        f_rootdev       fun.fus.fus_rootdev
-#define        f_argdev        fun.fus.fus_argdev
-#define        f_dumpdev       fun.fus.fus_dumpdev
 };
 
 /*
@@ -98,57 +77,23 @@ struct file_list {
 #define NORMAL         2
 #define        INVISIBLE       3
 #define        PROFILING       4
-#define        SYSTEMSPEC      5
-#define        SWAPSPEC        6
 
 /*
  * Attributes (flags).
  */
 #define        CONFIGDEP       0x01    /* obsolete? */
 #define        OPTIONSDEF      0x02    /* options definition entry */
-#define ORDERED                0x04    /* don't list in OBJ's, keep "files" order */
-#define SEDIT          0x08    /* run sed filter (SQT) */
-
-/*
- * Maximum number of fields for variable device fields (SQT).
- */
-#define        NFIELDS         10
-
-struct idlst {
-       char    *id;
-       struct  idlst *id_next;
-       int     id_vec;         /* Sun interrupt vector number */
-};
 
 struct device {
        int     d_type;                 /* CONTROLLER, DEVICE, bus adaptor */
-       struct  device *d_conn;         /* what it is connected to */
        const char      *d_name;        /* name of device (e.g. rk11) */
-       struct  idlst *d_vec;           /* interrupt vectors */
-       int     d_pri;                  /* interrupt priority */
-       int     d_addr;                 /* address of csr */
-       int     d_unit;                 /* unit number */
-       int     d_drive;                /* drive number */
        int     d_slave;                /* slave number */
 #define QUES   -1      /* -1 means '?' */
 #define        UNKNOWN -2      /* -2 means not set yet */
-       int     d_dk;                   /* if init 1 set to number for iostat */
        int     d_flags;                /* nlags for device init */
        struct  device *d_next;         /* Next one in list */
-        u_short d_mach;                 /* Sun - machine type (0 = all)*/
-        u_short d_bus;                  /* Sun - bus type (0 = unknown) */
-       u_long  d_fields[NFIELDS];      /* fields values (SQT) */
-       int     d_bin;                  /* interrupt bin (SQT) */
-       int     d_addrmod;              /* address modifier (MIPS) */
        char    *d_init;                /* pseudo device init routine name */
 };
-#define TO_NEXUS       (struct device *)-1
-#define TO_SLOT                (struct device *)-1
-
-struct config {
-       char    *c_dev;
-       char    *s_sysname;
-};
 
 /*
  * Config has a global notion of which machine type is
@@ -157,40 +102,7 @@ struct config {
  * it will build from ``Makefile.vax'' and use ``../vax/inline''
  * in the makerules, etc.
  */
-extern int     machine;
 extern const char      *machinename;
-#define        MACHINE_VAX     1
-#define        MACHINE_SUN     2
-#define        MACHINE_ROMP    3
-#define        MACHINE_SUN2    4
-#define        MACHINE_SUN3    5
-#define        MACHINE_MMAX    6
-#define        MACHINE_SQT     7
-#define MACHINE_SUN4   8
-#define        MACHINE_I386    9
-#define        MACHINE_IX      10
-#define MACHINE_MIPSY  11
-#define        MACHINE_MIPS    12
-#define        MACHINE_I860    13
-#define        MACHINE_M68K    14
-#define        MACHINE_M88K    15
-#define        MACHINE_M98K    16
-#define MACHINE_HPPA   17
-#define MACHINE_SPARC  18
-#define MACHINE_PPC    19
-#define MACHINE_ARM    20
-#define MACHINE_X86_64 21
-
-/*
- * For each machine, a set of CPU's may be specified as supported.
- * These and the options (below) are put in the C flags in the makefile.
- */
-struct cputype {
-       char    *cpu_name;
-       struct  cputype *cpu_next;
-};
-
-extern struct cputype  *cputype;
 
 /*
  * In order to configure and build outside the kernel source tree,
@@ -217,7 +129,6 @@ struct opt {
 
 extern struct opt *opt, *mkopt, *opt_tail, *mkopt_tail;
 
-extern char    *ident;
 const char     *get_word(FILE *fp);
 char   *ns(const char *str);
 char   *qu(int num);
@@ -225,12 +136,6 @@ char       *path(const char *file);
 
 extern int     do_trace;
 
-#if    MACHINE_VAX
-extern int     seen_mba, seen_uba;
-#endif
-
-extern int     seen_vme, seen_mbii;
-
 extern struct  device *dtab;
 dev_t  nametodev(char *name, int defunit, char defpartition);
 char   *devtoname(dev_t dev);
@@ -243,17 +148,10 @@ extern char       *build_directory;
 
 extern int     profiling;
 
-extern int     maxusers;
-
 #define eq(a,b)        (!strcmp(a,b))
 
-#ifdef mips
-#define DEV_MASK 0xf
-#define        DEV_SHIFT  4
-#else  /* mips */
 #define DEV_MASK 0x7
 #define        DEV_SHIFT  3
-#endif /* mips */
 
 /* External function references */
 char *get_rest(FILE *fp);
@@ -261,26 +159,7 @@ char *get_rest(FILE *fp);
 int yyparse(void);
 void yyerror(const char *s);
 
-void vax_ioconf(void);
-void sun_ioconf(void);
-void romp_ioconf(void);
-void mmax_ioconf(void);
-void sqt_ioconf(void);
-void i386_ioconf(void);
-void mips_ioconf(void);
-void m68k_ioconf(void);
-void m88k_ioconf(void);
-void m98k_ioconf(void);
-void hppa_ioconf(void);
-void sparc_ioconf(void);
-void ppc_ioconf(void);
-void arm_ioconf(void);
-void x86_64_ioconf(void);
-
-void swapconf(void);
-
-void ubglue(void);
-void mbglue(void);
+void mkioconf(void);
 
 void makefile(void);
 void headers(void);