Subversion Repositories HelenOS-historic

Rev

Rev 421 | Rev 430 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
422 jermar 1
#
421 jermar 2
# Open Firmware
422 jermar 3
#
421 jermar 4
OFW=no
5
 
6
ifeq ($(ARCH),ppc32)
7
OFW=yes
8
endif
9
 
10
ifeq ($(ARCH),sparc64)
11
OFW=yes
12
endif
13
 
422 jermar 14
#
15
# Advanced Configuration and Power Interface (ACPI)
16
#
17
ACPI=no
18
 
19
ifeq ($(ARCH),ia32)
20
ACPI=yes
21
endif
22
 
23
ifeq ($(ARCH),amd64)
24
ACPI=yes
25
endif
26
 
27
ifeq ($(ARCH),ia64)
28
#ACPI=yes
29
endif
30
 
31
 
421 jermar 32
ifeq ($(OFW),yes)
33
genarch_sources+=src/genarch/firmware/ofw/ofw.c
34
endif
422 jermar 35
 
36
ifeq ($(ACPI),yes)
37
genarch_sources+=src/genarch/firmware/acpi/acpi.c \
38
		 src/genarch/firmware/acpi/madt.c
39
endif