diff options
author | phk <phk@FreeBSD.org> | 1999-11-27 14:32:27 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-11-27 14:32:27 +0000 |
commit | 4ca01ca6682b5523d8220283d96745ccb30f31ca (patch) | |
tree | fbc5c10413e8dd609630ce5ca6ea4c1606717793 /release/Makefile | |
parent | 4955977bad69ae0939c6eede4d50f3c8e9f843bf (diff) | |
download | FreeBSD-src-4ca01ca6682b5523d8220283d96745ccb30f31ca.zip FreeBSD-src-4ca01ca6682b5523d8220283d96745ccb30f31ca.tar.gz |
Create a symbolic link in the ftp directory, so that the user can
enter the URL directly to the FTP directory without worrying about
the BUILD_NAME.
Remove some extra quoting in a kernel config file.
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index 57cda64..95a78d7 100644 --- a/release/Makefile +++ b/release/Makefile @@ -546,6 +546,7 @@ release.9: ftp.1: @echo "Setting up FTP distribution area" @mkdir -p ${FD} + @ln -s . ${FD}/${BUILDNAME} @cd ${RD} && find floppies -print | cpio -dumpl ${FD} @cd ${RD}/dists && find . -print | cpio -dumpl ${FD} @for i in ${DIST_DOCS}; do \ @@ -718,7 +719,7 @@ doMFSKERN: @echo "options INTRO_USERCONFIG" >> ${.CURDIR}/../sys/i386/conf/BOOTMFS .endif .if defined(BIGBOOT) - @echo "options \"MFS_ROOT_SIZE=`cat mfsroot.size`\"" >> \ + @echo "options \"MD_ROOT_SIZE=`cat mfsroot.size`\"" >> \ ${.CURDIR}/../sys/${MACHINE_ARCH}/conf/BOOTMFS .endif @cd ${.CURDIR} && ${MAKE} doKERNEL KERNEL=BOOTMFS |