看板 DFBSD_submit 關於我們 聯絡資訊
This is a multi-part message in MIME format. --Multipart=_Thu__17_Mar_2005_17_42_15_-0800_HUF=_AxK8mDIKgVR Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Thu, 17 Mar 2005 14:31:12 -0800 (PST) Matthew Dillon <dillon@apollo.backplane.com> wrote: > I was hoping to do the second official release in February but > there were still a number of outstanding issues. > > I intend to release at the end of this month. There are three > outstanding issues that I want to see fixed before the release. > The browser lockup issue, the tcp panic, and a make seg-fault. > Two of the three are 'trivial' and should be fixed ASAP. The > browser lockup issue is a bit more involved. > > The release cycle will take about two weeks. We'll start by > slipping the stable tag (probably before the browser lockup issue > is fixed), then start doing release engineering based on that > tag, get the browser issue fixed, document the new features, then > release. I'd like to bring in the latest few tweaks to the installer ASAP before the release cycle starts. Briefly, they are: - ESC key goes back to previous form or menu - Better error dialogue when network can't be configured - Fixed a case in Configure an Installed System where MAKEDEV should've been called but wasn't - Install a friendly 'splash screen' for the web frontend The attached patch to src/nrelease/Makefile will build an installer_release with the latest packages. If there are no reports of major bugs, I'll tag it as 1.1.5 and make proper packages available in the proper place (i.e. the committed change will NOT look like the attached diff...) Please test if you can! Thanks, -Chris --Multipart=_Thu__17_Mar_2005_17_42_15_-0800_HUF=_AxK8mDIKgVR Content-Type: text/plain; name="installer_1.1.5_test.diff" Content-Disposition: attachment; filename="installer_1.1.5_test.diff" Content-Transfer-Encoding: 7bit Index: Makefile =================================================================== RCS file: /home/dcvs/src/nrelease/Makefile,v retrieving revision 1.28 diff -u -r1.28 Makefile --- Makefile 7 Mar 2005 17:48:34 -0000 1.28 +++ Makefile 17 Mar 2005 23:55:13 -0000 @@ -51,9 +51,9 @@ # ISO TARGETS WITH INSTALLER # ######################################################################### -INSTALLER_PKGS= libaura-2.0 libdfui-3.0 libinstaller-4.0 \ - dfuibe_installer-1.1.4 dfuife_curses-1.3 \ - thttpd-notimeout-2.24 dfuife_cgi-1.2 +INSTALLER_PKGS= libaura-2.0.2005.0317 libdfui-3.0.2005.0317 libinstaller-4.0.2005.0317 \ + dfuibe_installer-1.1.4.2005.0317 dfuife_curses-1.3.2005.0317 \ + thttpd-notimeout-2.24 dfuife_cgi-1.2.2005.0317 INSTALLER_SKELS= installer INSTALLER_ENV= EXTRA_PACKAGES="${INSTALLER_PKGS} ${EXTRA_PACKAGES}" \ @@ -103,7 +103,7 @@ @if [ ! -f ${PACKAGES_LOC}/${PKG}.tgz ]; then \ cd ${PACKAGES_LOC} && \ echo "fetching ${PKG}..." && \ - fetch http://www.bsdinstaller.org/packages/${PKG}.tgz; \ + fetch http://cvs.bsdinstaller.org/packages/${PKG}.tgz; \ fi .endfor --Multipart=_Thu__17_Mar_2005_17_42_15_-0800_HUF=_AxK8mDIKgVR--