blob: d5fd9d07fd0b15f789a945126c5baee71db25ea5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $OpenBSD: Makefile.inc,v 1.13 2013/04/18 20:43:16 miod Exp $
MDEC_DIR?=/usr/mdec
CFLAGS+=-Wall -Werror -fno-stack-protector -mmemcpy
CFLAGS+=-fno-builtin-printf -fno-builtin-putchar -fno-builtin-vprintf
CFLAGS+=-DHEAP_START=${HEAP_START}
# Load addresses for first and second stage bootstraps
STAGE1_RELOC= 0x00680000
STAGE2_RELOC= 0x00780000
# Base of the heap (ethernet buffers will be allocated below it)
HEAP_START= 0x00700000
|