diff options
author | gordon <gordon@FreeBSD.org> | 2003-06-30 05:06:43 +0000 |
---|---|---|
committer | gordon <gordon@FreeBSD.org> | 2003-06-30 05:06:43 +0000 |
commit | 3764707074b08f5916418458d97a4853a7738e21 (patch) | |
tree | 1143b84fb59393e12414bdf48a77334cd08eb189 /rescue | |
parent | 53954a1dfdc991d5186a474560343dfedb9a148b (diff) | |
download | FreeBSD-src-3764707074b08f5916418458d97a4853a7738e21.zip FreeBSD-src-3764707074b08f5916418458d97a4853a7738e21.tar.gz |
Fix fdisk naming issues on pc98 and other platforms.
Fix disklabel, bsdlabel, and sunlabel on various platforms.
Noticed by: tmm@
Submitted by: Tim Kientzle <kientzle@acm.org>
Diffstat (limited to 'rescue')
-rw-r--r-- | rescue/rescue/Makefile | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index 7f8c177..d8672f8 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -103,9 +103,9 @@ CRUNCH_SUPPRESS_LINK_-tcsh=1 # headers in addition to the standard 'paths.h' header. # CRUNCH_SRCDIRS+=$(.CURDIR)/../../sbin -CRUNCH_PROGS+=atm adjkerntz atacontrol badsect camcontrol ccdconfig \ - clri comcontrol conscontrol devfs disklabel dmesg dump \ - dumpfs dumpon fdisk fore_dnld fsck fsck_ffs fsck_msdosfs fsdb \ +CRUNCH_PROGS+=atm adjkerntz atacontrol badsect bsdlabel camcontrol \ + ccdconfig clri comcontrol conscontrol devfs dmesg dump \ + dumpfs dumpon fore_dnld fsck fsck_ffs fsck_msdosfs fsdb \ fsirand gbde growfs ifconfig ilmid init ip6fw ipf ipfs ipfstat \ ipfw ipmon ipnat kldconfig kldload kldstat kldunload ldconfig \ md5 mdconfig mdmfs mknod mount mount_cd9660 mount_ext2fs \ @@ -122,21 +122,33 @@ CRUNCH_LIBS+=-lalias -latm -lbsdxml -lcam -lcurses -ldevstat -lipsec -lipx \ -lgeom -lmd -lncp -lreadline -lsbuf -lsmb -lufs -lz .if ${MACHINE_ARCH} == "i386" -CRUNCH_PROGS+= cxconfig mount_nwfs mount_smbfs +CRUNCH_PROGS+= cxconfig fdisk mount_nwfs mount_smbfs +CRUNCH_ALIAS_bsdlabel= disklabel .endif .if ${MACHINE} == "pc98" CRUNCH_PROGS+= fdisk_pc98 +CRUNCH_ALIAS_bsdlabel= disklabel +CRUNCH_ALIAS_fdisk_pc98= fdisk .endif .if ${MACHINE_ARCH} == "ia64" -CRUNCH_PROGS+= mca gpt +CRUNCH_PROGS+= mca gpt fdisk +CRUNCH_ALIAS_bsdlabel= disklabel .endif .if ${MACHINE_ARCH} == "sparc64" +CRUNCH_PROGS+= fdisk sunlabel .endif .if ${MACHINE_ARCH} == "alpha" +CRUNCH_PROGS+= fdisk +CRUNCH_ALIAS_bsdlabel= disklabel +.endif + +.if ${MACHINE_ARCH} == "amd64" +CRUNCH_PROGS+= fdisk +CRUNCH_ALIAS_bsdlabel= disklabel .endif CRUNCH_SRCDIR_atm=$(.CURDIR)/../../sbin/atm/atm |