diff options
author | peter <peter@FreeBSD.org> | 2003-05-24 21:12:14 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-05-24 21:12:14 +0000 |
commit | edd5fa2492def21f0e01b3369c344e035a20b67e (patch) | |
tree | 43709e9efb37f6cadc3d7c17ffb2e5098c73f614 /usr.sbin/sysinstall/install.c | |
parent | 6f281cac4642de882563b3c87f62aa6d9f0785c9 (diff) | |
download | FreeBSD-src-edd5fa2492def21f0e01b3369c344e035a20b67e.zip FreeBSD-src-edd5fa2492def21f0e01b3369c344e035a20b67e.tar.gz |
Add __amd64__ ifdefs to enable the bootblock handling code, slices, etc.
Approved by: re (murray)
Obtained from: obrien
Diffstat (limited to 'usr.sbin/sysinstall/install.c')
-rw-r--r-- | usr.sbin/sysinstall/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 1a4dee1..2a0e0be 100644 --- a/usr.sbin/sysinstall/install.c +++ b/usr.sbin/sysinstall/install.c @@ -807,7 +807,7 @@ installFixupBase(dialogMenuItem *self) /* All of this is done only as init, just to be safe */ if (RunningAsInit) { -#ifdef __i386__ +#if defined(__i386__) || defined(__amd64__) if ((fp = fopen("/boot/loader.conf", "a")) != NULL) { if (!kstat || !OnVTY) fprintf(fp, "# -- sysinstall generated deltas -- #\n"); |