diff options
| author | Gordon Tetlow <gordon@FreeBSD.org> | 2003-06-30 05:06:43 +0000 |
|---|---|---|
| committer | Gordon Tetlow <gordon@FreeBSD.org> | 2003-06-30 05:06:43 +0000 |
| commit | 9b6e332f0885db9a85e5d22c1717d83812e49bad (patch) | |
| tree | 1143b84fb59393e12414bdf48a77334cd08eb189 | |
| parent | 5d1dbc0e559cb54d29fc74cc2f248ace53c2961d (diff) | |
Notes
| -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 7f8c177e1fdd..d8672f871428 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 |
