summaryrefslogtreecommitdiffstats
path: root/sys/boot/common
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>1998-10-31 17:12:32 +0000
committerdfr <dfr@FreeBSD.org>1998-10-31 17:12:32 +0000
commit29a470890d941fb3684c87bc547351fad2ba4d44 (patch)
treeb5dea2cf9f55e398ae5a1d6c40fd5b7cf6a1f892 /sys/boot/common
parent052ed056ae42a100f0a42e542cc07049bba598ae (diff)
downloadFreeBSD-src-29a470890d941fb3684c87bc547351fad2ba4d44.zip
FreeBSD-src-29a470890d941fb3684c87bc547351fad2ba4d44.tar.gz
* Extend the memory available for the heap from 256k to 512k.
* Embed the stack into the bss section for loader and netboot. This is required for netboot since otherwise the stack would be inside our heap. * Install loader and netboot in /boot by default. * Fix getbootfile so that it searches for a ',' instead of a ';' when terminating the filename.
Diffstat (limited to 'sys/boot/common')
-rw-r--r--sys/boot/common/boot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/common/boot.c b/sys/boot/common/boot.c
index 872840b..346cbef 100644
--- a/sys/boot/common/boot.c
+++ b/sys/boot/common/boot.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: boot.c,v 1.7 1998/10/14 00:41:17 peter Exp $
+ * $Id: boot.c,v 1.8 1998/10/31 02:53:09 msmith Exp $
*/
/*
@@ -247,7 +247,7 @@ getbootfile(int try)
try--;
}
if (spec != NULL) {
- if ((ep = strchr(spec, ';')) != NULL) {
+ if ((ep = strchr(spec, ',')) != NULL) {
len = ep - spec;
} else {
len = strlen(spec);
OpenPOWER on IntegriCloud