seoul: add intel82576vf for 64bit

This commit is contained in:
Alexander Boettcher 2013-08-12 11:10:00 +02:00 committed by Norman Feske
parent 0654877392
commit 4474e9d6d6
3 changed files with 4 additions and 4 deletions

View File

@ -80,9 +80,8 @@ MODEL_INFO(vga, "io_base", "fb_size")
MODEL_INFO(pmtimer, "io_port")
MODEL_INFO(pcihostbridge, "bus_num", "bus_count", "io_base", "mem_base")
#ifndef __x86_64__
MODEL_INFO(intel82576vf, "promisc", "mem_mmio", "mem_msix", "txpoll_us", "rx_map")
#endif
MODEL_INFO(ahci, "mem", "irq", "bdf")
MODEL_INFO(drive, "sigma0drive", "controller", "port")

View File

@ -115,7 +115,7 @@ void *operator new[](size_t size)
void *operator new[](size_t size, Aligned const alignment)
{
unsigned int align = alignment.alignment;
size_t align = alignment.alignment;
void *res = heap_alloc(size + align);
if (res)
Genode::memset(res, 0, size + align);

View File

@ -21,7 +21,6 @@ EXECUTOR_SRC_CC += $(notdir $(wildcard $(VANCOUVER_DIR)/executor/*.cc))
SERVICE_SRC_CC += sink.cc
ifneq ($(filter x86_64, $(SPECS)),)
FILTER_OUT += model/intel82576vf.cc
CC_CXX_OPT += -mcmodel=large
endif
@ -38,6 +37,8 @@ INC_DIR += $(NOVA_INCLUDE_DIR)
CC_WARN += -Wno-parentheses
CC_CXX_OPT += -std=gnu++11
CC_CXX_OPT += -march=core2
CC_CXX_OPT += -mssse3
vpath %.cc $(VANCOUVER_DIR)
vpath %.cc $(CONTRIB_DIR)