diff options
author | murray <murray@FreeBSD.org> | 2002-03-29 22:22:34 +0000 |
---|---|---|
committer | murray <murray@FreeBSD.org> | 2002-03-29 22:22:34 +0000 |
commit | 6085f75ded37ec415ded7d6373ecd09bcb088ac4 (patch) | |
tree | a8aee55b5418a8b82977a6bba5dde4da34c43f64 | |
parent | 13471ccf6bc8e0d9cfac06717f88decf0b3c8eb1 (diff) | |
download | FreeBSD-src-6085f75ded37ec415ded7d6373ecd09bcb088ac4.zip FreeBSD-src-6085f75ded37ec415ded7d6373ecd09bcb088ac4.tar.gz |
Alpha does not support PCCARD installs, so we do not need the 58k
/etc/defaults/pccard.conf. Assume for now that only
MACHINE_ARCH=="i386" wants to do PCCARD installs. We're still using
too much space, but this is a big help.
-rw-r--r-- | release/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/release/Makefile b/release/Makefile index 9df66cf..04c4400 100644 --- a/release/Makefile +++ b/release/Makefile @@ -611,7 +611,9 @@ release.8: ln -sf /stand $$dir; \ done ) cp /sbin/dhclient-script ${RD}/mfsfd/stand +.if ${MACHINE_ARCH} == "i386" cp ${.CURDIR}/../etc/defaults/pccard.conf ${RD}/mfsfd/etc/defaults/pccard.conf +.endif cp ${.CURDIR}/../etc/usbd.conf ${RD}/mfsfd/etc/usbd.conf cd ${RD}/trees/bin && ls ${BOOT1} | cpio -dump ${RD}/mfsfd/stand ( for F in netconfig protocols ; do \ |