auxilary -> auxiliary

This commit is contained in:
wiz 2001-07-26 23:07:57 +00:00
parent 8a54ab244e
commit 79b57114c9
6 changed files with 19 additions and 19 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: disksubr.c,v 1.21 2001/07/26 22:55:13 wiz Exp $ */
/* $NetBSD: disksubr.c,v 1.22 2001/07/26 23:07:57 wiz Exp $ */
/*
* Copyright (c) 1995 Leo Weppelman.
@ -371,7 +371,7 @@ bsd_label(dev, strat, label, blkno, offsetp)
#ifdef DISKLABEL_AHDI
/*
* Check for consistency between the NetBSD partition table
* and the AHDI auxilary root sectors. There's no good reason
* and the AHDI auxiliary root sectors. There's no good reason
* to force such consistency, but issuing a warning may help
* an inexperienced sysadmin to prevent corruption of AHDI
* partitions.
@ -398,7 +398,7 @@ ck_label(dl, cdl)
if (*rp >= p->p_offset
&& *rp < p->p_offset + p->p_size) {
uprintf("Warning: NetBSD partition %c"
" includes AHDI auxilary root\n", 'a'+i);
" includes AHDI auxiliary root\n", 'a'+i);
}
}
}
@ -599,7 +599,7 @@ ahdi_to_bsd(dl, apt)
}
/*
* Fetch the AHDI partitions and auxilary roots.
* Fetch the AHDI partitions and auxiliary roots.
*
* Returns: 0 if successful,
* otherwise an I/O error occurred, and the

View File

@ -1,4 +1,4 @@
/* $NetBSD: ahdilabel.h,v 1.2 2001/01/07 21:05:16 leo Exp $ */
/* $NetBSD: ahdilabel.h,v 1.3 2001/07/26 23:07:57 wiz Exp $ */
/*
* Copyright (c) 1995 Leo Weppelman.
@ -61,7 +61,7 @@
#define AHDI_MAXRPD 4 /* max. # of partition descriptors */
/* in an AHDI bootblock (aka root) */
#define AHDI_MAXARPD 2 /* max. # of partition descriptors */
/* in an AHDI auxilary root sector */
/* in an AHDI auxiliary root sector */
struct ahdi_part {
u_int8_t ap_flg; /* bit 0 is in-use flag */
u_int8_t ap_id[3]; /* id: GEM, BGM, XGM, UNX, MIX */
@ -86,7 +86,7 @@ struct ahdi_root {
struct ahdi_ptbl {
struct cpu_disklabel *at_cdl;
u_int at_hdsize; /* size of volume in blocks */
u_int at_nroots; /* # of auxilary root sectors */
u_int at_nroots; /* # of auxiliary root sectors */
u_int at_nparts; /* # of AHDI partitions */
struct ahdi_part at_parts[AHDI_MAXPARTS];
};

View File

@ -1,4 +1,4 @@
/* $NetBSD: disklabel.h,v 1.6 2000/02/05 21:14:55 jdc Exp $ */
/* $NetBSD: disklabel.h,v 1.7 2001/07/26 23:07:57 wiz Exp $ */
/*
* Copyright (c) 1995 Leo Weppelman.
@ -50,7 +50,7 @@
#define SWAP_PART 1 /* xx?b is default swap partition */
#define RAW_PART 2 /* xx?c is raw partition */
#define MAXAUXROOTS 29 /* max. # of auxilary root sectors */
#define MAXAUXROOTS 29 /* max. # of auxiliary root sectors */
struct cpu_disklabel {
u_int cd_bblock; /* start of NetBSD boot block */
@ -59,7 +59,7 @@ struct cpu_disklabel {
#ifdef DISKLABEL_AHDI
u_int cd_bslst; /* start of AHDI bad sector list */
u_int cd_bslend; /* end of AHDI bad sector list */
u_int cd_roots[MAXAUXROOTS+1]; /* auxilary root sectors */
u_int cd_roots[MAXAUXROOTS+1]; /* auxiliary root sectors */
#endif /* DISKLABEL_AHDI */
};

View File

@ -1,4 +1,4 @@
/* $NetBSD: ahdilbl.h,v 1.2 1996/02/09 20:52:04 leo Exp $ */
/* $NetBSD: ahdilbl.h,v 1.3 2001/07/26 23:07:57 wiz Exp $ */
/*
* Copyright (c) 1995 Leo Weppelman.
@ -52,7 +52,7 @@
#define RAW_PART 2 /* xx?c is raw partition */
#define NO_BOOT_BLOCK ((u_int)-1)
#define MAXAUXROOTS 29 /* max. # of auxilary root sectors */
#define MAXAUXROOTS 29 /* max. # of auxiliary root sectors */
struct bootblock {
u_int8_t bb_xxboot[LABELOFFSET - sizeof(u_int32_t)];
@ -98,7 +98,7 @@ struct bootblock {
#define AHDI_MAXRPD 4 /* max. # of partition descriptors */
/* in the AHDI bootblock (aka root)*/
#define AHDI_MAXARPD 2 /* max. # of partition descriptors */
/* in an AHDI auxilary root sector */
/* in an AHDI auxiliary root sector */
struct ahdi_part {
u_int8_t ap_flg; /* bit 0 is in-use flag */

View File

@ -1,4 +1,4 @@
/* $NetBSD: aptck.h,v 1.1.1.1 1996/01/07 21:54:15 leo Exp $ */
/* $NetBSD: aptck.h,v 1.2 2001/07/26 23:07:57 wiz Exp $ */
/*
* Copyright (c) 1995 Waldi Ravens.
@ -75,8 +75,8 @@ typedef struct {
u_int hdsize; /* medium size from root sector */
u_int bslst; /* start of bad sector list */
u_int bslend; /* end of bad sector list */
u_int nroots; /* # of auxilary root sectors */
u_int *roots; /* list of auxilary roots */
u_int nroots; /* # of auxiliary root sectors */
u_int *roots; /* list of auxiliary roots */
u_int nparts; /* number of regular partitions */
part_t *parts; /* list of partition descriptors */
} disk_t;

View File

@ -1,4 +1,4 @@
/* $NetBSD: disklbl.c,v 1.3 1996/02/09 20:52:06 leo Exp $ */
/* $NetBSD: disklbl.c,v 1.4 2001/07/26 23:07:57 wiz Exp $ */
/*
* Copyright (c) 1995 Waldi Ravens.
@ -265,7 +265,7 @@ ahdi_display(dd)
for (j = 0; j < dd->nroots; ++j) {
u_int aux = dd->roots[j];
if (aux >= p1->start && aux <= p1->end) {
printf("FATAL: auxilary root at %u\n", aux);
printf("FATAL: auxiliary root at %u\n", aux);
rv = 1;
}
}
@ -290,7 +290,7 @@ ahdi_display(dd)
}
}
printf("\nTotal number of auxilary roots: %u\n", dd->nroots);
printf("\nTotal number of auxiliary roots: %u\n", dd->nroots);
printf("Total number of partitions : %u\n", dd->nparts);
if (dd->nparts == 0) {
printf("* Weird # of partitions (zero) *\n"); rv = 1;