Remove ia64 and powerpc #ifdefs: this is i386/pc98/alpha only code.

This commit is contained in:
Poul-Henning Kamp 2003-01-26 12:22:26 +00:00
parent 1c55bb01f3
commit 6250c8c527
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=109882
2 changed files with 6 additions and 6 deletions

View File

@ -104,9 +104,9 @@ __FBSDID("$FreeBSD$");
#define BIG_NEWFS_FRAG 2048U
#define BIG_NEWFS_CPG 64U
#if defined(__i386__) || defined(__ia64__)
#if defined(__i386__)
#define NUMBOOT 2
#elif defined(__alpha__) || defined(__powerpc__)
#elif defined(__alpha__)
#define NUMBOOT 1
#else
#error I do not know about this architecture.
@ -557,7 +557,7 @@ makebootarea(char *boot, struct disklabel *dp, int f)
* 1. One-piece bootstrap (alpha)
* up to d_bbsize bytes of ``xxboot'' go in bootarea, the rest
* is remembered and written later following the bootarea.
* 2. Two-piece bootstraps (i386/ia64)
* 2. Two-piece bootstraps (i386)
* up to d_secsize bytes of ``xxboot'' go in first d_secsize
* bytes of bootarea, remaining d_bbsize-d_secsize filled
* from ``bootxx''.

View File

@ -104,9 +104,9 @@ __FBSDID("$FreeBSD$");
#define BIG_NEWFS_FRAG 2048U
#define BIG_NEWFS_CPG 64U
#if defined(__i386__) || defined(__ia64__)
#if defined(__i386__)
#define NUMBOOT 2
#elif defined(__alpha__) || defined(__powerpc__)
#elif defined(__alpha__)
#define NUMBOOT 1
#else
#error I do not know about this architecture.
@ -557,7 +557,7 @@ makebootarea(char *boot, struct disklabel *dp, int f)
* 1. One-piece bootstrap (alpha)
* up to d_bbsize bytes of ``xxboot'' go in bootarea, the rest
* is remembered and written later following the bootarea.
* 2. Two-piece bootstraps (i386/ia64)
* 2. Two-piece bootstraps (i386)
* up to d_secsize bytes of ``xxboot'' go in first d_secsize
* bytes of bootarea, remaining d_bbsize-d_secsize filled
* from ``bootxx''.