blob: 0cefb409fd9931c23045a2daff00c4a94e56eac9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $OpenBSD: Makefile.inc,v 1.11 2009/01/18 21:49:09 miod Exp $
MDEC_DIR?=/usr/mdec
CFLAGS+=-Wall -Werror -fno-stack-protector -mmemcpy
CFLAGS+=-DHEAP_START=${HEAP_START}
# Load addresses for first and second stage bootstraps
STAGE1_RELOC= 0x009f0000
STAGE2_RELOC= 0x00af0000
# Base of the heap (ethernet buffers will be allocated below it)
HEAP_START= 0x00c00000
|