summaryrefslogtreecommitdiffstats
path: root/sys/boot/alpha/boot1
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/alpha/boot1
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/alpha/boot1')
-rw-r--r--sys/boot/alpha/boot1/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/alpha/boot1/Makefile b/sys/boot/alpha/boot1/Makefile
index 98f6c9d..3edaf04 100644
--- a/sys/boot/alpha/boot1/Makefile
+++ b/sys/boot/alpha/boot1/Makefile
@@ -15,6 +15,7 @@ CFLAGS+= -I${.CURDIR}/..
CFLAGS+= -DSECONDARY_LOAD_ADDRESS=${SECONDARY_LOAD_ADDRESS} -DMINIMAL
NOMAN=1
STRIP=
+BINDIR?= /usr/mdec
BOOT_RELOC = ${PRIMARY_LOAD_ADDRESS}
@@ -36,10 +37,9 @@ ${PROG}: ${PROG}.nosym
.include <bsd.prog.mk>
start.o: ${.CURDIR}/../libalpha/start.S
- ${CC} -c -DPRIMARY_BOOTBLOCK $<
+ ${CC} -c ${CFLAGS} $<
${PROG}.sym: ${OBJS} ${LIBKERN}
${LD} -M -Ttext ${BOOT_RELOC} -N -e start -o ${PROG}.sym ${OBJS} \
${LIBSTAND} ${LIBALPHA} ${LIBSTAND} > ${.OBJDIR}/${PROG}.list
size ${PROG}.sym
-
OpenPOWER on IntegriCloud