From owner-cvs-src@FreeBSD.ORG Sun Aug 22 08:40:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EDC916A4CE; Sun, 22 Aug 2004 08:40:05 +0000 (GMT) Received: from itchy.rabson.org (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F88743D49; Sun, 22 Aug 2004 08:40:04 +0000 (GMT) (envelope-from dfr@nlsystems.com) Received: from ns0.nlsystems.com (ns0.nlsystems.com [80.177.232.243]) by itchy.rabson.org (8.12.11/8.12.11) with ESMTP id i7M8e04j040114; Sun, 22 Aug 2004 09:40:00 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Marcel Moolenaar Date: Sun, 22 Aug 2004 09:40:18 +0100 User-Agent: KMail/1.6.2 References: <200408220624.i7M6OxAK010053@repoman.freebsd.org> In-Reply-To: <200408220624.i7M6OxAK010053@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408220940.18504.dfr@nlsystems.com> X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on itchy.rabson.org X-Virus-Scanned: clamd / ClamAV version 0.75.1, clamav-milter version 0.75c on itchy.rabson.org X-Virus-Status: Clean cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/alpha Makefile.inc src/sys/boot/ficl Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 08:40:05 -0000 On Sunday 22 August 2004 07:24, Marcel Moolenaar wrote: > marcel 2004-08-22 06:24:59 UTC > > FreeBSD src repository > > Modified files: > sys/boot/alpha Makefile.inc > sys/boot/ficl Makefile > Log: > Part 2 of fixing the boot code: gcc 3.4 fixes. > > The whole problem seems to be size. Which is odd, because it is > said that size doesn't matter. Anyway... Add -Os to strategic places > in the makefile to have the final loader be as mall as possible. This > seems to be enough to make it work. For now... I think something is > more fundamentally wrong; or something more fundamental is wrong. > Potato, potaato. Size does matter for the alpha loader. The firmware gives it 256k of address space which we overflowed many years ago. I extended it in sys/boot/alpha/common/main.c:extend_heap() by adding 512k to the loader's mapped address space. It might be necessary to extend it a bit further.