diff options
| author | Peter Grehan <grehan@FreeBSD.org> | 2005-07-21 03:32:29 +0000 |
|---|---|---|
| committer | Peter Grehan <grehan@FreeBSD.org> | 2005-07-21 03:32:29 +0000 |
| commit | a0d592f606623e065664ba96f2dab8a7f01c70a5 (patch) | |
| tree | e2a57b61bdce78f6f7563ec70ea5ff107289cac0 /usr.sbin/sysinstall | |
| parent | a52daa5fd2b2326b04f6b97e1239168e3254e0f6 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/sysinstall')
| -rw-r--r-- | usr.sbin/sysinstall/config.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.sbin/sysinstall/config.c b/usr.sbin/sysinstall/config.c index f86ce13d87b6..d41c4ea2b42c 100644 --- a/usr.sbin/sysinstall/config.c +++ b/usr.sbin/sysinstall/config.c @@ -207,7 +207,11 @@ configFstab(dialogMenuItem *self) if (!disk->chunks) msgFatal("No chunk list found for %s!", disk->name); for (c1 = disk->chunks->part; c1; c1 = c1->next) { +#ifdef __powerpc__ + if (c1->type == apple) { +#else if (c1->type == freebsd) { +#endif for (c2 = c1->part; c2; c2 = c2->next) { if (c2->type == part && (c2->subtype == FS_SWAP || c2->private_data)) chunk_list[nchunks++] = c2; |
