diff options
author | marcel <marcel@FreeBSD.org> | 2003-11-02 08:58:57 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-11-02 08:58:57 +0000 |
commit | 7efdcbb8169eefba76f3e422589015af1683fffd (patch) | |
tree | 76055ac77430b946b52eaac1945f9dfa5c10ee25 /usr.sbin/sysinstall/Makefile | |
parent | a72947f90053eb81606537d7ad4dda3b6d10a766 (diff) | |
download | FreeBSD-src-7efdcbb8169eefba76f3e422589015af1683fffd.zip FreeBSD-src-7efdcbb8169eefba76f3e422589015af1683fffd.tar.gz |
o Add PART_EFI so that we can use it instead of PART_FAT on ia64
to better deal with the fact that we need an EFI partition and
that we need to have a mountpoint for it.
o When creating a new partition, add EFI to the list of types
the user can select from. This makes it easy to create an EFI.
o Do not include wizard.c on ia64.
o The user cannot create a partition on ia64 that's a multiple of
the cylinder size. We don't have a notion of cyclinders.
Diffstat (limited to 'usr.sbin/sysinstall/Makefile')
-rw-r--r-- | usr.sbin/sysinstall/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/Makefile b/usr.sbin/sysinstall/Makefile index e0b7f6a..62ee781 100644 --- a/usr.sbin/sysinstall/Makefile +++ b/usr.sbin/sysinstall/Makefile @@ -1,5 +1,9 @@ # $FreeBSD$ +.if ${MACHINE_ARCH} != "ia64" +_wizard= wizard.c +.endif + PROG= sysinstall MAN= sysinstall.8 SRCS= anonFTP.c cdrom.c command.c config.c devices.c dhcp.c \ @@ -8,7 +12,7 @@ SRCS= anonFTP.c cdrom.c command.c config.c devices.c dhcp.c \ label.c main.c makedevs.c media.c menus.c misc.c modules.c \ mouse.c msg.c network.c nfs.c options.c package.c \ system.c tape.c tcpip.c termcap.c ttys.c ufs.c usb.c user.c \ - variable.c wizard.c keymap.h + variable.c ${_wizard} keymap.h .if ${MACHINE} == "pc98" SRCS+= pccard.c |