diff options
author | jhb <jhb@FreeBSD.org> | 2004-03-25 20:37:59 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2004-03-25 20:37:59 +0000 |
commit | 75ae6199e5dd7d621ed42390e425658541a06f48 (patch) | |
tree | fb2c9c0055aeee3f2825e0aa7741965ee0f8ba35 | |
parent | 00ea003e16ce8e592c79a9b1f60823a691b58f1f (diff) | |
download | FreeBSD-src-75ae6199e5dd7d621ed42390e425658541a06f48.zip FreeBSD-src-75ae6199e5dd7d621ed42390e425658541a06f48.tar.gz |
- Only build a fixit floppy on i386 and pc98.
- Reenable boot floppies for Alpha.
-rw-r--r-- | release/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/release/Makefile b/release/Makefile index d15361d..366ff58 100644 --- a/release/Makefile +++ b/release/Makefile @@ -179,10 +179,15 @@ MFSSIZE= 4320 MFSINODE= 8000 MFSLABEL= minimum3 .elif ${TARGET_ARCH} == "alpha" +FLOPPYSIZE= 1440 +FLOPPYSPLITSIZE= 1392 +FLOPPYINODE= 40000 +FLOPPYLABEL= fd1440 +BOOTINODE= 80000 MFSSIZE= 4320 MFSINODE= 8000 MFSLABEL= auto -NO_FLOPPIES= +SPLIT_MFSROOT= .elif ${TARGET_ARCH} == "sparc64" DISKLABEL= sunlabel MFSSIZE= 4096 @@ -247,7 +252,11 @@ CRUNCH_TARGETS+=fixit-small .endif .if !defined(NO_FLOPPIES) -EXTRAS= floppies.1 floppies.2 floppies.3 +EXTRAS= floppies.1 +.if ${TARGET_ARCH} == "i386" +EXTRAS+= floppies.2 +.endif +EXTRAS+= floppies.3 .endif EXTRAS+= ftp.1 .if !defined(NOCDROM) |