diff options
author | peter <peter@FreeBSD.org> | 2002-10-27 00:21:02 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-10-27 00:21:02 +0000 |
commit | 29db798cec468c41893c359a01ae7b74c7e8035c (patch) | |
tree | 89626631ddf1264b0fc55bb15b84de6cf34c8135 /lib/libdisk/libdisk.h | |
parent | 588d4313cdf4c89a2bb7466afd610e848c95d7e7 (diff) | |
download | FreeBSD-src-29db798cec468c41893c359a01ae7b74c7e8035c.zip FreeBSD-src-29db798cec468c41893c359a01ae7b74c7e8035c.tar.gz |
Add back ia64 support that was removed in the last few revisions.
I've cloned write_ia64_disk.c from write_i386_disk.c.
Diffstat (limited to 'lib/libdisk/libdisk.h')
-rw-r--r-- | lib/libdisk/libdisk.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libdisk/libdisk.h b/lib/libdisk/libdisk.h index a015828..bf9b54d 100644 --- a/lib/libdisk/libdisk.h +++ b/lib/libdisk/libdisk.h @@ -38,10 +38,14 @@ struct disk { u_char *bootmenu; size_t bootmenu_size; #else +#if !defined(__ia64__) u_char *bootmgr; size_t bootmgr_size; #endif +#endif +#if !defined(__ia64__) u_char *boot1; +#endif #if defined(__i386__) /* the i386 needs extra help... */ u_char *boot2; #endif |