diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-10-01 15:42:15 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-10-01 15:42:15 +0000 |
commit | af67ef2be4b69cb64678953d9eaec03374187b55 (patch) | |
tree | 8aef06a55d603012a0d9bd54c85b3352b0ebfcbd /sys/arch | |
parent | ccc4524d654aecc16d17e6bac978318ec8ea45aa (diff) |
Needs memcpy in bootxx now, forgotten in previous getenv change.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/alpha/stand/bootxx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/stand/bootxx/Makefile b/sys/arch/alpha/stand/bootxx/Makefile index ffa3957e704..ed5728b1864 100644 --- a/sys/arch/alpha/stand/bootxx/Makefile +++ b/sys/arch/alpha/stand/bootxx/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2007/11/25 18:25:29 deraadt Exp $ +# $OpenBSD: Makefile,v 1.10 2009/10/01 15:42:14 miod Exp $ # $NetBSD: Makefile,v 1.12 1997/04/17 07:27:49 thorpej Exp $ S= ${.CURDIR}/../../../.. @@ -18,7 +18,7 @@ HEADERSIZE_PROG = headersize CLEANFILES+= ${PROG}.sym ${PROG}.nosym ${PROG}.trunc ${HEADERSIZE_PROG} .PATH: ${S}/lib/libkern/arch/alpha ${S}/lib/libkern -SRCS+= bzero.c +SRCS+= bzero.c memcpy.c DEFNS= -DPRIMARY_BOOTBLOCK DEFNS+= -DALPHA_BOOT_ELF |