diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-11-27 19:30:50 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-11-27 19:30:50 +0000 |
| commit | 75cd8b4038b52ce74a40fbe43b3d04e114cd249d (patch) | |
| tree | dd21a2df3560637e43d0bcb4f62d864a073909b9 | |
| parent | 25f775064e95ef02e7a00b89ee15e9d71656b63d (diff) | |
Notes
| -rw-r--r-- | usr.sbin/sade/sade.h | 14 | ||||
| -rw-r--r-- | usr.sbin/sysinstall/sysinstall.h | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/usr.sbin/sade/sade.h b/usr.sbin/sade/sade.h index e8653c73090a..6865809c7643 100644 --- a/usr.sbin/sade/sade.h +++ b/usr.sbin/sade/sade.h @@ -54,9 +54,23 @@ /*** Defines ***/ +#if defined(__i386__) || defined(__alpha__) || defined(__ia64__) +#define WITH_SYSCONS +#define WITH_MICE +#endif + +#if defined(__i386__) || defined(__ia64__) +#define WITH_SLICES +#endif + +#if defined(__i386__) || defined(__alpha__) +#define WITH_LINUX +#endif + #if defined(PC98) #define PCCARD_ARCH 1 /* Support PCCARD installations */ #endif + /* device limits */ #define DEV_NAME_MAX 64 /* The maximum length of a device name */ #define DEV_MAX 100 /* The maximum number of devices we'll deal with */ diff --git a/usr.sbin/sysinstall/sysinstall.h b/usr.sbin/sysinstall/sysinstall.h index e8653c73090a..6865809c7643 100644 --- a/usr.sbin/sysinstall/sysinstall.h +++ b/usr.sbin/sysinstall/sysinstall.h @@ -54,9 +54,23 @@ /*** Defines ***/ +#if defined(__i386__) || defined(__alpha__) || defined(__ia64__) +#define WITH_SYSCONS +#define WITH_MICE +#endif + +#if defined(__i386__) || defined(__ia64__) +#define WITH_SLICES +#endif + +#if defined(__i386__) || defined(__alpha__) +#define WITH_LINUX +#endif + #if defined(PC98) #define PCCARD_ARCH 1 /* Support PCCARD installations */ #endif + /* device limits */ #define DEV_NAME_MAX 64 /* The maximum length of a device name */ #define DEV_MAX 100 /* The maximum number of devices we'll deal with */ |
