summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/boot/powerpc/boot1.chrp/Makefile7
-rw-r--r--sys/boot/powerpc/boot1.chrp/boot1.c3
2 files changed, 7 insertions, 3 deletions
diff --git a/sys/boot/powerpc/boot1.chrp/Makefile b/sys/boot/powerpc/boot1.chrp/Makefile
index 71d0ce6..943d146 100644
--- a/sys/boot/powerpc/boot1.chrp/Makefile
+++ b/sys/boot/powerpc/boot1.chrp/Makefile
@@ -8,16 +8,17 @@ BINDIR?= /boot
INSTALLFLAGS= -b
FILES= boot1.hfs
-SRCS= boot1.c ashldi3.c
+SRCS= boot1.c ashldi3.c syncicache.c
NO_MAN=
CFLAGS= -ffreestanding -msoft-float -Os \
- -I${.CURDIR}/../../common -I${.CURDIR}/../../../
+ -I${.CURDIR}/../../common -I${.CURDIR}/../../../ \
+ -D_STANDALONE
LDFLAGS=-nostdlib -static -N
.include "${.CURDIR}/../Makefile.inc"
-.PATH: ${.CURDIR}/../../../libkern ${.CURDIR}
+.PATH: ${.CURDIR}/../../../libkern ${.CURDIR}/../../../../lib/libc/powerpc/gen ${.CURDIR}
# The following inserts out objects into a template HFS
# created by generate-hfs.sh
diff --git a/sys/boot/powerpc/boot1.chrp/boot1.c b/sys/boot/powerpc/boot1.chrp/boot1.c
index f5bc4d5..5ad405b 100644
--- a/sys/boot/powerpc/boot1.chrp/boot1.c
+++ b/sys/boot/powerpc/boot1.chrp/boot1.c
@@ -77,6 +77,8 @@ static int __sputc(char c, void *arg);
static char *__uitoa(char *buf, u_int val, int base);
static char *__ultoa(char *buf, u_long val, int base);
+void __syncicache(void *, int);
+
/*
* Open Firmware interface functions
*/
@@ -523,6 +525,7 @@ load(const char *fname)
}
if (ph.p_filesz != ph.p_memsz)
bzero(p + ph.p_filesz, ph.p_memsz - ph.p_filesz);
+ __syncicache(p, ph.p_memsz);
}
ofw_close(bootdev);
(*(void (*)(void *, int, ofwfp_t, char *, int))eh.e_entry)(NULL, 0,
OpenPOWER on IntegriCloud