mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Don't write the fsimage in the kernel on alpha - the combined
kernel + fsimage is far too large to fit on a single floppy. Copy it out for the later creation of a root floppy image instead.
This commit is contained in:
parent
1a1c25472a
commit
380dfc0050
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=39936
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile,v 1.394 1998/09/30 20:54:28 jkh Exp $
|
||||
# $Id: Makefile,v 1.395 1998/10/01 09:27:02 jkh Exp $
|
||||
#
|
||||
# make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ]
|
||||
#
|
||||
|
@ -712,8 +712,12 @@ doMFSKERN:
|
|||
@umount /tmp/mnt_xx
|
||||
@vnconfig -u /dev/${VNDEVICE}
|
||||
@rmdir /tmp/mnt_xx
|
||||
.if ${MACHINE_ARCH} == "i386"
|
||||
./write_mfs_in_kernel ${RD}/boot.${FSIMAGE}/kernel \
|
||||
fs-image.${FSIMAGE}
|
||||
.else
|
||||
cp fs-image.${FSIMAGE} ${RD}/floppies/
|
||||
.endif
|
||||
kzip -v ${RD}/boot.${FSIMAGE}/kernel
|
||||
@mv ${RD}/boot.${FSIMAGE}/kernel ${RD}/kernels/MFSKERNEL.${FSIMAGE}
|
||||
@mv ${RD}/boot.${FSIMAGE}/kernel.kz ${RD}/boot.${FSIMAGE}/kernel
|
||||
|
|
Loading…
Reference in a new issue